字符串连接将多个字符串连接在一起以形成单个字符串。
Oracle
‘foo’||’bar’
Microsoft
‘foo’+’bar’
PostgreSQL
‘foo’||’bar’
MySQL
‘foo’ ‘bar’
2024-09-14