如何在sql中连接单个单元格的多个值

时间:2014-11-26 09:07:55

标签: sql

我在数据库中有一个像这样的表

 column1      |  column2
 -------------+---------
 one two      |  three50 
 four , five  |  six30

我正在寻找可以获取

等结果的精选查询
onetwothree
forfivesix

1 个答案:

答案 0 :(得分:2)

在Oracle中尝试:

SELECT regexp_replace(column1, '[ ,]+$','') 
FROM table

在SQL Server / MySQL / Sybase /甚至Oracle中使用:

SELECT REPLACE(REPLACE(column1, "," , ""), " ", "")
FROM table