Questions tagged «zero-padding»


3
在PostgreSQL中向左填充零
我对PostgreSQL相对较新,并且我知道如何在SQL Server中在左边用零填充数字,但是我很难在PostgreSQL中弄清楚这一点。 我有一个数字列,其中最大位数为3,最小位数为1:如果是一位,它的左边有两个零,如果是两位,则有1,例如001、058、123。 在SQL Server中,可以使用以下命令: RIGHT('000' + cast([Column1] as varchar(3)), 3) as [Column2] 在PostgreSQL中不存在。任何帮助,将不胜感激。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.