【PostgreSQL】PostgreSQL字符串的两种连接方式

字符串的两种连接方式

函数 返回类型 描述 样例 结果
string || string 字符串 字符串连接 'Post' || 'greSQL' PostgreSQL
string || non-string or non-string || string text 连接空字符串 'Value: ' || 42 Value: 42
concat(str "any" [, str "any" [, ...] ]) 字符串 连接函数里所有的字符串参数,忽略空字符串 concat('abcde', 2, NULL, 22) abcde222
concat_ws(sep text, str "any" [, str "any" [, ...] ]) 字符串 以第一个参数作为分隔符,连接其他的几个参数 concat_ws(',', 'abcde', 2, NULL, 22) abcde,2,22

你可能感兴趣的:(数据库)