Oracle 连接2个字符串的操作(Concat的使用
程序员文章站
2022-04-10 21:22:34
...
Oracle 连接2个字符串的操作(Concat的使用
Oracle 只能连接2个字符串
SQL> select concat('123',456) from dual;
CONCAT
------
123456
SQL>