如何使用LAMP实现“与网络共享”功能

时间:2014-01-02 19:30:08

标签: php mysql

我有这些表,成员,my_connections,my_thoughts。 如何添加“与您的网络共享”功能,其中成员可以与他们在my_connections中连接的人分享他们的想法

1 个答案:

答案 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_idconection_id列,而该表my_thoughts有一列my_id