-
‘abc’ || ‘xyz’, when PIPES_AS_CONCAT is enabled, results in ____________.
-
- xyzabc
- abcxyz
- 0
- 1
- None of these
Correct Option: B
If the SQL mode PIPES_AS_CONCAT has been enabled, the SQL standard ‘||’ operation for string concatenation becomes valid in MySQL. Both operands are concatenated to give ‘abcxyz’.