-
-
Save hashcc/ac4a693ed81ec6c8d908469c265d8af2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
with | |
recipes_count as ( | |
select | |
ユーザーID, | |
count(レシピID) as レシピ投稿数 | |
from | |
recipes | |
group by | |
ユーザーID | |
order by | |
レシピ投稿数 desc | |
), | |
tsukurepos_count as ( | |
select | |
ユーザーID, | |
count(つくれぽID) as つくれぽ投稿数 | |
from | |
tsukurepos | |
group by | |
ユーザーID | |
order by | |
つくれぽ投稿数 desc | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment