select * from Client where address like '%余杭%' and telephone like '%9_' order by id desc
select * from Client c where c.telephone like '%9_' and c.address like '%余杭%' ordery by c.id desc;