
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Subquery to exclude a particular row in MySQL
Let us first create a table −
mysql> create table DemoTable -> ( -> Id int NOT NULL AUTO_INCREMENT PRIMARY KEY, -> Name varchar(100), -> Age int -> ); Query OK, 0 rows affected (0.87 sec)
Insert some records in the table using insert command −
mysql> insert into DemoTable(Name,Age) values('John',21); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable(Name,Age) values('Carol',22); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable(Name,Age) values('David',23); Query OK, 1 row affected (0.54 sec)
Display all records from the table using select statement −
mysql> select *from DemoTable;
Output
This will produce the following output −
+----+-------+------+ | Id | Name | Age | +----+-------+------+ | 1 | John | 21 | | 2 | Carol | 22 | | 3 | David | 23 | +----+-------+------+ 3 rows in set (0.00 sec)
Here is the subquery excluding particular row, with Name Carol −
mysql> select *from DemoTable -> where Name not in (select Name from DemoTable where Name='Carol' -> );
Output
This will produce the following output −
+----+-------+------+ | Id | Name | Age | +----+-------+------+ | 1 | John | 21 | | 3 | David | 23 | +----+-------+------+ 2 rows in set (0.00 sec)
- Related Questions & Answers
- How to exclude a specific row from a table in MySQL?
- How to correctly enclose subquery in MySQL?
- How can we fetch a particular row as output from a MySQL table?
- How can we nest a subquery within another subquery?
- How do I exclude a specific record in MySQL?
- MySQL SELECT from a subquery and then perform DELETE?
- How can we create a MySQL view with a subquery?
- How to use actual row count (COUNT(*)) in WHERE clause without writing the same query as subquery in MySql?
- Subquery in SQL
- How can we use a MySQL subquery with INSERT statement?
- How can we use a MySQL subquery with FROM clause?
- Get second largest marks from a MySQL table using subquery?
- Indicate a dangerous action to a particular table row or cell with Bootstrap
- Indicate a successful action to a particular table row or cell with Bootstrap
- Indicate a warning action to a particular table row or cell with Bootstrap
Advertisements