Q. What will be the output of the following MySQL statement?
SELECT *
FROM employee
WHERE start_date>=’2007-01-01’ AND
Start_date<=’2005-01-01’
SELECT *
FROM employee
WHERE start_date>=’2007-01-01’ AND
Start_date<=’2005-01-01’
β
Correct Answer: (D)
None of the mentioned
Explanation: This question asks about a MySQL query that tries to find employees who started working between January 1st, 2007, and January 1st, 2005.