What is the meaning of ‘empty set’ in MySQL result set?
Answers
Answered by
0
Answer: 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).
Similar questions