PadLeft function in T-SQL

后端 未结 17 2864
挽巷
挽巷 2020-11-27 03:44

I have the following table A:

id
----
1
2
12
123
1234

I need to left-pad the id values with zero\'s:

id
----
0         


        
17条回答
  •  囚心锁ツ
    2020-11-27 04:18

    This is what I normally use when I need to pad a value.

    SET @PaddedValue = REPLICATE('0', @Length - LEN(@OrigValue)) + CAST(@OrigValue as VARCHAR)
    

提交回复
热议问题