How can I convert bigint to nvarchar using the following scheme:

  • 1 converts to 0001
  • 123 converts to 0123
link|improve this question

56% accept rate
123 should convert to 0123 or 0125? – SWeko Nov 3 '11 at 10:11
1  
@marc_s Thank you for your edit – Ehsan Nov 3 '11 at 11:02
@SWeko Thank you for your notification – Ehsan Nov 3 '11 at 11:03
feedback

2 Answers

up vote 3 down vote accepted

Here a possible solution:

declare @i bigint
SET @i = 125
select right( '0000' + ltrim( str( @i ) ), 4 )
link|improve this answer
feedback

Slight variation of danihp's, but using the REPLICATE function.

DECLARE @aVar bigint
SELECT @aVar = 123;
SELECT RIGHT(REPLICATE('0', 4) + LTRIM(STR(@aVar)), 4)

Will return 0123

link|improve this answer
+1 @Neil Knight Thanks – Ehsan Nov 3 '11 at 11:05
feedback

Your Answer

 
or
required, but never shown

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