首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java面试 >

新人报道,求解SQL,该怎么处理

2013-03-14 
新人报道,求解SQLselect e.empname,e.empsal,(select sal.salclassfrom salwhere e.empsal between sal.mi

新人报道,求解SQL
新人报道,求解SQL,该怎么处理

select e.empname,
       e.empsal,
       (select sal.salclass
          from sal
         where e.empsal between sal.minsal and sal.maxsal) as 级别,
       (select count(*)
          from emp
         where emp.empsal between
               (select sal.minsal
                  from sal
                 where sal.salclass =
                       (select sal.salclass
                          from sal
                         where e.empsal between sal.minsal and sal.maxsal))
           and (select sal.maxsal
                  from sal
                 where sal.salclass =
                       (select sal.salclass
                          from sal
                         where e.empsal between sal.minsal and sal.maxsal))) as 人数,
       (select avg(emp.empsal)
          from emp
         where emp.empsal between
               (select sal.minsal
                  from sal
                 where sal.salclass =
                       (select sal.salclass
                          from sal
                         where e.empsal between sal.minsal and sal.maxsal))
           and (select sal.maxsal


                  from sal
                 where sal.salclass =
                       (select sal.salclass
                          from sal
                         where e.empsal between sal.minsal and sal.maxsal))) as 平均
  from emp e
 where e.empid = 1


热点排行