仍然是mySQL初学者。我有两个表follows
和events
,它们包含以下列:
FOLLOWS
user | profile
EVENTS
user | profile | other_stuff
我想根据用户关注的人events
获取相关事件的列表。
SELECT * FROM follows WHERE user = $userId
检索用户关注的人。
现在,我如何选择events
中profile
匹配用户所关注的人任何的profile
值的所有行?
答案 0 :(得分:1)
像这样:
select *
from follows f
join events e on e.user = f.user
where f.user = $userId