測試oracle with as

來源:互聯網
上載者:User

為了簡化SQL語句,可以將語句分成若干個視圖來操作,但是建立的試圖將會作為對象儲存在資料庫中,但經常有一些語句只是臨時使用,所以在sql-99規範中有了with as 語句,該語句實質上就是建立臨時視圖,來協助你簡化語句並使語句結構更清晰更容易閱讀。

 

下面的測試中會用到3張表,courseresults(課程-學生-成績表)、courses(課程表)、students(學生表),先給出建表語句:

create table COURSERESULTS
(
  CID   NUMBER,
  SID   NUMBER,
  SCORE FLOAT not null
)

create table COURSES
(
  CID     NUMBER not null,
  CNAME   VARCHAR2(100) not null,
  TID     NUMBER,
  CREDITS NUMBER not null
)

create table STUDENTS
(
  SID       NUMBER not null,
  SNAME     VARCHAR2(50) not null,
  SEX       CHAR(1),
  BIRTHDATE DATE,
  EMAIL     VARCHAR2(50)
)

 

例1:擷取student表全部資料

with s as

(select * from students)

select * from s;

 

例2:擷取小於平均成績的學生學號和成績

with c as
(select avg(score) as value from courseresults)
select sid,score from courseresults,c where score>c.value;

 

例3:擷取課程平均成績大於85分的男生的學號

with
s1 as
(select sid from courseresults group by sid having avg(score)>85),
s2 as
(select sid from students where sex='m')
select * from s1 intersect select * from s2;

 

結論:使用with as語句的確可以使複雜的SQL語句具有更清晰的結構。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.