Alina_0229
Alina_0229
全部文章
题解
归档
标签
去牛客网
登录
/
注册
Alina_0229的博客
全部文章
/ 题解
(共80篇)
题解 | #得分不小于平均分的最低分#
select min(score) from exam_record r, examination_info i where r.exam_id = i.exam_id and i.tag = 'SQL' and r.score >= ( select avg(er.score) from e...
Mysql
2022-03-25
0
240
题解 | #按照dept_no进行汇总#
select dept_no,group_concat(emp_no) from dept_emp group by dept_no 聚合函数中的拼接函数:group_concat() 拼接数据 参考了如下相关的用法: https://www.cnblogs.com/lixinjun8080/p/1...
Mysql
2022-03-23
0
242
题解 | #获取employees中的first_name#
select first_name from employees order by substr(first_name,-2) select first_name from employees order by right(first_name,2) 分割字符串: 1,从左开始截取字符串 left(...
2022-03-23
0
358
题解 | #查找字符串中逗号出现的次数#
select id,length(string)-length(replace(string,",","")) cnt from strings; 之前一直不知道length这个函数,也是看了解题区才写出来这题的,感觉还是有些迷迷糊糊的,对于 length(replace(string,",",""...
Mysql
2022-03-23
0
243
题解 | #将所有获取奖金的员工当前的薪水增加10%#
update 表名 set 字段1 = 值1, 字段2 = 值2, ... where 筛选条件 #查找到to_date="9999-01-01"的员工的员工编号 update salaries set salary= 1.1*salary where to_date="9999-01-01" an...
Mysql
2022-03-23
0
240
题解 | #针对actor表创建视图actor_name_view#
create view actor_name_view(first_name_v,last_name_v) as select first_name,last_name from actor 创建视图: create view 视图名(字段列表)as select 字段 from 表名 视图: 是一...
Mysql
2022-03-23
0
316
题解 | #构造一个触发器audit_log#
CREATE TRIGGER 触发器名 BEFORE|AFTER 触发事件 ON 表名 FOR EACH ROW 执行语句; create trigger audit_log after insert on employees_test for each row begin insert into ...
Mysql
2022-03-20
0
271
题解 | #在last_update后面新增加一列名字为create_date#
alter table actor add column create_date datetime not null default '2020-10-01 00:00:00' after last_update alter table actor add column 列名 类型 .... af...
Mysql
2022-03-20
0
298
题解 | #针对上面的salaries表emp_no字段创建索引idx_emp_no#
select * from salaries FORCE INDEX(idx_emp_no) where emp_no=10005 做这个题的时候都不太懂什么是强制索引,因为学习mysql的时候好像记得没有说这个强制索引,后来去查询了下强制索引,才知道为什么用强制索引,以下是参考的资料: https...
Mysql
2022-03-20
0
288
题解 | #对first_name创建唯一索引uniq_idx_firstname#
create index 索引名 on 表名(字段) 创建普通索引 create unique index 索引名 on 表名(字段) 创建唯一索引 creat unique index uniq_idx_firstname on actor(first_name) create index idx...
2022-03-20
0
285
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页