Skip to content

Instantly share code, notes, and snippets.

@bAcheron
Created January 8, 2020 05:08
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 bAcheron/d505989ce3e9bc756fcf58f8e760117b to your computer and use it in GitHub Desktop.
Save bAcheron/d505989ce3e9bc756fcf58f8e760117b to your computer and use it in GitHub Desktop.
Select
EXTRACT(
hour
FROM
cast(starttime as datetime)
),
count(*)
from
bike_rides
group by
EXTRACT(
hour
FROM
cast(starttime as datetime)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment