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!
Este ejercicio forma parte del curso
Data Types and Functions in Snowflake
Instrucciones del ejercicio
- 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.
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
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;