1.分析
查询时where中两个条件。

2.代码
SELECT *
FROM employees
WHERE emp_no % 2 = 1
AND last_name != "Mary"
ORDER BY hire_date DESC