CommencerCommencez gratuitement

Building datetime values

When working with datetime data in Snowflake values will often come in the form of a string. It's important to be able to convert these strings into DATE, TIME, or TIMESTAMP data types. Here, you'll practice exactly this!

Cet exercice fait partie du cours

<cours>Data Types and Functions in Snowflake</cours>
Voir le cours

Exercice interactif pratique

Essayez cet exercice en complétant ce code d’exemple.

SELECT
	-- Return '2007-06-13' as a DATE
    ___('___') AS the_date
;
Modifier et exécuter le code