无法在 postgresql 中将数字转换为字符串
Posted
技术标签:
【中文标题】无法在 postgresql 中将数字转换为字符串【英文标题】:Not able to convert numeric to String in postgres sql 【发布时间】:2014-11-09 09:17:36 【问题描述】:我无法将数字转换为字符串。例如下面是查询:
select to_char(50000.00,'999D99S')
任何帮助将不胜感激。
【问题讨论】:
【参考方案1】:你必须添加更多9
:
select to_char(50000.00,'99 999D99S');
如果您不知道可以有多少小数,请执行以下操作:
select to_char(50000.00,'999 999 999 999D99S');
【讨论】:
【参考方案2】:以下语法帮助了我:
select 50000.00::text as content
【讨论】:
以上是关于无法在 postgresql 中将数字转换为字符串的主要内容,如果未能解决你的问题,请参考以下文章