如何在代码点火器

时间:2016-07-26 11:15:26

标签: php mysql database codeigniter

这就是我想要的SQL:从mytable中选择id 除了从another_table中选择id,

但CI的数据库库使用 EXCEPT 功能, 我如何获得它?

1 个答案:

答案 0 :(得分:0)

您可以使用 NOT EXISTS

完成此操作
SELECT
    MT.id
FROM
    mytable AS MT
WHERE NOT EXISTS (
    SELECT
        AT.id
    FROM another_table AS AT 
    WHERE AT.id = MT.id
)