НачатьНачать бесплатно

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!

Это упражнение является частью курса

Data Types and Functions in Snowflake

Посмотреть курс

Интерактивное практическое упражнение

Попробуйте выполнить это упражнение, дополнив этот пример кода.

SELECT
	-- Return '2007-06-13' as a DATE
    ___('___') AS the_date
;
Редактировать и запускать код