Mode SQL Course
SELECT *
FROM tutorial.us_housing_units
Rich Raccoon
SELECT *
FROM tutorial.us_housing_units
SELECT west AS "West Region"
FROM tutorial.us_housing_units
SELECT year,
month,
west
FROM tutorial.us_housing_units
SELECT * FROM tutorial.us_housing_units
SELECT west AS West_Region,
south AS South_Region
FROM tutorial.us_housing_units