What does SQL Select symbol || mean?

后端 未结 6 2173
生来不讨喜
生来不讨喜 2020-12-03 04:26

What does || do in SQL?

SELECT \'a\' || \',\' || \'b\' AS letter
6条回答
  •  一整个雨季
    2020-12-03 05:14

    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?

提交回复
热议问题