我在cakephp中连接两个或更多表时编写如下所示的代码:
$options['joins'] = array(
array(
'table' => 'table2',
'alias' => 'tbl2',
'type' => 'inner',
'conditions' => array(
'tbl1.customer_id = tbl2.customer_id' ,
"tbl2.del_flag = 'N'" ,
)
)
);
继续使用更多表格。
如果我想使用' straight_join'如何编写代码?而不是内部联接'?
更改'类型'以上直接'什么都不做。
在cakephp中有可能吗?
感谢您的帮助。