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
Post a Comment