SELECT first_name || ' ' || last_name AS name
# general
h
SELECT first_name || ' ' || last_name AS name
s
Note that
||
will return
NULL
if anything is null. The
concat
and
concat_ws
may be easier.
h
👍 oh, didn't realize concat_ws was supposed. Cheers
s
I PR’ed it a bit ago because the NULL handling on
||
was error prone
h
Nice one. Thank you!
s
👍