如何从数字中删除逗号

时间:2017-10-31 09:53:19

标签: postgresql

当我在postgres中运行此查询时:

select id, name from schema.table;

我得到了这个输出 enter image description here 在这个id号码附带逗号。因此,当我将此文件下载到.csv格式时,我的.csv文件中存在格式问题。如何处理?

1 个答案:

答案 0 :(得分:0)

你的整数 id 值不应该有任何昏迷,因为postgres不会将comas和dot都存储为数字分隔符。

但是,您可以使用函数ltrim从字符串字段中删除comas:

select ltrim(cloumn1, ','), column2 from schema.table

https://www.postgresql.org/docs/9.1/static/functions-string.html