Saved Bookmarks
| 1. |
What is wrong with the following statement? Write the corrected form of this query :SELECT * FROM employeeWHERE grade = NULL ; |
|
Answer» IS NULL should be used in place of = NULL. Following is the correct statement : SELECT * FROM employee WHERE grade IS NULL ; |
|