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

node.js - Node js - Trying to send POST request, but it is not loading javascript content -

javascript - Replicate keyboard event with html button -

javascript - Web audio api 5.1 surround example not working in firefox -