oracle sql怎么拼接多个字符串

2025-04-04 23:22:22
推荐回答(1个)
回答1:

select '第一个字符串' || '第二个字符串' || '第三个字符串' || '第四个字符串' || '第五个字符串' from dual;
这样写试一下,看看是否好用。