1.查询包含某个字段

select * from 表明 where name like '%昆山%'

2.查询包含某个字段的总数量

select  count(*) from 表名 where name like '%昆山%'