激情五月天婷婷,亚洲愉拍一区二区三区,日韩视频一区,a√天堂中文官网8

<ul id="buwfs"><strike id="buwfs"><strong id="buwfs"></strong></strike></ul>
    <output id="buwfs"></output>
  • <dfn id="buwfs"><source id="buwfs"></source></dfn>
      <dfn id="buwfs"><td id="buwfs"></td></dfn>
      <div id="buwfs"><small id="buwfs"></small></div>
      <dfn id="buwfs"><source id="buwfs"></source></dfn>
      1. <dfn id="buwfs"><td id="buwfs"></td></dfn>
        始創(chuàng)于2000年 股票代碼:831685
        咨詢熱線:0371-60135900 注冊(cè)有禮 登錄
        • 掛牌上市企業(yè)
        • 60秒人工響應(yīng)
        • 99.99%連通率
        • 7*24h人工
        • 故障100倍補(bǔ)償
        全部產(chǎn)品
        您的位置: 網(wǎng)站首頁 > 幫助中心>文章內(nèi)容

        Oracle_5 ROWNUM Create New User 備份一張表

        發(fā)布時(shí)間:  2012/9/16 15:42:50

        Rownum是Oracle為每個(gè)表附加的一個(gè)尾字段,它記錄著每一行的行號(hào)。Oracle的一個(gè)缺陷就是rownum只能和’<’或者’<=’一起使用。如果要求大于等于這可用其他方法。

        求薪水最高的前5名

        select ename,sal
        from ( select ename,sal
        from emp
        order by sal desc)-
         

        where rownum <=5;

        求薪水的第6至第10位的員工姓名和薪水

        select ename,sal
        from ( select ename,sal,rownum r
               from (select ename,sal
                     from emp
                     order by sal desc)
             )
        where r<=10 and r>=6;

        Create New User

        首先備份( <!--[endif]-->backup scott),在命令行下輸入以下命令,按提示操作

        exp

        然后創(chuàng)建用戶 <!--[endif]-->create user,在sqlplus下切換到管理員用戶,輸入

        create user USER_NAME(such as:lue) identified by password(lue) default tablespace users quota(配額) 10M on users即是給用戶分配10M的空間

        其次是分配新建用戶的權(quán)限,命令:

        grant create session(登陸權(quán)限),creat table,create view to lue

        最后導(dǎo)入數(shù)據(jù) <!--[endif]-->import the data,在命令行下輸入以下命令,按提示操作;

        imp

        一道SQL面試題

        有3張表S,C,SC

        S(sno,sname) 代表(學(xué)號(hào),姓名)

        C(cno,cname,cteacher)代表(課程號(hào),課程名,教室)

        SC(sno,cno,scgrade)代表(學(xué)號(hào),課程號(hào),成績(jī))

        問題:

        <!--[if !supportLists]-->1,  <!--[endif]-->找出沒有選過“liming”老師的所有學(xué)生的姓名

        <!--[if !supportLists]-->2,  <!--[endif]-->列出2門以上(含2門)不及格學(xué)生姓名及平均成績(jī)

        <!--[if !supportLists]-->3,  <!--[endif]-->學(xué)過1號(hào)課程又學(xué)過2號(hào)課程所有學(xué)生的姓名

        答案:

        //Answer 1:
        select sname
        from S join SC on(s.sno = sc.sno) join C (c.cno = sc.cno)
        where C.cteacher <> ‘liming’;
        //answer 2:
        select sname
        where sno in (select sno,count(*)
        from SC
        where scgrade < 60
        group by sno
        having count(*) >1);
        //answer 3:
        //方法1:
        select sname
        from S join (select sno
        from SC
        where C.cno = 1 and C.cno = 2) t
              on (S.sno = t.sno);
        //方法2:
        select  sname
        from S
        where sno in(select sno
             from SC
             where cno = 1 and cno in (select distinct sno
                from SC
                where cno = 2)
                   );


         


        本文出自:億恩科技【mszdt.com】

        服務(wù)器租用/服務(wù)器托管中國(guó)五強(qiáng)!虛擬主機(jī)域名注冊(cè)頂級(jí)提供商!15年品質(zhì)保障!--億恩科技[ENKJ.COM]

      2. 您可能在找
      3. 億恩北京公司:
      4. 經(jīng)營(yíng)性ICP/ISP證:京B2-20150015
      5. 億恩鄭州公司:
      6. 經(jīng)營(yíng)性ICP/ISP/IDC證:豫B1.B2-20060070
      7. 億恩南昌公司:
      8. 經(jīng)營(yíng)性ICP/ISP證:贛B2-20080012
      9. 服務(wù)器/云主機(jī) 24小時(shí)售后服務(wù)電話:0371-60135900
      10. 虛擬主機(jī)/智能建站 24小時(shí)售后服務(wù)電話:0371-60135900
      11. 專注服務(wù)器托管17年
        掃掃關(guān)注-微信公眾號(hào)
        0371-60135900
        Copyright© 1999-2019 ENKJ All Rights Reserved 億恩科技 版權(quán)所有  地址:鄭州市高新區(qū)翠竹街1號(hào)總部企業(yè)基地億恩大廈  法律顧問:河南亞太人律師事務(wù)所郝建鋒、杜慧月律師   京公網(wǎng)安備41019702002023號(hào)
          0
         
         
         
         

        0371-60135900
        7*24小時(shí)客服服務(wù)熱線