Q. The following MySQL statement belongs to which "Condition Types"?
SELECT emp_id, fname, lname
FROM account
WHERE start_date<’2007-10-08’;
SELECT emp_id, fname, lname
FROM account
WHERE start_date<’2007-10-08’;
β
Correct Answer: (C)
Range condition
Explanation: This question asks you to identify the type of condition used in a MySQL query. The query shown is: