gpt4 book ai didi

sql - 从某个 subreddit 获取多个用户的所有评论 - Reddit 数据集

转载 作者:行者123 更新时间:2023-12-04 18:23:27 26 4
gpt4 key购买 nike

我想获得在特定 subreddit(例如 r/gaming)中发表评论的每个 redditor 的所有评论。我知道如何查询 subreddits:

SELECT * FROM [fh-bigquery:reddit_comments.2007]
WHERE subreddit = "gaming"

但我的 SQL/BigQuery 知识太有限,无法获得 redditor 的所有评论,他们在 subreddit 中发表评论。

我在想类似的事情

SELECT author FROM [fh-bigquery:reddit_comments.2007]
WHERE subreddit = "gaming"

但这只是给我在 r/gaming 中发表评论的用户的作者姓名。

我如何搜索某个特定 subreddit 的作者并获取他们在所有 subreddit 中的所有提交? Here is the link to the used BigQuery-table.

谢谢!!

最佳答案

试试下面

SELECT * FROM [fh-bigquery:reddit_comments.2007]
WHERE author IN (
SELECT author FROM [fh-bigquery:reddit_comments.2007]
WHERE subreddit = "gaming"
GROUP BY 1
)

关于sql - 从某个 subreddit 获取多个用户的所有评论 - Reddit 数据集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38438891/

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