我正在尝试了解以下Active记录模式与常规sql语言的相关性。
$get_it = $this -> db -> select('i.*,SUM(o.qty * o.price) AS total')
->from('invoices i, users u,orders o')
->where('u.usr_name',$user)
->where('u.usr_id = i.user_id')
->where('o.invoice_id = i.id')
->group_by('o.invoice_id')
->get();
至少有人能将它转换为sql语言吗?那将是一个很大的帮助。
答案 0 :(得分:0)
要打印CodeIgniter查询,请使用 $ this-> db-> last_query(); 它将在mysql中打印fromat在get()方法之后使用它.hope它会帮助你