我有这些桌子;
user - contains user_id | username | fullname | email etcc
user_followers - contains follow_id| user_id | follower_id | date etcc
posts - contains post_id | user_id | post | post_date
我正在尝试获取用户关注的用户和用户自己的帖子的所有帖子。
我试过了
$this->db->select('posts.*')->from('posts')
->join('user_followers', 'user_followers.user_id = posts.user_id', 'INNER')
->where('user_followers.follower_id', $user_id)->order_by('posts.post_date','desc');
$query = $this->db->get();
但问题是,我无法从此查询中获取用户的帖子。我已经尝试了 or_where 等其他方法,并且我能够获取用户的帖子,只是数据增加了三倍:(有人可以帮我吗?非常感谢提前。
哦,在正常的Mysql中,它的;
SELECT posts.*
FROM posts
JOIN user_followers
ON user_followers.user_id = posts.user_id
WHERE user_followers.follower_id = $user_id
ORDER BY
posts.post_date DESC