思考

  1. % 取模,即求两个数相除的余数。奇数%2的余数为1
  2. <> 和 != 均为不等号

答案

select * from employees
where emp_no % 2 = 1
and last_name <> 'Mary'
order by hire_date desc;