Get startedGet started for free

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

View Course

Exercise instructions

  • Concatenate house_num, a space ' ', and street into a single value using the concat().
  • 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;
Edit and Run Code