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

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

Introduction of MySQL QUARTER() function

The QUARTER() function in MySQL returns the Quarter of the year for a given date value. It returns a number from 1 to 4.

Syntax of the MySQL QUARTER() function

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

QUARTER(dt)

Parameters or arguments used in MySQL QUARTER() function:

There is only one parameter accepted by the QUARTER() function in MySQL, which is given as follows:

DT: The date or DateTime from which we want to extract the Quarter in MySQL.

Returns:

It will return 1 if the given date is in the range January-March, return 2 for April-June, return 3 for July-September, and if the date is in the range from October-December, it returns 4.

Application used for QUARTER() function:

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

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

Example-1 :

In this example, we will find the Current QUARTER Using the QUARTER() Function in MySQL.

SELECT QUARTER(NOW()) AS CURRENT_QUARTER;

Output:

CURRENT_QUARTER
3
1 row in set (0.00 sec)

Example-2 :

In this example, we will find the Quarter from the given DateTime Using the QUARTER() Function.

SELECT QUARTER('2020-03-26 08:09:22') AS QUARTER_NUMBER;

Output:

QUARTER_NUMBER
1
1 row in set (0.00 sec)

Example-3 :

In this example, we will find the Quarter from the given DateTime Using the QUARTER() Function when the date is NULL.

SELECT QUARTER(NULL) AS QUARTER_NUMBER;

Output:

QUARTER_NUMBER
NULL
1 row in set (0.00 sec)

Example-4:

In this example we will create a table named Commodity which allows you to perform the quarter function on Selling_Date.

CREATE TABLE Commodity(
Commodity_id INT AUTO_INCREMENT,
Commodity_name VARCHAR(100) NOT NULL,
Purchasing_price DECIMAL(13, 2) NOT NULL,
Selling_price DECIMAL(13, 2) NOT NULL,
Selling_Date Date NOT NULL,
PRIMARY KEY(Commodity_id)
);

Now, we will insert some data to the Commodity table.

INSERT INTO
Commodity(Commodity_name, Purchasing_price, Selling_price, Selling_Date)
VALUES
('Audi Q8', 10000000.00, 15000000.00, '2018-01-26' ),
('Volvo XC40', 2000000.00, 3000000.00, '2018-04-20' ),
('Audi A6', 4000000.00, 5000000.00, '2018-07-25' ),
('BMW X5', 5000500.00, 7006500.00, '2018-10-18' ),
('Jaguar XF', 5000000, 7507000.00, '2018-01-27' ),
('Mercedes-Benz C-Class', 4000000.00, 6000000.00, '2018-04-01'
),
('Jaguar F-PACE,' 5000000.00, 7000000.00, '2018-12-26' ),
('Porsche Macan', 6500000.00, 8000000.00, '2018-04-16' ) ;

So, Our table looks like this:

Commodity_idCommodity_namePurchasing_priceSelling_priceSelling_Date
1Audi Q810000000.0015000000.002018-01-26
2Volvo XC402000000.003000000.002018-04-20
3Audi A64000000.005000000.002018-07-25
4BMW X55000500.007006500.002018-10-18
5Jaguar XF5000000.007507000.002019-01-27
6Mercedes-Benz C-Class4000000.006000000.002019-04-01
7Jaguar F-PACE5000000.007000000.002019-12-26
8Porsche Macan6500000.008000000.002020-04-16

We will find the number of Commodities sold per Quarter using the MONTH () function.

SELECT
QUARTER(Selling_Date) as quarter,
COUNT(Commodity_id) as COMMODITY_SOLD
FROM
Commodity
GROUP BY QUARTER(Selling_Date)
ORDER BY QUARTER(Selling_Date);

Output :

QUARTERCOMMODITY_SOLD
12
23
31
42

Application of MySQL QUARTER() function:

This function is used to return the Quarter of the year for a given date value.

Summary:

In the above context, we have learned how to use the QUARTER() function in MySQL to return the Quarter of the year for a given date value.