1
我有两个SQL查询:加入表导致谷歌的BigQuery
SELECT subreddit, count(subreddit) as count
FROM [fh-bigquery:reddit_comments.all]
where author="***********" GROUP by subreddit ORDER BY count DESC;
和
SELECT subreddit, count(subreddit) as count
FROM [redditcollaborativefiltering:aggregate_comments.reddit_posts_all]
where author="***********" GROUP by subreddit ORDER BY count DESC;
我希望能够加入这两个查询的结果为一个结果与同列因为两者都是相互结合在一起的。有没有简单的方法来做到这一点?