Concatenate strings
House number (house_num
) and street
are in two separate columns in evanston311
. Concatenate them together with concat()
with a space in between the values.
This exercise is part of the course
Exploratory Data Analysis in SQL
Exercise instructions
- Concatenate
house_num
, a space' '
, andstreet
into a single value using theconcat()
. - Use a trim function to remove any spaces from the start of the concatenated value.
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
-- Concatenate house_num, a space, and street and trim spaces from the start of the result
SELECT ___ AS address
FROM evanston311;