How long were you at the gym?
Let's say that you're interested in how long each member was at the gym for. This would help to give you and the other teams consuming data from Snowflake the ability to understand things like workout efficiency. To do this, you'll have to use one of Snowflake's powerful date functions - good luck!
This exercise is part of the course
Data Types and Functions in Snowflake
Exercise instructions
- In the
SELECT
statement, retrieve theuser_id
field, as well as the check in/out columns. - Use a Snowflake function to find the difference between the
checkin_time
andcheckout_time
, making sure the value returned is in minutes.
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
SELECT
-- Retrieve the user_id, as well as check in/out times
___,
___,
___,
-- Find the number of minutes each member was at the gym for
___(___, ___, ___) AS workout_duration
FROM CORE_GYM.visits;