ÎncepețiÎncepe gratuit

Experimenting with compatible types

As we covered in the slides, some data types are compatible with others, meaning they will implicitly convert to the proper type when used in an assignment or comparison clause. For example, if you compare an INTEGER and a VARCHAR, it will convert the INTEGER into a VARCHAR for the comparison.

Acest exercițiu face parte din cursul

Introduction to Redshift

Vezi cursul

Instrucțiuni pentru exercițiu

  • Select year_qtr, total_sales, percent_ecom, and finally percent_change_year_ecom from spectrumdb.ecommerce_sales.
  • Find where percent_change_year_ecom is greater than 50 as a string.

Exercițiu interactiv practic

Încearcă acest exercițiu completând acest cod de exemplu.

-- Select year_qtr, total_sales, percent_ecom, percent_change_year_ecom
SELECT year_qtr, 
       ___, 
       percent_ecom, 
       ___ 
  FROM spectrumdb.ecommerce_sales 
-- Find where percent_change_year_ecom is greater than 50
 WHERE ___ > ___;
Editează și rulează codul