mysql查询
Posted zuichumx0826
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql查询相关的知识,希望对你有一定的参考价值。
1.表名为cla;
查询某个表里的字段
select 字段名1,字段名1 from cla;
例如:查询cla 中的sname;
select sname from cla;
2,查询某个表的字段(字段下面有重复内容),并且显示的查询结果不显示重复的
select distinct class from cla;
3,查询加条件
select * from cla where sno=‘107‘;
4,查询某个字段满足条件的(class为95031中ssex为女的)
select * from cla where class in(95031) and ssex=‘女‘;
select * from cla where class =95031 and ssex=‘女‘;
5.模糊查询
a,查询sname带有是王字的(_代表一个字符串 %代表任意字符串)
select * from cla where sname like‘王_‘;
以上是关于mysql查询的主要内容,如果未能解决你的问题,请参考以下文章