Home
SQL Server / T-SQL
Aggregate Functions
Analytical Functions
Constraints
Cursor
Data Set
Data Type
Database
Date Timezone
Index
Insert Delete Update
Math Functions
Select Query
Sequence
Store Procedure Function
String Functions
Subquery
System
Table
Table Joins
Transact SQL
Transaction
Trigger
View
XML
select ROUND(12.5,0) : ROUND « Math Functions « SQL Server / T-SQL
SQL Server / T-SQL
Math Functions
ROUND
select ROUND(12.5,0)
4> 5> select ROUND(12.5,0) 6> GO ----- 13.0 (1 rows affected) 1>
Related examples in the same category
1.
ROUND: Rounds a value to the number of decimal places specified in the second parameter
2.
Round the updated data
3.
ROUND(107.345678,-1,0)
4.
ROUND(100.345678,5,1)
5.
select ROUND(12.4999,0)
6.
select ROUND(12.4999,1)
7.
select ROUND(12.4999,-1) (minus)
8.
select ROUND(12.5,0,1)