python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Joining 2 Select Queries (one query including an aggregate function) from two different tables
I am trying to left join the two queries below (mock data for reference purposes).
SELECT
marker_number AS ISN,
IF(shelf_life_code = 'A', 1, 0) AS Store_Repaired,
SUBSTRING(marker_number, ...
PythonLearner
Votes: 0
Answers: 1
Split value from a total row to multiple other rows until the sum reaches the value of the total row
DB-Fiddle
CREATE TABLE inbound (
id SERIAL PRIMARY KEY,
campaign VARCHAR,
expected_inbound_date DATE,
expected_inbound_quantity DECIMAL,
received_inbound_quantity DECIMAL
);
INSER...
Michi
Votes: 0
Answers: 2
Structure the JSON object using group by in Postgres SQL
I'm trying to create structure using the Postgres SQL query. The structure is define to search faster for some advance functionalities of the application so that's why I couldn't change this structure...

Jay Bhajiyawala
Votes: 0
Answers: 1
Aggregate by ID, count on date field and sum on time field
Input Dataframe:
ID
DATE
PERSONAL_AUX
OUTBOUND_AUX
1
1/3/2022
0:09:00
0:00:08
1
1/4/2022
0:19:00
0:00:40
1
1/5/2022
0:13:00
0:00:33
1
1/6/2022
0:08:00
0:00:22
1
1/7/2022
0:13:00
0:00:1...
vik
Votes: 0
Answers: 1