You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-- Your task is to use a select statement to return a single column table containing the full title of the person (concatenate all columns together except id), as follows:
--
-- output table schema
-- title
--
-- Don't forget to add spaces
SELECT concat_ws(' ', prefix, first, last, suffix) as title FROM names;