Subtraction in MySQL
MINUS
Operator is used in SQL to find unique elements in table A that are not present in table B.
Through this tutorial, we will see how to emulate the operator in MySQL MINUS
to get the desired result. We will understand it by using NOT IN
, NOT EXISTS
, , LEFT JOIN
and .IS NULL
We will also look at the syntax for each of the mentioned methods and explore some of the differences between them.
MINUS
Emulating the operator in MySQL (8.0.27)
Using in MySQLNOT IN
Let's take the student-course relationship as an example and create a database and two tables in the database. One is called 学生
and the other is called course
.
student
The table has students ID
', FIRST_NAME
, LAST_NAME
, GENDER
, and course
the table has COURSE_CODE
, , COURSE_TITLE
and STUDENT_ID
columns.
Sample code:
/*
create the database and use it for table creation and other manipulation*/
CREATE SCHEMA db_practice_minus_operator;
USE db_practice_minus_operator;
# create student table
CREATE TABLE db_practice_minus_operator.student (
ID INT AUTO_INCREMENT PRIMARY KEY,
FIRST_NAME VARCHAR(64) NOT NULL,
LAST_NAME VARCHAR(64) NOT NULL,
GENDER VARCHAR(30) NOT NULL
);
#create course table
CREATE TABLE course (
COURSE_CODE VARCHAR(60) NOT NULL,
COURSE_TITLE VARCHAR(64) NOT NULL,
STUDENT_ID INT NOT NULL,
PRIMARY KEY(COURSE_CODE),
FOREIGN KEY (STUDENT_ID) REFERENCES student(ID)
);
Remember that course
the table only has science subjects and we want to know the students who did not take any science courses. Let's populate the table and view the student
and course
tables.
Sample code:
# populate student table
INSERT INTO
student(FIRST_NAME, LAST_NAME,GENDER)
VALUES
('Shaajeel', 'Daniel', 'Male'),
('Nayya', 'Preston', 'Female'),
('James', 'Robert', 'Male'),
('Jennifer', 'John', 'Female'),
('Sarah', 'Paul', 'Female'),
('Karen', 'Donald','Female'),
('Thomas', 'Christopher','Male'),
('Lisa', 'Mark', 'Female'),
('Anthony', 'Richard', 'Male'),
('Matthew', 'Charles', 'Male');
# populate course table
INSERT INTO
course(COURSE_CODE, COURSE_TITLE, STUDENT_ID)
VALUES
(125854, 'Biology', 1),
(542968, 'Mathematics', 2),
(125648, 'Computer Science', 5),
(654891, 'Physics', 4),
(483215, 'Chemistry', 8),
(147934, 'Artificial Intelligence',6);
The current data in both tables is shown below.
Student desk:
Course Schedule:
Now, write the following SQL query to understand the operation simulation in MySQL MINUS
.
Sample code:
# Simulate Minus Operator in MySQL
SELECT * FROM student
WHERE student.ID NOT IN
(SELECT STUDENT_ID FROM course);
Output:
Using in MySQLNOT EXISTS
Sample code:
# Simulate Minus Operator in MySQL
SELECT * FROM student std
WHERE NOT EXISTS
(SELECT STUDENT_ID FROM course WHERE std.ID = STUDENT_ID);
Output:
In MySQL, use LEFT JOIN
andIS NULL
Sample code:
SELECT * FROM student
LEFT JOIN course on student.ID = course.STUDENT_ID
WHERE course.STUDENT_ID IS NULL;
Output:
In the above output, COURSE_CODE
, , COURSE_TITLE
and STUDENT_ID
are displayed as NULL
because these students have not registered or enrolled in any courses.
You can also compare the ID
, FIRST_NAME
, , LAST_NAME
and GENDER
columns with the output from other methods to see if everything is working as expected.
When to use NOT IN
, NOT EXISTS
and LEFT JOIN
/IS NULL
Now the question is how to choose one of these three methods. You can decide based on several basic points.
- The main difference between these three methods is that
NOT IN
andNOT EXISTS
display only the values from the left table (the first select query). - But
LEFT JOIN
/IS NULL
will output left table as well asNULL
values instead of right table's values in case no match is found between left and right tables, becauseLEFT JOIN
/IS NULL
is used to retrieve data from multiple tables. NULL
Another difference is how they handle values in the right table , sinceLEFT JOIN
/IS NULL
andNOT EXISTS
are semantically equivalent, butNOT IN
is not.- If no row satisfying the equality condition is found in the right table,
NOT EXISTS
returnTRUE
. NOT IN
behaves differently; if a line is found in the list,IN
will be outputTRUE
, andNOT IN
will be returnedFALSE
. On the other hand, if a line is not found in the list,IN
will be returnedNULL
, andNOT IN
will also be returnedNULL
, becauseNULL
the negation of isNULL
.
in conclusion
Considering all the details discussed above, we come to the conclusion that MySQL does not support MINUS
the operation, but there are other ways to simulate MINUS
the operation. You can use it according to your needs, comfort level, and requirements.
For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.
Related Articles
INTERSECT Operator in MySQL
Publish Date:2025/04/21 Views:99 Category:MySQL
-
This article will help you understand INTERSECT the operator. Although MySQL does not support INTERSECT and MINUS / EXCEPT , there are other ways to simulate this functionality. We will see INTERSECT what is , its benefits, and learn variou
Deleting using Join in MySQL
Publish Date:2025/04/21 Views:157 Category:MySQL
-
This tutorial article will show you how to use MySQL JOIN methods to delete data from multiple tables. This is useful when you are simultaneously deleting records from one table that are related to a specific record in another table. DELETE
MySQL using LIKE in case insensitive search
Publish Date:2025/04/21 Views:131 Category:MySQL
-
This tutorial article will show you how to use LIKE the operator to search a column. We will show you how to use it correctly to include all results that meet certain criteria, regardless of whether the value is uppercase or lowercase. LIKE
Loop PHP MySQLi Get Array Function
Publish Date:2025/04/21 Views:105 Category:MySQL
-
MySQLi fetch function is used to access data from the database server. After fetching the data, you can also iterate over it MySQLi with queries. In this article, we will see mysqli_fetch_array() the use of functions and methods to iterate
Generate a random and unique string in MySQL
Publish Date:2025/04/21 Views:77 Category:MySQL
-
Today, we will learn to use various functions in MySQL to generate random and unique strings. These functions include MD5() , RAND() , , SUBSTR() and UUID() . There is no inbuilt method to generate random string in MySQL, but there are many
Changing MySQL root password on Mac
Publish Date:2025/04/21 Views:160 Category:MySQL
-
This article teaches you how to change the MySQL user password on OS X. root We will be using XAMPP so that you can change the password using the MySQL console. Installing XAMPP for OSX First, download and install XAMPP for OSX from Apache
Using CURRENT_TIMESTAMP as a default value in MySQL
Publish Date:2025/04/21 Views:196 Category:MySQL
-
This article teaches you how to use as 5.6.5 in MySQL versions lower than . Thus, you can prevent MySQL error 1293. CURRENT_TIMESTAMP DEFAULT Our approach involves reordering table columns and using DEFAULT 0 and time values. Reproduce the
If ELSE in MySQL
Publish Date:2025/04/11 Views:86 Category:MySQL
-
In this tutorial, we aim to explore how to use IF ELSE the statement in MySQL. One of the key roles of a data analyst is to gather insights from the data and produce meaningful results. It can be done with the help of several data filtering
DATETIME vs. TIMESTAMP in MySQL
Publish Date:2025/04/11 Views:117 Category:MySQL
-
DATETIME and TIMESTAMP are two different data types that can be used to store values that must contain both a date and a time portion. In this article, we will understand how it is stored in the database and the memory required for ea