乡下人产国偷v产偷v自拍,国产午夜片在线观看,婷婷成人亚洲综合国产麻豆,久久综合给合久久狠狠狠9

  • <output id="e9wm2"></output>
    <s id="e9wm2"><nobr id="e9wm2"><ins id="e9wm2"></ins></nobr></s>

    • 分享

      查詢復(fù)習(xí)-英譯漢

       教育電力 2011-04-10
      請練習(xí)以下語句,用文字說明其執(zhí)行的功能

      --
      select 人數(shù)=count(studentid)
      from students

      --
      select 人數(shù)=count(studentid),sclass
      from students
      group by sclass

      --
      select 人數(shù)=count(studentid),ssex
      from students
      group by ssex

      --
      select 人數(shù)=count(*),sclass,ssex
      from students
      group by ssex,sclass

      --查詢成績表中各個科目的最高分(要顯示科目ID)   (寫語句)


      --
      select A.sname,B.score,C.Cname,A.sclass
      from score as B, students as A,course as C
      where A.studentID=B.studentID and B.courseID=C.courseID

      --
      select A.sname,B.score,B.courseID
      from students as A
      left outer join score as b
      on A.studentID=B.studentID

      --
      select A.sname,B.score,B.courseID
      from students as A
      right outer join score as b
      on A.studentID=B.studentID

      --
      use bbs
      select s.sname,c.score,c.courseid
      from score as c
      inner join students as s
      on s.studentID=c.studentID
      where s.sname='劉邦'


      --
      select s.sname,c.courseid,c.score
      from students as s,score as c
      where s.studentid=c.studentid 

      --
      select c.studentid,a.cName,c.score 
      from score as c 
      inner join course as a
      on c.courseid=a.courseid
      where studentid like '2010012[0-1]'



        本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點。請注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊一鍵舉報。
        轉(zhuǎn)藏 分享 獻花(0

        0條評論

        發(fā)表

        請遵守用戶 評論公約

        類似文章 更多