Tuesday, August 15, 2017

SQL - Rounding off to 2 decimal places

select 
    round(630/60.0,2), 
    cast(round(630/60.0,2) as numeric(36,2))

No comments:

Post a Comment