String
String operators
The ||
operator performs string concatenation.
Note that when one of the operands is an array, the ||
operator performs array concatenation instead of string concatenation.
Examples
SQL
Query result
customer_fullname
customer_firstname
customer_lastname
Keith Cook
Keith
Cook
Megan Murphy
Megan
Murphy
Louis Long
Louis
Long
Last updated