我是新手,所以我的一些愿望:
我是一名技术工程师,我想提高我的SQL技能,达到高级/精通水平,以便沿着业务分析师的路线前进,利用数据分析使我在这个角色中占有优势。
我刚刚去我的头周围的相关子查询,能够混淆的术语,和9/10能够在心里记住写什么(不是没有尝试和错误),无论如何我的问题/问题如下:
我正在使用冒险作品DB,并使用下面的脚本返回工人谁有高于平均率为他们的部门
select Concat(v_dep.FirstName, ' ', v_dep.LastName) as Full_name, eph.Rate
from HumanResources.vEmployeeDepartment v_dep
join HumanResources.EmployeePayHistory eph
on v_dep.BusinessEntityID = eph.BusinessEntityID
where eph.Rate > (select AVG(eph2.rate)
from HumanResources.vEmployeeDepartment v_dep2
join HumanResources.EmployeePayHistory eph2
on v_dep2.BusinessEntityID = eph2.BusinessEntityID
where v_dep2.Department = v_dep.Department);
然而,为了便于比较,我想做的是在他们的价格旁边增加一列,向我显示他们所属部门的平均价格。我一直在网上搜索,试图构建一个简洁的问题来概括我所描述的,但一直在努力。
任何建议都很好!
是学习窗口函数的时候了:
select x.*
from (select Concat(v_dep.FirstName, ' ', v_dep.LastName) as Full_name,
eph.rate,
avg(eph.rate) over (partition by v_dep.BusinessEntityID) as avg_rate
from HumanResources.vEmployeeDepartment v_dep join
HumanResources.EmployeePayHistory eph
on v_dep.BusinessEntityID = eph.BusinessEntityID
) x
where rate > avg_rate;
注意:我对数据库不是很熟悉。但是,名称为EmployeePayHistory
的表听起来像是每个员工有多行。如果是,您可能希望根据时间或"当前"进行筛选。率。