mysql数据库4

操作表的SQL语句补充

1.修改表名

alter table 表名 rename 新表名;

2.新增字段

alter table 表名 add 字段名 字段类型(数字) 约束条件;
alter table 表名 add 字段名 字段类型(数字) 约束条件 after 已经存在的字段;
alter table 表名 add 字段名 字段类型(数字) 约束条件 first;

3.修改字段

alter table 表名 change 旧字段 新字段 字段类型(数字) 约束条件;
alter table 表名 modify 字段名 新的字段类型(数字) 约束条件;

4.删除字段

查询关键字之where筛选

1.查询id大于等于3小于等于6的数据

select id,name from emp where id >= 3 and id <= 6;
select * from emp where id between 3 and 6;

2.查询薪资是20000或者18000或者17000的数据

select * from emp where salary = 20000 or salary = 18000 or salary =17000;
简写:select * from emp where salary in(20000,18000,17000);

3.查询员工姓名中包含o字母的员工姓名和薪资

在你刚开始接触mysql查询的时候,建议你按照查询的优先级顺序拼写出你的SQL语句
“”"
1.先是查哪张表 from emp
2.再是根据什么条件去查 where name like ‘%o%’
3.再是对查询出来的数据筛选展示部分 select name,salary
“”"
select name,salary from emp where name like ‘%o%’;

4.查询员工姓名是由四个字符组成的员工姓名与其薪资

select name,salary from emp where name like ‘____’;
select name,salary from emp where char_length(name) = 4;

5.查询id小于3或者大于6的数据

select * from emp where id not between 3 and 6;

6.查询薪资不在20000,18000,17000范围的数据

select * from emp where salary not in (20000,18000,17000);

7.查询岗位描述为空的员工名与岗位名 针对null不能用等号,只能用is

select name,post from emp where post_comment = NULL; # 查询为空!
select name,post from emp where post_comment is NULL;
select name,post from emp where post_comment is not NULL;

**alter table 表名 drop 字段名;**  删除字段名

查询关键字之group by分组

分组:按照一些指定的条件将单个单个的数据分为一个个整体

分组之后我们研究的对象应该是以组为单位 不应该再直接获取单个数据项 如果获取了应该直接报错
select后面可以直接填写的字段名只能是分组的依据(其他字段需要借助于一些方法才可以获取) set global
sql_mode=‘strict_trans_tables,only_full_group_by’;

select post from emp group by post;

配合分组常见使用的有聚合函数

max最大值
min最小值
sum总和
count计数
avg平均
1.获取每个部门的最高工资

以组为单位统计组内数据>>>聚合查询(聚集到一起合成为一个结果)

2.每个部门的最高工资

select post,max(salary) from emp group by post;
补充:在显示的时候还可以给字段取别名
select post as ‘部门’,max(salary) as ‘最高工资’ from emp group by post;
as也可以省略 但是不推荐省 因为寓意不明确

3.每个部门的最低工资

select post,min(salary) from emp group by post;

4.每个部门的平均工资

select post,avg(salary) from emp group by post;

5.每个部门的工资总和

select post,sum(salary) from emp group by post;

6.每个部门的人数

select post,count(id) from emp group by post;

7.查询分组之后的部门名称和每个部门下所有的学生姓名

group_concat(分组之后用)不仅可以用来显示除分组外字段还有拼接字符串的作用
select post,group_concat(name) from emp group by post;

select post,group_concat(name,“_SB”) from emp group by post;

select post,group_concat(name,": ",salary) from emp group by post;

select post,group_concat(salary) from emp group by post;

where与having的功能其实是一样的 都是用来筛选数据
只不过where用于分组之前的筛选 而having用于分组之后的筛选
为了人为的区分 所以叫where是筛选 having是过滤

查询关键字之having过滤

where与having的功能其实是一样的 都是用来筛选数据
只不过where用于分组之前的筛选 而having用于分组之后的筛选
为了人为的区分 所以叫where是筛选 having是过滤

1、统计各部门年龄在30岁以上的员工平均工资,并且保留平均工资大于10000的部门
select post,avg(salary) from emp
where age >= 30
group by post
having avg(salary) > 10000;

    where  ------- group by ---- having

查询关键字之distinct去重

去重的前提是数据必须一模一样
select distinct age from emp;

查询关键字之order by排序

select * from emp order by salary asc; #默认升序排
select * from emp order by salary desc; #降序排

select * from emp order by age desc; #降序排

#先按照age降序排,在年轻相同的情况下再按照薪资升序排
select * from emp order by age desc,salary asc;

统计各部门年龄在10岁以上的员工平均工资,并且保留平均工资大于1000的部门,然后对平均工资进行排序
select post,avg(salary) from emp
where age > 10
group by post
having avg(salary) > 1000
order by avg(salary)
;

desc 降序   asc 升序

查询关键字之limit分页

1. 限制展示条数

select * from emp limit 3;
查询工资最高的人的详细信息
select * from emp order by salary desc limit 1;

2.分页显示

select * from emp limit 0,5; # 第一个参数表示起始位置,第二个参数表示的是条数,不是索引位置
select * from emp limit 5,5;

查询关键字之regexp正则

正则表达式本身也和python没有什么关系,就是匹配字符串内容的一种规则。

官方定义:正则表达式是对字符串操作的一种逻辑公式,就是用事先定义好的一些特定字符、及这些特定字符的组合,组成一个“规则字符串”,这个“规则字符串”用来表达对字符串的一种过滤逻辑

select * from emp where name regexp ‘^j.*(n|y) ′ ; s e l e c t ∗ f r o m e m p w h e r e n a m e r e g e x p ′ j . ∗ ( n ∣ y ) '; select * from emp where name regexp '^j.*(n|y) ;selectfromempwherenameregexpj.(ny)’;

多表查询思路

子查询
将一张表的查询结果括号括起来当做另外一条SQL语句的条件

eg:类似以日常生活中解决问题的方式
第一步干什么
第二步基于第一步的结果在做操作 …
连表操作
先将所有涉及到结果的表全部拼接到一起形成一张大表 然后从大表中查询数据

#建表
create table dep1(
id int primary key auto_increment,
name varchar(20)
);

create table emp1(
id int primary key auto_increment,
name varchar(20),
gender enum(‘male’,‘female’) not null default ‘male’,
age int,
dep_id int
);

#插入数据
insert into dep1 values
(200,‘技术’),
(201,‘人力资源’),
(202,‘销售’),
(203,‘运营’),
(205,‘安保’)
;

insert into emp1(name,gender,age,dep_id) values
(‘jason’,‘male’,18,200),
(‘dragon’,‘female’,48,201),
(‘kevin’,‘male’,18,201),
(‘nick’,‘male’,28,202),
(‘owen’,‘male’,18,203),
(‘jerry’,‘female’,18,204);

子查询

查询jason的部门名称
1.先获取jason的部门编号
select dep_id from emp1 where name = ‘jason’; # 200
2.根据部门编号获取部门名称
select name from dep1 where id = 200;
子查询
select name from dep1 where id = (select dep_id from emp1 where name = ‘jason’);

将前面获取的信息通过括号等于查询所需的信息

连表操作

select * from emp1,dep1; # 笛卡尔积
‘’‘我们不会使用笛卡尔积来求数据 效率太低 连表有专门的语法’‘’

inner join 内连接
只拼接两边都有的字段数据
left join 左连接
以左表为基准 展示所有的数据 没有对应则NULL填充
right join 右连接
以右表为基准 展示所有的数据 没有对应则NULL填充
union 全连接
select * from emp1 left join dep1 on emp1.dep_id = dep1.id
union
select * from emp1 right join dep1 on emp1.dep_id = dep1.id;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值