DEMO SITE v1.7.24

Subselect and sum row Bootstrap 4.5 theme

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

HIDE CODE
<?php
	$xcrud = Xcrud::get_instance();
    $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
    echo $xcrud->render();
?>

Customers

#CustomernameCityCreditlimitPaidProfit 
1Mini Gifts Distributors Ltd.San Rafael210500461489.54$250,989.54 View Edit Remove
2aZbyszek Zbyszek PiestrzeniewiczWarszawa1230$0.00 View Edit Remove
3Blauer See Auto, Co.Frankfurt5970075937.76000000001$16,237.76 View Edit Remove
4Mini Wheels Co.San Francisco6460066710.56$2,110.56 View Edit Remove
5Land of Toys Inc.NYC114900107639.94$-7,260.06 View Edit Remove
6Euro+ Shopping ChannelMadrid227600679486.64$451,886.64 View Edit Remove
7Volvo Model Replicas, CoLuleå5310036005.71$-17,094.29 View Edit Remove
8Danish Wholesale ImportsKobenhavn83400107446.5$24,046.50 View Edit Remove
9Saveley & Henriot, Co.Lyon123900130305.9$6,405.90 View Edit Remove
10Dragon Souveniers, Ltd.Singapore103800156251.03$52,451.03 View Edit Remove
Σ  8845630.1200000018234961.920000003$390,561.80 
Search