牛客588483987号
牛客588483987号
全部文章
题解
mysql练习(4)
读书笔记(1)
归档
标签
去牛客网
登录
/
注册
牛客588483987号的博客
全部文章
/ 题解
(共2篇)
题解 | #查找当前薪水详情以及部门编号dept_no#
select emp_no,count(emp_no) t from salaries group by emp_no having t>15; where 和having 用法: 1、where、聚合函数、having在from后面...
MySQL
分组筛选
where和having区别
2021-07-09
19
776
题解 | #查找入职员工时间排名倒数第三的员工所有信息#
select a.emp_no,a.salary,a.from_date,a.to_date,b.dept_no #选取要用的字段from salaries a join dept_manager b #将两个表进行连接on a.emp_no ...
MySQL
表连接
升序
2021-07-09
1
357