我对Postgresql相对较新,我知道如何填补一个数字在左边的sql Server中,但我很难在Postgresql中找出这一点。
我有一个数字列,其中最大位数是3,最小是1:如果它是一个数字,它有两个零,左边,如果它是2个数字,它有1,例如。 001,058,123。
在sql Server中,我可以使用以下命令:
RIGHT('000' + cast([Column1] as varchar(3)),3) as [Column2]
这在Postgresql中不存在。任何帮助将不胜感激。
您可以使用rpad和lpad函数分别向右或向左填充数字。请注意,这不直接对数字,所以你必须使用:: char或:: text来投射它们:
原文链接:https://www.f2er.com/postgresql/193298.htmlSELECT RPAD(numcol::text,3,'0'),-- Zero-pads to the right up to the length of 3 LPAD(numcol::text,-- Zero-pads to the left up to the length of 3 FROM my_table