how to get round off value in sql server -


i having column in data amount form, want convert them in round figure.

select round(yourcolumn, 0) roundedcolumn table; 

round(value, decimal) thing searching for. if want update should have write like:

update table set yourcolumn = round(yourcolumn, 0) condition; //only if want specify specific rows 

Comments

Popular posts from this blog

python - Selenium remoteWebDriver (& SauceLabs) Firefox moseMoveTo action exception -

html - How to custom Bootstrap grid height? -

transpose - Maple isnt executing function but prints function term -