-
What will be the output of the following query?
SELECT *
FROM Student
WHERE start_date BETWEEN ‘2009-05-05’ AND ‘2010-05-05’;
-
- All Student details from 2009 to 2010
- All Student details between 2009 and 2010
- All Student details before 2009
- All of above
- None of these
Correct Option: B
“BETWEEN” operator is used for upper – upper limit.