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关键字的文章
博客列表 >MySQL in, find_in_set(条件, 字段),like
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关键字的文章