Cakephp连接表语法

时间:2011-12-21 13:31:39

标签: mysql cakephp join

如何设置表A和B之间的关联,如果表B中存在记录,那么将不会显示任何内容(如内部联接反向)。 这可以使用存在或不存在来完成吗? cakephp的语法是什么?

1 个答案:

答案 0 :(得分:0)

您可以使用not exists

执行此操作
select * from tableA a
inner join tableB b on b.id not exists (select id from tableA where id <> b.id)