數(shù)據(jù)庫(kù)查詢每個(gè)部門的基礎(chǔ)薪平均值?
select avg(工資) from 表名 where 部門=**;
——指定部門,查詢?cè)摬块T工資平均值select 部門,avg(工資) from 表名 group by 部門;
——查詢每個(gè)部門的平均工資以oracle數(shù)據(jù)庫(kù)下的scott用戶下的emp表為例:
select deptno,avg(sal) from emp group by deptno;
數(shù)據(jù)庫(kù)查詢每個(gè)部門的基礎(chǔ)薪平均值?
select avg(工資) from 表名 where 部門=**;
——指定部門,查詢?cè)摬块T工資平均值select 部門,avg(工資) from 表名 group by 部門;
——查詢每個(gè)部門的平均工資以oracle數(shù)據(jù)庫(kù)下的scott用戶下的emp表為例:
select deptno,avg(sal) from emp group by deptno;