Need to add "00" in-front of each row and the size of col1 is 3 i.e., (varchar(3))
I have data as below
col1
-----
1
02
003
4
05
I need to update the col1 values like prefix(001, 002, 003, 004, 005) as shown below.
col1
-----
001
002
003
004
005
I tried with SQL Server replicate function but I didn't get.