1.平均值avg(字段名)
查询在emp表中的平均数据money
select avg(money) from emp;
2.最大值max(字段名)
查询emp表中1号部门deptno的最高工资
select max(money) form emp where deptno = 1;
查询emp表中工资money高于2000块钱的员工中资历最小(入职时间越短代表年份的数字就越大)的员工是什么时候入职的
select max(hiredate) from emp where sal>2000;
3. 最小值min(字段名) 查询2号部门的最低工资
select min(moneyl) from emp where deptno=2;
4. 求和sum(字段名) 查询1号部门的工资总和
select sum(money) from emp where deptno=1;
5. 计数count(字段名) 查询1号部门工资大于2000的员工数量
select count(*) from emp where deptno=1 and moneyl>2000;
原文:https://www.cnblogs.com/star-Java/p/13969693.html