-
What will be the output of the following query?
SELECT *
FROM Student
WHERE start_date>=’2009-08-08’ AND Start_date<=’2007-08-08’
-
- All employees from 2009 to 2007
- Empty set
- All employees between 2009 and 2007
- All of above
- None of these
Correct Option: D
No query can have a date which is greater than ‘2009-08-08’ but less than ‘2007-08-08.