PIPES_AS_CONCAT
This page is part of MariaDB's Documentation.
The parent of this page is: SQL Modes
Topics on this page:
Overview
This mode makes the || operator become functionally equivalent to the CONCAT() function, rather than functionally equivalent to the OR operator. This means that a || b
would be functionally equivalent to CONCAT(a, b)
.