我有这些表,成员,my_connections,my_thoughts。 如何添加“与您的网络共享”功能,其中成员可以与他们在my_connections中连接的人分享他们的想法。
答案 0 :(得分:0)
易。在my_thoughts
表中添加另一列 - shared
,它将是一个布尔值(我使用tinyint,0或1)。然后,选择我朋友分享的所有想法:
select * from
my_connections c
join my_thoughts t on (c.connection_id=t.my_id)
where
c.my_id=<insert my ID here>
and t.shared=1
假设表my_connections
包含my_id
和conection_id
列,而该表my_thoughts
有一列my_id
。