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

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

Introduction of MySQL MOD() function

Basically, in MySQL, the MOD() function is used to retrieve the Remainder of one number divided by another. The remainder of the dividend divided by the divisor is returned by the MOD() function in MySQL. It will return NULL when the divisor is zero.

Syntax of the MySQL MOD() function

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

MOD(P, Q)
or
P % Q
or
P MOD Q

Parameters or arguments used in MySQL MOD() function:

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

P: It is the dividend, which is a numeric expression or a number that will be divided by Q.

Q: It is the divisor, which is a numeric expression or a number by which to divide the dividend.

Returns:

It will return the Remainder of the dividend divided by the divisor.

Application used for MOD() function:

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

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

Example-1:

Now we will derive the Remainder of 25 when it is divided by 5 using MOD Function in MySQL.

SELECT MOD( 25, 5) AS Remainder;

Output:

Remainder
0
1 row in set (0.00 sec)

Example-2:

Now we will derive the Remainder of 23 when it is divided by 5 using the modulus operator(%) in MySQL.

SELECT 23 % 5 AS Remainder;

Output:

Remainder
3
1 row in set (0.00 sec)

Example-3:

In this example, we will derive the Remainder of a floating number using the MOD Function in MySQL.

SELECT 10.15 MOD 3 AS Remainder;

Output:

Remainder
1.15
1 row in set (0.00 sec)

Example-4:

In this example, we will derive the Remainder of a number using the MOD Function when the divisor is 0 in MySQL.

SELECT MOD( 6, 0) AS Remainder;

Output:

Remainder
NULL
1 row in set (0.00 sec)

Example-5:

When we require to find the Remainder value of column data, then we can take the help of the MOD function. In this given an example, we will find whether a pupil has appeared in a total odd number of exams or even with the help of the MOD function. For demonstration, we have created a table named pupil.

CREATE TABLE Pupil
(
Pupil_id INT AUTO_INCREMENT,
Pupil_name VARCHAR(100) NOT NULL,
Pupil_Class VARCHAR(20) NOT NULL,
TotalExamGiven INT NOT NULL,
PRIMARY KEY(Pupil_id )


);

Now, insert some data into the Pupil table:

INSERT INTO Pupil
(Pupil_name, Pupil_Class, TotalExamGiven )
VALUES
('Sayan,' 'IX,' 8 ),
('Nitin,' 'X,' 5 ),
('Aniket', 'XI', 6 ),
('Abdur,' 'X,' 7 ),
('Riya,' 'IX,' 4 ),
('Jony,' 'X,' 10 ),
('Deepak', 'X', 7 ),
('Ankana', 'XII', 5 ),
('Shreya,' 'X,' 8 ) ;

So, the Pupil Table is as follows.

mysql> SELECT * FROM Pupil;
Pupil_idPupil_namePupil_ClassTotalExamGiven
1SayanIX8
2NitinX5
3AniketXI6
4AbdurX7
5RiyaIX4
6JonyX10
7DeepakX7
8AnkanaXII5
9ShreyaX8

9 rows in set (0.00 sec)

Now, we are going to find whether a pupil has appeared in a total odd number of exams or even.

SELECT
Pupil_name,
Pupil_Class,
TotalExamGiven,


IF(MOD(TotalExamGiven, 2),
'Odd,' 'Even')
OddOrEven FROM Pupil ;

Output:

Pupil_namePupil_ClassTotalExamGivenOddOrEven
SayanIX8Even
NitinX5Odd
AniketXI6Even
AbdurX7Odd
RiyaIX4Even
JonyX10Even
DeepakX7Odd
AnkanaXII5Odd
ShreyaX8Even
9 rows in set (0.00 sec)

Summary:

In the above context, we have learned how we can use the MOD() function in MySQL used to find the Remainder of one number divided by another.