Data type conversion
When working with databases, there are times when you need to change the data type of a column to better suit your operations or analyses.
Continuing your Data Engineer role at Pissa, you will practice converting data between types.
This exercise is part of the course
Introduction to Snowflake SQL
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
-- Convert order_id to VARCHAR aliasing to order_id_string
SELECT ___(___ AS ___) AS ___
FROM orders