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();