Sarthak,a student of class 12,created a table "Class".grade is one of the columns of this table.To find the details of students whose grades have been entered,he wrote the following MySql query,which did not give the desired result:
SELECT*FROM Class WHERE Grade="Null";
Help Sarthak to run the query by removing the errors from the query and write the correct query.
Answers
Answered by
3
Answer:
Hi how are you
Explanation:
Answered by
3
Answer:
SELECT * FROM CLASS WHERE GRADE IS NULL;
Similar questions