无法在postgresql中将数字转换为String

时间:2014-11-09 09:17:37

标签: postgresql numeric postgresql-9.2

我无法将数字转换为字符串。例如,下面是查询:

select to_char(50000.00,'999D99S')

任何帮助都会感激不尽。

2 个答案:

答案 0 :(得分:0)

以下语法帮助我:

select 50000.00::text as content

答案 1 :(得分:0)

您必须添加更多9

select to_char(50000.00,'99 999D99S');

如果您不知道自己可以获得多少小数,请执行以下操作:

select to_char(50000.00,'999 999 999 999D99S');