我从excel文件导出数据。从该文件中,我有一个名为“ID”的列。现在该列的条目如下所示。
ID
1.14455,
2.48755,
3.65588,
4.25415,
等等。
我需要从列中删除该逗号。我该怎么做?
答案 0 :(得分:2)
如果值中没有其他逗号,则只需使用replace()
:
select replace(col, ',', '')
如果可能还有其他逗号:
select (case when col like '%,' then left(col, len(col) - 1)
else col
end)