Maison > base de données > tutoriel mysql > MySQL学习笔记7:基本查询_MySQL

MySQL学习笔记7:基本查询_MySQL

WBOY
Libérer: 2016-06-01 13:37:22
original
942 Les gens l'ont consulté

bitsCN.com

参考表:student


 

多字段查询
mysql> select id,name,birth from student;
Copier après la connexion

 

所有字段查询
mysql> select * from student;
Copier après la connexion

 

where指定查询
mysql> select * from student where id=901;mysql> select * from student where id>=904;mysql> select name from student where department='计算机系';
Copier après la connexion

 

in指定集合查询
mysql> select * from student where birth in(1988,1990);mysql> select * from student where id in(903,906);
Copier après la connexion

 

not in非范围查询
mysql> select * from student where birth not in(1990,1998);
Copier après la connexion

 

between and指定范围查询
mysql> select * from student where birth between 1986 and 1988;
Copier après la connexion

 

not between and不在指定范围的查询
mysql> select * from student where id not between 904 and 906;
Copier après la connexion

 

like字符串匹配查询
mysql> select * from student where name like '_三';mysql> select * from student where name like '张三';mysql> select * from student where name like '张%';
Copier après la connexion

 

not like不匹配查询
mysql> select * from student where name not like '张%';
Copier après la connexion

 

空值查询
mysql> select * from student where address is null;
Copier après la connexion

 

and多条件查询
mysql> select * from student where name like '张%' and birth>1985;mysql> select * from student where name like '张%' and birth>1985 and id like '%3';
Copier après la connexion

 

or多条件查询
mysql> select * from student where id=905 or birth=1988;mysql> select * from student where id=905 or birth=1988 or sex='女';
Copier après la connexion

 

distinct查询结果不重复
mysql> select distinct sex from student;mysql> select distinct department from student;
Copier après la connexion

 

order by查询结果排序
mysql> select * from student order by birth;mysql> select * from student order by birth asc;mysql> select * from student order by birth desc;
Copier après la connexion

 

group by分组查询
mysql> select sex,group_concat(name) from student group by sex;mysql> select sex,count(name) from student group by sex;
Copier après la connexion

 

limit限制查询结果数量
mysql> select * from student limit 2;mysql> select * from student limit 1,3;
Copier après la connexion

 

 

bitsCN.com
Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal