Answers and Discussion Show
select surname || ', ' || firstname as name from cd.members
Building strings in sql is similar to other languages, with the exception of the concatenation operator: ||. Some systems (like SQL Server) use +, but || is the SQL standard.