学习前的准备:先创建两张表,用于语句实验
mysql -uroot -p
show databases;
create database plane;
use plane;
create table destination (region char(20),place_name char(20));
insert into destination values('n','北京‘);
insert into destination values('s','南京');
insert into destination values('e','东京');
insert into destination values('w','西京');
select * from destination;
create table info (city char(20),price int(10),date char(10));
insert into info values('北京','100','2021-04-14');
insert into info values('南京','200','2021-04-14');
insert into info values('东京','300','2021-04-14');
insert into info values('西京','400','2021-04-14');
insert into info values('北京','600','2021-04-15');
select * from info;
语法:SELECT "栏位" FROM "表名";
例:
select place_name from destination;
语法:SELECT DISTINCT "栏位" FROM "表名";
例:
select distinct city from info;
语法:SELECT "栏位" FROM "表名" WHERE "条件";
例:
select city from info where price > 300;
语法:SELECT "栏位" FROM "表名" WHERE "条件1" {[AND|OR] "条件2"}+ ;
例:
select city from info where price > 300 and price <450;
select city from info where price > 350 or price < 300;
语法:SELECT "栏位" FROM "表名" WHERE "栏位" IN ('值1', '值2', ...);
例:
select * from info where city in ('北京');
语法:SELECT "栏位" FROM "表名" WHERE "栏位" BETWEEN '值1' AND '值2';
例:
select * from info where price between '300' and '450';
通常通配符都是跟 LIKE 一起使用的
% :百分号表示零个、一个或多个字符
_ :下划线表示单个字符
例:
'A_Z':所有以 'A' 起头,另一个任何值的字符,且以 'Z' 为结尾的字符串。例如,'ABZ' 和 'A2Z' 都符合这一个模式,而 'AKKZ' 并不符合 (因为在 A 和 Z 之间有两个字符,而不是一个字符)。
'ABC%': 所有以 'ABC' 起头的字符串。例如,'ABCD' 和 'ABCABC' 都符合这个模式。
'%XYZ': 所有以 'XYZ' 结尾的字符串。例如,'WXYZ' 和 'ZZXYZ' 都符合这个模式。
'%AN%': 所有含有 'AN'这个模式的字符串。例如,'LOS ANGELES' 和 'SAN FRANCISCO' 都符合这个模式。
'_AN%':所有第二个字母为 'A' 和第三个字母为 'N' 的字符串。例如,'SAN FRANCISCO' 符合这个模式,而 'LOS ANGELES' 则不符合这个模式。
语法:SELECT "栏位" FROM "表名" WHERE "栏位" LIKE {模式};
例:
select * from info where city like '_京%';
语法:SELECT "栏位" FROM "表名" [WHERE "条件"] ORDER BY "栏位" [ASC, DESC];
#ASC 是按照升序进行排序的,是默认的排序方式。
#DESC 是按降序方式进行排序。
例:
select * from info order by price asc;
select * from info order by price desc;
通常是结合聚合函数一起使用的
GROUP BY 有一个原则,就是 SELECT 后面的所有列中,没有使用聚合函数的列,必须出现在GROUP BY后面。
语法:SELECT "栏位1", SUM("栏位2") FROM "表名" GROUP BY "栏位1";
例:
select city,sum(price) from info group by city;
通常与GROUP BY语句联合使用
HAVING语句的存在弥补了WHERE关键字不能与聚合函数联合使用的不足。如果被SELECT的只有函数栏,那就不需要GROUP BY子句。
语法:SELECT "栏位1", SUM("栏位2") FROM "表格名" GROUP BY "栏位1" HAVING (函数条件);
例:
select city,sum(price) from info group by city having sum(price) > 400;
语法:SELECT "表格別名"."栏位1" [AS] "栏位別名" FROM "表格名" [AS] "表格別名";
例:
select A.city "newcity",sum(A.price) "newprice" from info A group by city;
子WHERE子句或HAVING子句中插入另一个SQL语句
语法:
#外查询
SELECT "栏位1" FROM "表格1" WHERE "栏位2" [比较运算符]
#内查询
(SELECT "栏位1" FROM "表格2" WHERE "条件");
#可以是符号的运算符,例如:=、>、<、>=、<= ;也可以是文字的运算符,例如 LIKE、IN、BETWEEN
例1
select sum(price) from info where city in (select place_name from destination where region = 's');
#下面这个句子就是上面的简化版
select sum(price) from info where city in('东京','西京');
例2
select sum(a.price) from info a where a.city in(select place_name from destination b where b.place_name = a.place_name);
类似布尔值是否为真
如果有的话,系统就会执行外查询中的SQL语句。若是没有的话,那整个 SQL 语句就不会产生任何结果。
语法:SELECT "栏位1" FROM "表格1" WHERE EXISTS (SELECT * FROM "表格2" WHERE "条件");
例:
select sum(price) from info where exists (select * from destination where region = 's');
abs(x) 返回 x 的绝对值
rand() 返回 0 到 1 的随机数
mod(x,y) 返回 x 除以 y 以后的余数
power(x,y) 返回 x 的 y 次方
round(x) 返回离 x 最近的整数
round(x,y) 保留 x 的 y 位小数四舍五入后的值
sqrt(x) 返回 x 的平方根
truncate(x,y) 返回数字 x 截断为 y 位小数的值
ceil(x) 返回大于或等于 x 的最小整数
floor(x) 返回小于或等于 x 的最大整数
greatest(x1,x2…) 返回集合中最大的值
least(x1,x2…) 返回集合中最小的值
SELECT abs(-8), rand(), mod(8,3), power(2,3), round(1.69);
SELECT round(1.5637,3), truncate(1.2345,2), ceil(5.2), floor(2.1), least(1.69,3,6.1,2.1);
avg() 返回指定列的平均值
count() 返回指定列中非 NULL 值的个数
min() 返回指定列的最小值
max() 返回指定列的最大值
sum(x) 返回指定列的所有值之和
#count(*)包括了所有的列的行数,在统计结果的时候,不会忽略值为NULL
#count(列名)只包括列名那一列的行数,在统计结果的时候,会忽略列值为NULL的行
例:
select avg(price) from info;
select count(city) from info;
select count(distinct city) from info;
select max(price) from info;
select min(price) from info;
select sum(price) from info;
trim() 返回去除指定格式的值
concat(x,y) 将提供的参数 x 和 y 拼接成一个字符串
substr(x,y) 获取从字符串 x 中的第 y 个位置开始的字符串,跟substring()函数作用相同
substr(x,y,z) 获取从字符串 x 中的第 y 个位置开始长度为 z 的字符串
length(x) 返回字符串 x 的长度
replace(x,y,z) 将字符串 z 替代字符串 x 中的字符串 y
upper(x) 将字符串 x 的所有字母变成大写字母
lower(x) 将字符串 x 的所有字母变成小写字母
left(x,y) 返回字符串 x 的前 y 个字符
right(x,y) 返回字符串 x 的后 y 个字符
repeat(x,y) 将字符串 x 重复 y 次
space(x) 返回 x 个空格
strcmp(x,y) 比较 x 和 y,返回的值可以为-1,0,1
reverse(x) 将字符串 x 反转、
补充:如sql_mode开启开启了PIPES_AS_CONCAT,"||"视为字符串的连接操作符而非或运算符,和字符串的拼接函数Concat相类似,这和Oracle数据库使用方法一样的
select TRIM ([ [位置] [要移除的字符串] from ] 字符串);
#[位置]:的值可以为 LEADING (起头), TRAILING (结尾), BOTH (起头及结尾)。
#[要移除的字符串]:从字串的起头、结尾,或起头及结尾移除的字符串。缺省时为空格。
例:
select trim(leading '123' from '1234567');
select trim(trailing '567' from '1234567');
select concat(region, place_name) from destination;
select region || '❄' || place_name from destination;
substr(x,y) 获取从字符串 x 中的第 y 个位置开始的字符串,跟substring()函数作用相同
substr(x,y,z) 获取从字符串 x 中的第 y 个位置开始长度为 z 的字符串
select substr(place_name,2) from destination where place_name = '北京';
select substr(place_name,1,1) from destination where place_name = '北京';
length(x) 返回字符串 x 的长度
select length(region),place_name from destination;
replace(x,y,z) 将字符串 z 替代字符串 x 中的字符串 y
select replace(place_name,'京','海') from destination;
upper(x) 将字符串 x 的所有字母变成大写字母
lower(x) 将字符串 x 的所有字母变成小写字母
select upper(region) from destination;
select lower(region) from destination;
left(x,y) 返回字符串 x 的前 y 个字符
right(x,y) 返回字符串 x 的后 y 个字符
select left(place_name,1) from destination;
select right(place_name,1) from destination;
repeat(x,y) 将字符串 x 重复 y 次
select repeat(region,2) from destination;
select repeat(123,2);
space(x) 返回 x 个空格
select space(8);
strcmp(x,y) 比较 x 和 y,返回的值可以为-1,0,1
select strcmp(1,1);
reverse(x) 将字符串 x 反转
select reverse('abc');