0

我目前有

select * from A where A.id not in 
    (select B.id from B where B.user ='b') and A.user <> 'b'

如何更改此查询以使用JOIN-- 类似LEFT JOIN user AS last_replied_user ON topic.last_replied_by = last_replied_user.uid

4

1 回答 1

0
select * from users u
left outer join topic t on u.id=t.last_replied_by
where t.last_replied_by IS NULL

这将为您提供在主题表的最后一个回复列中未找到用户 ID 的所有用户。

于 2013-08-07T03:58:54.247 回答