检查一个表是否有其他与id

时间:2016-04-08 12:20:03

标签: mysql

我有User表,其中每个用户都有条目,每个用户在Profile表中都有user_id表单用户表, 我该如何检查:

Select FROM table.users where(table profiles do not exist based od user_id ) 

我在Profile表中手动删除了一些条目,现在我想在User表中找到条目表中没有条目的条目

1 个答案:

答案 0 :(得分:2)

SELECT users.* FROM users
LEFT JOIN profiles ON (users.id = profiles.user_id)
WHERE profiles.user_id IS NULL