Answers for "sql combine first and last name into one"

SQL
0

how to combine first and last nae into one columb sql

select CONCAT(FirstName , ' ' , MiddleName , ' ' , Lastname) as Name from 
  TableName
Posted by: Guest on May-10-2021

Code answers related to "sql combine first and last name into one"

Code answers related to "SQL"

Browse Popular Code Answers by Language