Comment fusionner les colonnes en une seule colonne avec un espace.
Select column1||' '||column2 from table_name;
karthik
Select column1||' '||column2 from table_name;
Select CONCAT(concat(FIRST_NAME, ' '), LAST_NAME) AS 'COMPLETE_NAME' from Worker;