码迷,mamicode.com
首页 > 数据库 > 详细

sql

时间:2017-07-21 15:51:22      阅读:306      评论:0      收藏:0      [点我收藏+]

标签:exce   cep   微软雅黑   ace   soft   ica   apple   sans   orm   


(2)列出emp表中各部门job为‘CLERK‘的员工的最低工资,最高工资
select max(sal) as 最高工资,min(sal) as 最低工资,deptno as 部门号 from emp where job = ‘CLERK‘ group by deptno;
 
 
 
 
18.根据下面的代码,String s = null ,会抛出NullPointerException;异常的有(A、C)
A:if((s!=null)&(s.length()>0))
B:if((s!=null)&&(s.length()>0))
C:if((s==null)|(s.length()==0))
D:if((s==null)||(s.length()==0))
select
      p.id,p.pid,p.name,p.moduleUrl,p.operationalUrl,p.orderNo,p.createTime
from 
     tbl_permission p
where id in
     (select
            permission_id
      from
           tbl_role_permission_relation
      where role_id in
            (select
                   role_id
              from
                   tbl_user_rol;e_relation
               where
                    uer_id=#{useId}))
order by p.orderNo
 
select
 tt.*
from(
         select * ,rownum as linenum
           from (业务SQL)t
           where  rownum<=pagesize*pageNo-1)tt
where linenum>(pageNo-1)*pagesize
 
 
 
 
 
 

sql

标签:exce   cep   微软雅黑   ace   soft   ica   apple   sans   orm   

原文地址:http://www.cnblogs.com/sunyuhuan/p/7217484.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!