我想从postgresql格式化中获取价值。格式是用户选项,就像他们是否要用逗号分隔符一样,小数点后的位数是2,3或4。
postgresql
所以现在我写了这样的查询。
Select to_char(rate,'FM999.00') as BasicSaleRate from table1
它的返回值是ans 220.00。像这样如何用逗号分隔符值编写查询'#,0.00'。这意味着超过千的值是否用逗号分隔符返回。
220.00
'#,0.00'
正在使用 postgresql 9.3
postgresql 9.3
谢谢
请参阅此参考资料http://www.postgresql.org/docs/9.3/static/functions- formatting.html to_char(rate,’FM999,999.00’)