《MysqL必读MysqL中的基本查询语句学习笔记》要点:
本文介绍了MysqL必读MysqL中的基本查询语句学习笔记,希望对您有用。如果有疑问,可以联系我们。
1.基本查询语句
select 属性列表 from 表名和视图列表 [where 条件表达式1] [group by 属性名1 [having 条件表达式2]] [order by 属性名2 [asc|desc]]
2.单表查询
1)使用*查询所有字段
MysqL教程
select * from 表名;
2) 查询指定字段
MysqL教程
select ID,name from product;
使用上面例子可以查询指定字段MysqL教程
3)查询指定记录
where 条件表达式
实例:
MysqL教程
select *from employee where ID = 1002;
where 子句常用查询条件MysqL教程
比较:=、<、 <=、 >、 >=、 !=、 <>、 !>、 !<
指定范围 : between and、not between and
指定集合:in、not in
匹配字符: like、not like
是否为空值:is null 、is not null
多条件查询:and or
4)带in关键字的查询
in关键字可以判断某个字段的值是否在指定的集合中.MysqL教程
[not] in (元素1,元素2,...,元素n)
实例:
MysqL教程
select * from employee where ID in (1001,1002);
如果集合中的元素为字符时,需加上单引号.MysqL教程
5)带between and 的范围查询
[not] between 取值1 and 取值2
取值1为起始值,取值2为终止值
实例:
MysqL教程
select * from employee where age bewteen 15 and 20;
6)带like的字符串匹配查询
[not] like ‘字符串';
‘字符串'的值可以是完整的字符串,也可以是含百分号(%)或下滑线(_)的通配字符.MysqL教程
“% ”可以代表任意长度的字符串,长度可以是0.
“_”只能表示单个字符.
完整字符时like相当于“=”.
实例:
MysqL教程
select * from employee where homeaddr like ‘北京%';
查询所有homeaddr字段中以“北京”
开头的记录.
MysqL教程
select * from employee where name like "ar_c";
查询所有name字段值长度为4,前两个字母为“ar”最后一个字母为“c”的记录.
统配的字符串可以用单引号或双引号.
通配符“”可以多次使用,如“赵 _”.MysqL教程
7)查询空置
is [not] null
实例:
MysqL教程
select * from work where info is null;
查询work表info字段为空的记录.MysqL教程
8)and 和 or多条件查询
条件表达式1 and 条件表达式2 [...and 条件表达式n]
and 表示同时满足所有条件的记录会被查询出来,or表示只要满足其中一条的记录就会被查询出来.MysqL教程
9)查询结果不重复
select distinct 属性名
实例:
MysqL教程
select distinct age department_ID employee;
10) 查询结果排序
order by 属性名 [asc|desc]
默认asc排序.
如果遇到某个字段存在空值的记录,需要注意,空值排序时可以理解为该字段的最小值.
MysqL中可以指定按多字段排序.
实例:
MysqL教程
select * from employee order by ID asc,age desc;
3.limit限制查询结果条数
1)不指定起始位置
limit 记录数
记录数超过查询结果则显示所有的记录,不会报错MysqL教程
2)指定起始位置
limit 起始位置,记录数
记录的起始位置从位置0开始.MysqL教程
2.使用集合函数查询
集合函数包括count(),sum(),avg(),max()和min().
1)count()函数
统计记录条数
实例:
MysqL教程
select count(*) from employee;
与group by一起使用
MysqL教程
select d_ID,count(*) from employee group by d_ID;
上述语句会先分组后统计.MysqL教程
2) sum()函数
sum()函数是求和函数
实例:
MysqL教程
select num,sum(score) from grade where num= 1001;select num,sum(score) from grade group by num;
sum()只能计算数值类型字段.
3)avg()函数
avg()函数是求平均值函数.
实例:
MysqL教程
select avg(age) from employee;select course,avg(score) from group by course;
4)max(),min()函数
求最大值和最小值.
实例:
MysqL教程
select max(age) from employee;select num,course,max(score) from grade group by course;
对于字符串的最大值问题,max()函数是使用字符对应的ascii码进行计算的.MysqL教程
4.合并查询结果
使用union和union all关键字.
union将查询的结果合并到一起并去掉形同的记录,union all 只是简单地合并到一起.MysqL教程
select 语句1 union|union all
select 语句2 union|union all...
select 语句n;
PS:为表或字段起别名
表起别名语法:MysqL教程
表名 表的别名
MysqL教程
select * from department d where d.d_ID =1001;
字段起别名语法:MysqL教程
属性名 [as] 别名
as可有可无.
MysqL教程
select d_ID as department_ID,d_name as department_name from department;
《MysqL必读MysqL中的基本查询语句学习笔记》是否对您有启发,欢迎查看更多与《MysqL必读MysqL中的基本查询语句学习笔记》相关教程,学精学透。内存溢出PHP学院为您提供精彩教程。
总结以上是内存溢出为你收集整理的Mysql必读MySQL中的基本查询语句学习笔记全部内容,希望文章能够帮你解决Mysql必读MySQL中的基本查询语句学习笔记所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)