MySQL Tutorial

MySQL Tutorial MySQL Features MySQL Database Introduction MySQL Environmental Setup MySQL Data Types MySQL variable MySQL Advance table Query MySQL database queries MySQL Entity-Relationship Model MySQL Table Query MySQL Operators MySQL logical conditions MySQL Queries MySQL Clauses Clustered vs Non-Clustered Index MySQL Full text index MySQL Descending Index MySQL Invisible Index MySQL Composite Index MySQL Prefix index MySQL Index MySQL Create index MySQL Drop Index MySQL Show index MySQL Unique index MySQL Table MySQL Variable MySQL View MySQL Constraints MySQL Command Line Client Basic Queries MySQL Stored Procedure MySQL IF Statement MySQL Subquery MySQL Triggers

MySQL Join

MySQL Join MySQL CROSS JOIN MySQL DELETE JOIN MySQL EQUI JOIN MySQL INNER JOIN MySQL Union MySQL NATURAL JOIN MySQL RIGHT JOIN MySQL SELF JOIN MySQL UPDATE JOIN

MySQL Function

MySQL Function MySQL AVG() Function MySQL SUM() Function MySQL String() Function MySQL Advance() Function MySQL Aggregate() Function MySQL COALESCE() Function MySQL Control Flow Function MySQL COUNT() Function MySQL Date And Time Function MySQL GREATEST() Function MySQL ISNULL() Function MySQL LEAST() Function MySQL Math() Function MySQL MAX() Function MySQL MIN() Function MySQL find_in_set() function MySQL ASIN() Function MySQL CEIL() function MySQL CEILING() function MySQL TAN() Function MySQL Truncate() Function MySQL FLOOR() function MySQL LN() function MySQL LOG2() function MySQL LOG10() function MySQL MOD() function MySQL PI() function MySQL POW() function MySQL RADIANS() function MySQL RAND() function MySQL ROUND() function MySQL Character Length Function MySQL Current Date Function MySQL Date Add Function MySQL Date Format Function MySQL Datediff Function MySQL Day Function MySQL Elt Function MySQL Export Set Function MySQL Field Function MySQL Format Function MySQL From Base64 Function MySQL Hex Function MySQL Insert Function MySQL Instr Function MySQL Length Function MySQL CONCAT() function MySQL FIND_IN_SET() function MySQL LIKE() function MySQL LOAD_FILE() function MySQL LOCATE() function MySQL LOG() function MySQL MONTHNAME() function MySQL NOW() function MySQL PERIOD_ADD() function MySQL PERIOD_DIFF() function MySQL POWER() function MySQL QUARTER() function MySQL REVERSE() function MySQL RIGHT() Function MySQL RPAD() function MySQL RTRIM() function MySQL SEC_TO_TIME() function MySQL SOUNDEX() function

Questions

Which Clause is Similar to Having Clause in MySQL

Misc

MySQL Error 1046 - No Database Selected Failed to Start MySQL Service Unit MySQL Service Unit not Found Import MySQL Connector Mudule not Found Error No Module Named MySQL Joins Available in MySQL MySQL Docs MySQL Download For Windows 7 64 Bit MySQL Error Code 1064 MySQL Export MySQL History MySQL Host MySQL Import MySQL Drop All Tables MySQL Drop MySQL Error Code 1175 MySQL Events MySQL Except MYSQL Foreign Key Constraint MySQL If Exists MySQL IndexOf MySQL List All Tables json_extract in MySQL TIMESTAMPDIFF in MySQL MySQL Syntax Checker Sudo MySQL Secure Installation

MySQL ROUND() function

In this context, we will learn how we can use the MySQL ROUND() function with proper syntax and good examples.

Introduction of MySQL ROUND() function

The ROUND() function in MySQL is used to round a number to a specified number of decimal places. It will round off the number to the nearest integer when there no specified number of decimal places is provided for round-off.

Syntax of the MySQL ROUND() function

The syntax of the MySQL ROUND() function is given as follows:

ROUND(Y, Z);

Parameters or arguments used in MySQL ROUND() function:

There are two parameters accepted by the ROUND() function in MySQL, which are given as follows:

Y: The number which is to be rounded.

Z: Number of decimal places up to which the given number is to be rounded. It is optional. If not given, it rounds off the number to the closest integer. If it is negative, then the number is rounded to the left side of the decimal point.

Returns:

It will return the number after rounding to the specified places.

Application used for ROUND() function:

The ROUND() function can be used in the given below MySQL versions.:

  • MySQL 5.7
  • MySQL 5.6
  • MySQL 5.5
  • MySQL 5.1
  • MySQL 5.0
  • MySQL 4.1
  • MySQL 4.0
  • MySQL 3.23

Examples of MySQL ROUND() function:

Now we will look into some MySQL ROUND() function examples and will explore how we can use the ROUND function in MySQL.

Example 1:

Now we will Round off a number when D is not specified with the help of the ROUND function in MySQL.

a) In this example, we will Round off a Negative number.

SELECT ROUND(-8.11) AS Rounded_Number;

Output:

Rounded_Number
-8
1 row in set (0.00 sec)

b) In this example, we will Round off a Positive number.

SELECT ROUND(54.61) AS Rounded_Number;

Output:

Rounded_Number
54
1 row in set (0.00 sec)

Example 2:

Here, we will Round off a number when D is negative(-ve) with the help of the ROUND function in MySQL.

a) Rounding a Negative number.

SELECT ROUND(-1567.1100, -3) AS Rounded_Number;

Output:

Rounded_Number
-2000
1 row in set (0.00 sec)

b) Rounding a Positive number.

SELECT ROUND(1016.6089, -1) AS Rounded_Number;

Output:

Rounded_Number
1020
1 row in set (0.00 sec)

Example 3:

Here, we will Round off a number when D is positive(+ve) with the help of the ROUND function in MySQL.

a) Rounding a Negative number up to 2 decimal places.

SELECT ROUND(-1567.1160, 2) AS Rounded_Number;

Output:

Rounded_Number
-1567.12
1 row in set (0.00 sec)

b) Rounding a Positive number up to three decimal places.

SELECT ROUND(1016.6019, 3) AS Rounded_Number;

Output:

Rounded_Number
1016.602
1 row in set (0.00 sec)

Example 4:

When we require to find the rounded values for the column data, then we can take the help of the ROUND function. In this example, we are going to find rounded values for the Price column. For demonstration, we have created a table named ComROUNDity.

CREATE TABLE ComROUNDity(
ComROUNDity_id INT AUTO_INCREMENT,
ComROUNDity_name VARCHAR(100) NOT NULL,
Purchasing_price DECIMAL(13, 6) NOT NULL,
Selling_price DECIMAL(13, 6) NOT NULL,
Selling_Date Date NOT NULL,
PRIMARY KEY(ComROUNDity_id)
);

Now insert some data to the ComROUNDity table.

INSERT INTO
ComROUNDity(ComROUNDity_name, Purchasing_price, Selling_price, Selling_Date)
VALUES
('P6', 1060.865460, 1700.675400, '2020-08-26'),
('P2', 2000.154300, 3050.986700, '2020-08-27'),
('P1', 4000.874300, 5070.786500, '2020-08-28'),
('P2', 2090.654300, 3050.896500, '2020-09-01'),
('P3', 5900.543280, 7010.654700, '2020-09-04'),
('P4', 4000.353200, 4500.125400, '2020-09-05'),
('P5', 5010.768900, 6000.873200, '2020-09-08');

So, the ComROUNDity Table is –

ComROUNDity_idComROUNDity_namePurchasing_priceSelling_priceSelling_Date
1P61060.8654601700.6754002020-08-26
2P22000.1543003050.9867002020-08-27
3P14000.8743005070.7865002020-08-28
4P22090.6543003050.8965002020-09-01
5P34000.3532007010.6547002020-09-04
6P44000.3532004500.1254002020-09-05
7P55010.7689006000.8732002020-09-08

Now, we are going to round off both Purchasing_price and Selling_price columns up to 2 decimal places.

SELECT ComROUNDity_name, Purchasing_price, ROUND(Purchasing_price, 2) Rounded_Bprice,
Selling_price, ROUND(Selling_price, 2) Rounded_Sprice
FROM ComROUNDity;

Output:

ComROUNDity_namePurchasing_priceRounded_BpriceSelling_priceRounded_Sprice
P61060.8654601060.871700.6754001700.68
P22000.1543002000.153050.9867003050.99
P14000.8743004000.875070.7865005070.79
P22090.6543002090.653050.8965003050.90
P35900.5432805900.547010.6547007010.65
P44000.3532004000.354500.1254004500.13
P55010.7689005010.77  

Summary:

In the above context, we have learned how we can use the ROUND() function in MySQL used to round a number to a specified number of decimal places.