Answers for "concatenate columns using concat function"

SQL
0

Concatenate columns in table

/*  Takes several columns to form a single name  */
select concat(prefix,' ',first,' ',last,' ',suffix) as title from names
Posted by: Guest on June-01-2021

Code answers related to "concatenate columns using concat function"

Code answers related to "SQL"

Browse Popular Code Answers by Language