标签: mysql join
我很难与MySQL加入。 这些是我的表格:
user(id, name,...); aim(id, title,...); aim2user(userID, aimID);
用户可以有多个目标。 我想返回用户X没有选择的所有目标。
这怎么可能?
答案 0 :(得分:0)
select id from aim where id not in (select zeildID from aim2user where userID=X)