标签: mysql cakephp join
如何设置表A和B之间的关联,如果表B中存在记录,那么将不会显示任何内容(如内部联接反向)。 这可以使用存在或不存在来完成吗? cakephp的语法是什么?
答案 0 :(得分:0)
您可以使用not exists:
not exists
select * from tableA a inner join tableB b on b.id not exists (select id from tableA where id <> b.id)