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 FORMAT() function

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

Introduction of MySQL FORMAT() function

This function in MySQL helps to format the given number like '#, ###, ###.##", round them to certain decimal points, and returns the result in the form of a string.

Syntax of the MySQL FORMAT() function

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

FORMAT(M, DEC, locale)

Parameters or arguments used in MySQL FORMAT() function:

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

1. M –

The number that is to be formatted.

2. DEC –

This is the number of decimal places to which the number is rounded off.

3. locale –

It's an optional parameter that decides a thousand separators and grouping between separators. By default, en_US locale is present in MySQL.

Returns:

The function will return the given number with proper format, round it off to a certain decimal place, and return the number in the form of a string.

Applications used for FORMAT() function:

The FORMAT() 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 FORMAT() function:

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

Example-1 :

In this example, we will round off the given number by using the FORMAT() function in MySQL to 2 decimal places.

SELECT FORMAT(555454.12365, 2) AS form;

Output :

form
555, 454.12
1 row in set (0.00 sec)

Example 2:

In this example, we will round off the given number by using MySQL's FORMAT() function with 0 decimal places.

SELECT FORMAT(130919999.456, 0)
AS form;

Output :

form
130, 919, 999
1 row in set (0.00 sec)

Example-3 :

Now we will Replace the en_US locale with the de_D locale.

SELECT FORMAT(27112020.1052, 3, 'de_DE') As form;

Output :

form
27.112.020, 105
1 row in set (0.00 sec)

Example-4 :

When we require to round off the column data, then we can take the help of the FORMAT() function in MySQL.

CREATE TABLE Commodity(
Commodity_Id INT AUTO_INCREMENT,
Commodity_Name VARCHAR(100) NOT NULL,
Price INT NOT NULL,
PRIMARY KEY(Commodity_Id )
);

Inserting values into the table:

INSERT INTO Commodity(Commodity_Name, Price)
VALUES
('MotorolaMobile', 75000.999 ),
('SmartWatch,' 73000.455 ),
('Camera,' 170000.545 ) ;

The table will look as follows.

SELECT * FROM Commodity;
Commodity_IdCommodity_NamePrice
1MotorolaMobile75000.999
2Smartwatch73000.455
3Camera170000.545

Now we will format the Price column by rounding up to 1 decimal place.

SELECT
Commodity_Name, FORMAT(Price, 1) As New_price
FROM
Commodity;

Output:

Commodity_NameNew_price
MotorolaMobile75, 001.0
Smartwatch73, 000.5
Camera170, 000.5

Application of MySQL FORMAT() function:

This function is used to format the given number like '#, ###, ###.##", round them to specific decimal points, and returns the result in the form of a string.

Summary:

In the above context, we have learned how we can use the FORMAT() function in MySQL used to format given number like '#, ###, ###.##", round them to specific decimal points, and returns the result in the form of a string.