问题描述
- ORACLE9I 如何拼接相同记录
- ORACLE9I有表test 字段有:ab c
输出结果为: a b c
1 1 2 1 1 3
现在我想合并相同记录想要的结果为: 1 1 23
求各位大侠看看!谢谢!
解决方案
select a||b||c from table;
或者用concat函数:select concat(abc) from table;
时间: 2024-09-23 16:43:07
输出结果为: a b c
1 1 2 1 1 3
现在我想合并相同记录想要的结果为: 1 1 23
求各位大侠看看!谢谢!
select a||b||c from table;
或者用concat函数:select concat(abc) from table;