Subselect and sum row

subselect() will create a new column with some value from other (or current) table. You can use any columns from current table as parameters. Subselect will be called for each row.


public function subselect_and_sum_row()
{
  $xcrud = get_xcrud();
  $xcrud->table('customers');
  $xcrud->columns('customerName,city,creditLimit,Paid,Profit'); // specify only some columns
  $xcrud->subselect('Paid','SELECT SUM(amount) FROM payments WHERE customerNumber = {customerNumber}'); // other table
  $xcrud->subselect('Profit','{Paid}-{creditLimit}'); // current table
  $xcrud->sum('creditLimit,Paid,Profit'); // sum row(), receives data from full table (ignores pagination)
  $xcrud->change_type('Profit','price','0',array('prefix'=>'$')); // number format
    
  $data['content'] = $xcrud->render();
  
  return view('demos', $data);
}

Customers

#CustomernameCityCreditlimitPaidProfit 
1Zbyszek Zbyszek PiestrzeniewiczWarszawa1230$0.00
2Euro+ Shopping ChannelMadrid227600695729.4500000001$468,129.45
3Saveley & Henriot, Co.Lyon123900130305.9$6,405.90
4Dragon Souveniers, Ltd.Singapore103800156251.03$52,451.03
5Muscle Machine IncNYC138500177913.95$39,413.95
6Technics Stores Inc.Burlingame84600104545.22$19,945.22
7Handji Gifts& CoSingapore97900105420.56999999999$7,520.57
8Herkku GiftsBergen9680097562.47$762.47
9JoeNew Haven0$0.00
10Porto Imports Co.Lisboa0$0.00
Σ  7159041.127146137.360000001$-11,462.76 
Search