What does || do in SQL?
||
SELECT \'a\' || \',\' || \'b\' AS letter
In Oracle, SQLite3, and MySQL, it concatenates strings. Please see the Oracle documentation. The MySQL documentation.
Also, it's part of ANSI SQL, but read this for more information.