Answers for "how to merge to coloumns into a single column with a space."

0

how to merge to coloumns into a single column with a space.

Select CONCAT(concat(FIRST_NAME, ' '), LAST_NAME) AS 'COMPLETE_NAME' from Worker;
Posted by: Guest on March-13-2022
0

how to merge to coloumns into a single column with a space.

Select column1||' '||column2 from table_name;
Posted by: Guest on March-13-2022

Code answers related to "how to merge to coloumns into a single column with a space."

Browse Popular Code Answers by Language