mysql模糊查询语句like与not like的使用与区别

时间:2018-03-28
mysql模糊查询like的用法
 
查询user表中姓名中有“王”字的:
 
select * from user where name like '%王%'
 
mysql模糊查询not like的用法
 
查询user表中姓名中没有“王”字的:
 
select * from user where name not like '%王%'
 
查询user表中地址在上海姓名中没有“王”字和所有姓名为空的:
 
select * from user where adress =‘上海’ and name not like '%王%' or name is null
 
查询user表中地址在上海姓名中没有“王”字和地址在上海姓名为空的:
 
select * from user where adress =‘上海’ and (name not like '%王%' or name is null)

上一条:MySQL 从一张表update多个字段到另外一张表中去 下一条:进行数据挖掘的 8 个最佳开源工具

相关文章

最新文章