Skip to content
Advertisement

Sum of amount for each date having ‘type’ column in sql

I have table expense_incomes, the structure for table is:

JavaScript

I want the sum of expenses and incomes in two different arrays groupBy date.
I have tried this code. (In the above Example) I want to push expense into expense_array and income into income_array for 2021-04-02.

JavaScript

What I am getting now:

JavaScript

Expected Array Structure:

JavaScript

Advertisement

Answer

I believe you want an aggregated query with conditional sum of amount for each date.

In pure SQL it can done using CASE statements as

JavaScript

DEMO

In query builder it can be transformed as

JavaScript

Now you can use collection helper pluck to extract data for your columns

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement