vote up 1 vote down star

How to round with no trailing zeros in SQL Server 2005?

    select round(100.5555, 2)

...yields 100.55**00**. How to get rid of the zeros?

flag

80% accept rate

3 Answers

vote up 1 vote down check

Try this

select CAST(round(100.5555, 2) AS DECIMAL(8,2))
link|flag
What if I don't know the lenght 8, the only thing I know is that I need 2 digits arter dot? – Alex Nov 4 at 13:24
@astander: I got it, 8 is maximum, so I can just put any large enough number. Thanks! – Alex Nov 4 at 13:26
vote up 1 vote down

declare @d decimal(8,2) can help you.

link|flag
vote up 0 vote down

You could re-cast it as your original datatype, e.g.

SELECT CAST(ROUND(100.5555, 2) AS FLOAT)

However, this sounds like display logic and therefore, I suspect you are better off doing this within your UI rather than your DB.

link|flag

Your Answer

Get an OpenID
or

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