gpt4 book ai didi

mysql - SQL查询: How to Get tweet from following?

转载 作者:行者123 更新时间:2023-11-29 15:41:57 28 4
gpt4 key购买 nike

我想要关注以下推文,这是我的表格设计。

++ follows ++
user_id , account_to_follow
1 , 2
1 , 3
1 , 4

++ tweet ++
user_id, tweet
2, Hallo
3, Hai
4, How aRE YOU

如何获取关注 user_id = 1 的所有推文?

最佳答案

使用 join 从另一个表中获取所有推文

select * from follow f
inner join tweet t on f.account_to_follow = t.user_id
where f.user_id = 1 ;

https://www.db-fiddle.com/f/3otGpf3J14QNTZpAHLdvqg/1

关于mysql - SQL查询: How to Get tweet from following?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57541867/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com