博客列表 >MySQL in, find_in_set(条件, 字段),like

MySQL in, find_in_set(条件, 字段),like

萝卜温的博客
萝卜温的博客原创
2018年05月24日 10:05:021668浏览

In 表示条件包含字段:

select * from student where id in (1,2,3,4,5,6,8.....)

find_in_set 表示字段包含条件:

select * from article where find_in_set('PHP', tags);//查找标签为PHP的文章

like 表示字段匹配某个模式:

select * from article where title like '%PHP%'; //查找标题中包含PHP关键字的文章


声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议