牛客251960512号
牛客251960512号
全部文章
分类
markdown(1)
MySQL(15)
numpy(3)
Obsidian(6)
pandas(6)
PPT(1)
Pyhon面向对象(1)
Python基础语法(60)
Python数据分析与展示(11)
python自动化(2)
Tableau(17)
可视化(3)
未归档(1)
百度(1)
系统(1)
系统问题(1)
题解(40)
归档
标签
去牛客网
登录
/
注册
心际花园
编程就像一个迷宫,有无穷无尽的歧路,在其中的体验是有趣的。
全部文章
(共32篇)
题解 | #找到每个人的任务#
select p.id,name, content from person p left join task t on p.id = t.person_id order by id
Mysql
2021-10-22
0
323
题解 | #使用join查询方式找出没有分类的电影id以及名称#
select f.film_id, f.title from film f left join film_category fc on f.film_id = fc.film_id left join category c on fc.category_id = c.category_id whe...
Mysql
2021-10-19
0
247
题解 | #查找入职员工时间排名倒数第三的员工所有信息#
要考虑入职同一天的不止一个员工,要用子查询。 select * from employees where hire_date = ( select distinct hire_date from employees order by hire_date desc limit 1 offset ...
Mysql
2021-10-15
1
230
题解 | #获取所有非manager的员工emp_no#
select e.emp_no from employees e left join dept_manager d on e.emp_no = d.emp_no where d.dept_no is Null
Mysql
2021-10-15
1
271
题解 | #查找薪水记录超过15次的员工号emp_no以及其对应的记录次数t#
select emp_no, count(salary) t from salaries group by emp_no having count(salary) > 15
Mysql
2021-10-15
1
236
题解 | #获取当前薪水第二多的员工的emp_no以及其对应的薪水salary#
考虑到第二名不止一个,需要使用子查询,分组,排序,salary等于分组排序后的第二名薪水。 select emp_no , salary from salaries where salary = ( select salary from salaries group by salary o...
Mysql
2021-10-15
1
286
题解 | #查找最晚入职员工的所有信息#
select * from employees where hire_date >= all( select hire_date from employees )
Mysql
2021-10-15
1
272
题解 | #考试分数(一)#
select job,round(avg(score),3) from grade group by job order by round(avg(score),3) desc
Mysql
2021-10-14
0
235
题解 | #查找employees表emp_no与last_name的员工信息#
select * from employees where emp_no%2 = 1 and last_name != 'Mary' order by hire_date desc
Mysql
2021-10-14
0
270
题解 | #使用子查询的方式找出属于Action分类的所有电影对应的title,description#
select title, description from film_category as fc join film on fc.film_id = film.film_id join category on fc.category_id = category.category_id w...
Mysql
2021-10-13
0
316
首页
上一页
1
2
3
4
下一页
末页