Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi, I have a data base where the first name and the last name are in different columns. I need them in one column, can I join the information into a column directly from the script?
First_name Last_name
xx yyy
And I need the information in one column:
Full_name
xx yyy
Thank you
HI
Try like this
Load First_name &' '&Last_name as Full_name ,* from tablename;
Hope that helps
First_name & ' ' & Last_Name as Full_name,
HI
Try like this
Load First_name &' '&Last_name as Full_name ,* from tablename;
Hope that helps
Thank you