- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What is the meaning of ‘empty set’ in MySQL result set?
If there is ‘empty set’ in the result set of MySQL query then it means that MySQL is returning no rows and no error also in the query. It can be understood with the help of the following example −
mysql> Select * from Student_info WHERE Name = 'ABCD'; Empty set (0.00 sec)
We can see the empty set and execution time as output. It means that the query is correct but the MySQL table is not having the name ‘ABCD’.
- Related Articles
- How to select an empty result set in MySQL?
- What is an empty set?
- In MySQL, how can we randomize set of rows or values in the result set?
- Set user variable from result of query in MySQL?
- Set the result of a query to a variable in MySQL?
- What is the importance of the order of Columns in the SET clause of UPDATE statement? Will it make big difference in result set returned by MySQL?
- How Can MySQL operator precedence affect result set?
- How to make MySQL result set the same as specified?
- How to set default value for empty row in MySQL?
- How can we get all the unique rows in MySQL result set?
- How to sort MySQL output on the basis of the column which is not in the result set?
- How is it possible to filter out the duplications in the rows of result set return by MySQL?
- Set a custom value for NULL or empty values in MySQL
- How to replace 'Empty set' in a MySQL query?
- How can we get the summary output of a column in MySQL result set itself?

Advertisements