好的,所以我正在从事我第一个来自软件职位的 php/mysql 项目。我正在学习 codeigniter,并且我发现这个 mysql 加入会根据 user.id 获得我的朋友状态,我如何将我所有的帖子添加到我必须做一个 AND 查询?
select * from friendships
join users on users.`id` = friendships.`friend_id`
join statuses on statuses.`user_id` = users.id
where friendships.`user_id` = 2
ORDER BY statuses.`id` desc
非常感谢任何帮助