1、查看emp表中最高的薪水。
SQL>select max(sal) from emp;
2、查看emp表中最低的薪水是多少。
SQL>select min(sal) from emp;
3、查看emp表中平均薪水是多少。
SQL>select avg(sal) from emp;
4、查看emp表中平均薪水是多少并按指定格式显示。
SQL>select to_char(avg(sal), '999999.99') from emp;
5、查看emp表中平均薪水是多少并对其四舍五入保留两位小数显示。
SQL>select round(avg(sal),2) from emp;
6、计算emp表中总的薪水是多少。
SQL>select sum(sal) from emp;
7、统计emp表中总的记录是多少。
SQL>select count(*) from emp;
8、统计emp表中部门编号为10的记录是多少。
[count(*)其中的*号表示所有字段]
SQL>select count(*) from emp where deptno=10;
SQL>select max(sal) from emp;
2、查看emp表中最低的薪水是多少。
SQL>select min(sal) from emp;
3、查看emp表中平均薪水是多少。
SQL>select avg(sal) from emp;
4、查看emp表中平均薪水是多少并按指定格式显示。
SQL>select to_char(avg(sal), '999999.99') from emp;
5、查看emp表中平均薪水是多少并对其四舍五入保留两位小数显示。
SQL>select round(avg(sal),2) from emp;
6、计算emp表中总的薪水是多少。
SQL>select sum(sal) from emp;
7、统计emp表中总的记录是多少。
SQL>select count(*) from emp;
8、统计emp表中部门编号为10的记录是多少。
[count(*)其中的*号表示所有字段]
SQL>select count(*) from emp where deptno=10;