Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following table A:

id
----
1
2
12
123
1234

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

id
----
0001
0002
0012
0123
1234

How can I achieve this?

share|improve this question

3 Answers

up vote 25 down vote accepted

I believe this may be what your looking for:

SELECT padded_id = REPLACE(STR(id, 4), SPACE(1), '0') 

FROM tableA

or

SELECT REPLACE(STR(id, 4), SPACE(1), '0') AS [padded_id]

FROM tableA

I havent tested the syntax on the 2nd example... not sure if that works 100%, it may require some tweaking, but it conveys the general idea of how to obtain your desired output.

share|improve this answer
+1 Since I always wanted to do this without creating a user-defined function. Thank you! – ErickPetru Apr 13 '12 at 13:43
I can confirm that the second one does work, thanks. – guanome Jan 9 at 16:38
declare @T table(id int)
insert into @T values
(1),
(2),
(12),
(123),
(1234)

select right('0000'+convert(varchar(4), id), 4)
from @T

Result

----
0001
0002
0012
0123
1234
share|improve this answer
1  
See also stackoverflow.com/questions/121864/… – Nat Oct 18 '11 at 20:29

Try this:

SELECT RIGHT(REPLICATE('0',4)+CAST(Id AS VARCHAR(4)),4) FROM [Table A]
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.