Skip to content

Instantly share code, notes, and snippets.

@hashcc
Created November 1, 2021 00:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hashcc/14eae15c6e54890fe47fee4952445cd5 to your computer and use it in GitHub Desktop.
Save hashcc/14eae15c6e54890fe47fee4952445cd5 to your computer and use it in GitHub Desktop.
select
recipes.ユーザーID,
count(レシピID) as レシピ投稿数,
つくれぽ投稿数
from
recipes
full join
(
select
ユーザーID,
count(つくれぽID) as つくれぽ投稿数
from
tsukurepos
group by
ユーザーID
order by
つくれぽ投稿数 desc
) as tsukurepos
on
recipes.ユーザーID = tsukurepos.ユーザーID
group by
ユーザーID
order by
ユーザーID
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment