What does || do in SQL?
||
SELECT \'a\' || \',\' || \'b\' AS letter
It is a concat statement. It will concatenate the two strings.
Here is a helpful post!
What is the difference between "||" operator and concat function in Oracle?