You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think this could help
$this->datatables->select('(tj.tj_qty1 * tj.tj_harga1+tj.tj_qty2*tj.tj_harga2+tj.tj_qty3 * tj.tj_harga3 + tj.tj_qty4 * tj.tj_harga4) as total');
i got error when use igniter in select array when use * and + aritmatik sql
this the code :
function json() {
$this->datatables->select('tj.tj_qty1 * tj.tj_harga1+tj.tj_qty2*tj.tj_harga2+tj.tj_qty3 * tj.tj_harga3 + tj.tj_qty4 * tj.tj_harga4 as total');
$this->datatables->from('tj_detail tj');
$nol = array('0');
$this->datatables->where('tj.status',$nol);
return $this->datatables->generate();
The text was updated successfully, but these errors were encountered: