Search code examples
mysqlsqllaravellaravel-5.3

if condition is applied, then query should be excuted


I want to do SUM for those columns which has only (buy_rate - sell_rate) = result > 0.

In another words, if buy_rate bigger thansell_rate, then buy_rate - sell_rate = profit, apply this calculation to all rows and add all the results together.

   DB::table('finaltrade')
   
      ->select(DB::raw("SUM(ABS(buy_rate - sell_rate)) AS total_profit"))
      ->get();

finaltrades table structure:

id   user_id   exchange_id   market_id   symbol_id      buy_datetime          sell_datetime      buy_rate   sell_rate   quantities  
 ---- --------- ------------- ----------- ----------- --------------------- --------------------- ---------- ----------- ------------ 
   1         1             1           1          96   2018-05-25 18:13:26   0000-00-00 00:00:00       2205           0          100  
   2         1             1           1          96   0000-00-00 00:00:00   2018-05-25 18:13:59          0        6680          100  
   3         4             1           1          23   2018-05-25 18:16:27   0000-00-00 00:00:00          0           0           10  
   4         1             1           1          96   2018-05-25 18:13:59   0000-00-00 00:00:00      50351           0           30  
   5         1             1           1          15   0000-00-00 00:00:00   2018-05-25 18:34:46          0         100          150  
   6         4             1           1         573   2018-05-26 09:29:17   2018-05-27 03:10:09         10          10           10  
   7         1             1           1          15   2018-05-11 09:30:54   2018-05-25 18:34:56         40         100           40

Solution

  • In SQL, I think you want:

    select sum(buy_rate - sell_rate) as profit
    from finaltrade
    where buy_rate > sell_rate;
    

    If you don't want a where clause, then use conditional aggregation:

    select sum(case when buy_rate > sell_rate then buy_rate - sell_rate else 0 end) as profit
    from finaltrade;