Alina_0229
Alina_0229
全部文章
分类
题解(129)
归档
标签
去牛客网
登录
/
注册
Alina_0229的博客
全部文章
(共98篇)
题解 | #获取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
242
题解 | #将所有获取奖金的员工当前的薪水增加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
239
题解 | #针对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
318
题解 | #构造一个触发器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
297
题解 | #针对上面的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
287
题解 | #对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
284
题解 | #创建一个actor表,包含如下列信息#
create table if not exists actor (actor_id smallint(5) not null primary key, first_name varchar(45) not null, last_name varchar(45) not null, last_upd...
Mysql
2022-03-20
1
255
题解 | #使用子查询的方式找出属于Action分类的所有电影对应的title,description#
select title,description from film where film_id in(select f.film_id from film f left join film_category fc on f.film_id = fc.film_id left join catego...
Mysql
2022-03-20
0
253
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页