PostgreSQL provides us with the following ways to concatenate strings and numbers:
- The
CONCAT()
function, which concatenates its arguments. - The pipe concatenation operator (
||
), which concatenates its operands.
Examples of each below.
Continue reading