Q. What will be the result of the following MySQL command?
WHERE end_date IS NULL
AND (title=’teller’ OR start_date < ‘2007-01-01’)
WHERE end_date IS NULL
AND (title=’teller’ OR start_date < ‘2007-01-01’)
β
Correct Answer: (A)
Only those rows will be selected whose" end_date" should be NULL
Explanation: This MySQL command is used to filter rows from a table based on conditions related to "end_date", "title", and "start_date". Let's break down the command: