无敌大花彪
无敌大花彪
全部文章
分类
题解(15)
归档
标签
去牛客网
登录
/
注册
无敌大花彪的博客
全部文章
(共12篇)
对于表actor批量插入如下数据(不能有2条insert语句哦!)
insert into 表名(列名) values (行内容),(行内容);加行alter table 表名 add column 列名 列约束,列名 列约束;加列加行insert into actor values(1,'PENELOPE','GUINESS','2006-02-15 12:34:...
2020-07-12
3
1136
创建一个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_update ...
2020-07-12
1
1094
获取当前薪水第二多的员工的emp_no以及其对应的薪水
1./*小于最大的最大的就是第二大的select emp_no ,max(salary) from salarieswhere to_date='9999-01-01'and salary <> (select max(salary) from salaries) 2.逆序排列从第二个取...
2020-07-10
1
859
统计出当前各个title类型对应的员工当前薪水对应的平均工资
select t.title , avg(s.salary) avgfrom salaries s join titles ton s.emp_no = t.emp_noand t.to_date='9999-01-01'and s.to_date='9999-01-01'group by titl...
2020-07-10
0
583
从titles表获取按照title进行分组
select title , count() tfrom (select distinct emp_no , title from titles)group by titlehaving t>= 2;/ distinct不要写错了更简单些select title , count(distin...
2020-07-10
0
655
查找所有员工入职时候的薪水情况
select e.emp_no , s.salaryfrom employees e join salaries son e.emp_no = s.emp_noand s.from_date = e.hire_dateorder by e.emp_no desc;
2020-07-09
0
534
有奖金的员工相关信息
select e.emp_no ,e.first_name , e.last_name , eb.btype , s.salary , (s.salaryeb.btype0.1) bonusfrom employees e , emp_bonus eb ,salaries swhere e.emp_...
2020-06-20
1
873
查找未分配具体部门的员工的所有信息
用exists:select * from employees ewhere not exists(select emp_no from dept_emp d where d.emp_no = e.emp_no);不用exists:select * from employees eleft joi...
2020-06-20
44
4099
分页查询limit
limit offset, size。size是每页几条数据,分页时offset输出页数(page-1)size如本题中输出第二也数据 则输出offset为(2-1)5 ,size为5:select * from employeeslimit 5,5
2020-06-20
10
1628
没有把子查询加在from里的吗?
select f.title, f.descriptionfrom (select c.category_id , f.film_idfrom film_category fc , category c , film fWHERE f.film_id =fc.film_idAND fc.catego...
2020-06-19
5
1131
首页
上一页
1
2
下一页
末页