Pad a string with leading zeros so it's 3 characters long in SQL Server 2008

后端 未结 17 908
清歌不尽
清歌不尽 2020-11-22 08:13

I have a string that is up to 3 characters long when it\'s first created in SQL Server 2008 R2.

I would like to pad it with leading zeros, so if its original value w

17条回答
  •  旧时难觅i
    2020-11-22 08:37

    I have always found the following method to be very helpful.

    REPLICATE('0', 5 - LEN(Job.Number)) + CAST(Job.Number AS varchar) as 'NumberFull'
    

提交回复
热议问题