Skip to content

Instantly share code, notes, and snippets.

@hashcc
Created November 1, 2021 00:44
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/2d75cca40ceb5a39ae8e4927a4be5abc to your computer and use it in GitHub Desktop.
Save hashcc/2d75cca40ceb5a39ae8e4927a4be5abc to your computer and use it in GitHub Desktop.
with
recipes_count as (
select
ユーザーID,
count(レシピID) as レシピ投稿数
from
recipes
group by
ユーザーID
order by
レシピ投稿数 desc
),
...
--(中略)
...
select
*
from
recipes_count
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment