我想开展一些类似面对面的活动。 在我提出问题之前,我要解释我的我的SQL数据库设计。 我有一个用户表,即:
user_id name other columns
userA - -
userB - -
userC - -
userD - -
用户可以相互跟踪,这里是称为“追随者”的表格。
id user_id follower_id
1 userA userB
2 userD userB
3 userB userA
-
-
-
As we see, in above table, userB is following userA and userD.
现在我的问题是,在用户中哪一个用户(用户B的用户)进行活动时,应当通知他。 请允许我谈谈活动,例如:
user_id activity_type activity_link activity_date
userA note
userB photo
userC note
userD photo
www.un.org/Depts/DGACM/index_french.htm
<斯特凡>问题 2 由于用户B仅跟踪用户A和用户D,因此用户B仅与他所跟踪的用户有关,如何为之建立q问? 缩略语
Select * from activity where user_id exists in user_id in followers table where follower_id = userB
(This is my idea, can you help me building SQL query)
由于阅读了这一长期问题和可能提供的帮助。