现在我找不到函数SUM。
我需要SUM all column 'price' from table 'models' WHERE 'model_id' == $model_id.
$db->where('model_id', $model_id);
$summa = $db-> ???? ('models','price');
答案 0 :(得分:0)
使用以下查询:
SELECT SUM(PRICE)AS total_price FROM table'model'WHERE'tyk_id'== $ model_id。
答案 1 :(得分:0)
我想你想做的事情
$db->select(sum("'price') as totalnum")
->from("your table")
->where("yourtable.model_id == $model_id")