What does || do in SQL?
||
SELECT \'a\' || \',\' || \'b\' AS letter
It's a concatenation operator. So you would get 'a,b' from that. I think || will work on most RDBMS's. SQL Server requires the + operator (thanks to HVD for setting me straight!).
+