Select CONCAT(concat(FIRST_NAME, ' '), LAST_NAME) AS 'COMPLETE_NAME' from Worker;
Select column1||' '||column2 from table_name;