syntax - How to put a space between two SQL columns after joining them? -
i have joined 2 columns, first name\last name 1 , named alias good. how put space between first , last name?
au.first_name || au.last_name name
here:
au.first_name || ' ' || au.last_name name
Comments
Post a Comment