How to use Minus in MySQL or MairaDB
MINUS operator is use to get all the records from first result set which are not present in second result set.
MySQL or MariaDB does not provide the MINUS operator. We can achieve Minus operation by using Left Join.
Syntax:
SELECT
column_list
FROM
table1
LEFT JOIN table12 ON join_predicate
WHERE
table2.id IS NULL;
Example :
Let's create two tables. Customer and Customer1. We will have more records in Customer table and few records in Customer1 table. By using left join , we will achieve results which Minus operator returns in other relational databases systems.`idcustomer` int,
`firstname` varchar(50) NULL,
`lastname` varchar(30) NULL,
`age` int(11) DEFAULT NULL,
`phonenumber` char(11) DEFAULT NULL,
`dob` date DEFAULT NULL,
`gender` char(1) NOT NULL
) ;
Let's create Customer1 table with same definition.
CREATE TABLE `customer1` (
`idcustomer` int,
`firstname` varchar(50) NULL,
`lastname` varchar(30) NULL,
`age` int(11) DEFAULT NULL,
`phonenumber` char(11) DEFAULT NULL,
`dob` date DEFAULT NULL,
`gender` char(1) NOT NULL
) ;
`idcustomer` int,
`firstname` varchar(50) NULL,
`lastname` varchar(30) NULL,
`age` int(11) DEFAULT NULL,
`phonenumber` char(11) DEFAULT NULL,
`dob` date DEFAULT NULL,
`gender` char(1) NOT NULL
) ;
Let's insert records in Customer table.
insert into customer(idcustomer,firstname,lastname,age,phonenumber,dob,gender)
values
(1,'Aamir','Ali',39,'505-4141969','1980-01-01','M'),
(2,'Aamir','Naz',39,'505-4141969','1980-01-01','M'),
(3,'Aamir','Shahzad',39,'505-4141900','1980-01-01','M');
Now insert fewer records in Customer1 table than Customer table. I am going to only insert two records instead of 3.
insert into customer1(idcustomer,firstname,lastname,age,phonenumber,dob,gender)
values
(1,'Aamir','Ali',39,'505-4141969','1980-01-01','M'),
(2,'Aamir','Naz',39,'505-4141969','1980-01-01','M');
Let's write our Left Join query to achieve Minus operator results on customer and customer1 table.
SELECT
a.*
FROM
customer a
LEFT JOIN
customer1 b ON a.idcustomer = b.idcustomer
AND a.firstname = b.firstname
AND a.lastname = b.lastname
AND a.age = b.age
AND a.phonenumber = b.phonenumber
AND a.dob = b.dob
AND a.gender = b.gender
WHERE
b.idcustomer IS NULL
As customer table has 3 records and customer1 table has only two matching records. The above query is going to return the single row from table customer which does not match exactly with customer1 table rows or not present in customer1 table.
How to use Minus operator in MySQL or MairaDB - Alternative to Minus Operator in MySQL
best-blepharoplasty-surgeons-in-turkey
ReplyDeletebest-dimple-creation-surgeons-in-turkey
best-hymenoplasty-surgeons-in-turkey
best-labiaplasty-surgeons-in-turkey
best-vaginal-tightening-surgeons-in-turkey
best-designer-vagina-surgeons-in-turkey
best-mommy-makeover-surgeons-in-turkey
best-breast-implants-surgeons-in-turkey
best-facelift-surgeons-in-turkey
When there is a problem with completing difficult tasks on the relevant field. Most of the people would not know how to get rid of this Free Shemale Porn Games and how to improve their way of thinking.
ReplyDeleteJava Training institute Coimbatore I am mani lives in Chennai. I have read your blog, its really useful for me. I did java development course in coimbatore at reputed java training centre this is useful for me to make a bright career in IT industry. So If anyone want to get best please vist Qtree Technologies.
ReplyDeleteThanks for information!
ReplyDeleteCar exhaust and mufflers specialists in Perth
Do you need Personal Finance?
ReplyDeleteBusiness Cash Finance?
Unsecured Finance
Fast and Simple Finance?
Quick Application Process?
Finance. Services Rendered include,
*Debt Consolidation Finance
*Business Finance Services
*Personal Finance services Help
contact us today and get the best lending service
personal cash business cash just email us below
Contact Us: financialserviceoffer876@gmail.com
call or add us on what's app +918929509036
pls visit my site i like it TeamViewer crack free serial key
ReplyDeleteIncredible blog here! It's mind boggling posting with the checked and genuinely accommodating data. future trunks jacket
ReplyDeleteTechnology advances rapidly, enhancing our daily lives and experiences. Just as a Resident Evil jacket is designed with innovative features to protect and support gamers in virtual environments, modern tech integrates cutting-edge solutions to improve functionality and convenience, demonstrating how both aim to enhance performance and user experience.
ReplyDeleteGreat post with valuable insights!
ReplyDeletelinK : https://www.smartcorp.in
Truly valuable content.
ReplyDeleteAppreciate the helpful information.
ReplyDeleteTo use the MINUS operation in MySQL or MariaDB, you'd use NOT EXISTS or LEFT JOIN. For expert business and legal advice, consult a practising company secretary in Coimbatore.
ReplyDelete