select * from employees where emp_no%2=1 and last_name<>'Mary'order by hire_date desc ; #不等于可以用 where 加<>进行条件限制 #奇偶条件where a%2=0