vote up 0 vote down star

I have this data as varchar '00072330'. How do I convert it to a decimal that looks like '723.30' in SQL Server 2008?

flag

52% accept rate

2 Answers

vote up 3 vote down check

Try this:

declare @data as varchar(8)
set @data = '00072330'
print cast(@data as decimal) / 100
link|flag
vote up 2 vote down

This:

SELECT CAST('00072330' AS INT)/100.0

...will give you:

723.300000

The .0 is important, otherwise SQL Server will perform integer math.

link|flag
1  
.0 is required because you casted to int; casting to decimal don't requires it – Rubens Farias Oct 19 at 16:40
Yes, but why not be more explicit when you cast as decimal? If you know you are limited to 8 characters (two decimal places) I would much rather see AS DECIMAL(8,2) than just AS DECIMAL. YMMV. – Aaron Bertrand Oct 20 at 1:58
I think the point of the conversion is because the precision is not consistent. But you make a good point about setting the precision on the cast/convert. I'm still not up to speed on my SQL Server datatypes. – OMG Ponies Oct 20 at 2:22

Your Answer

Get an OpenID
or

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