首頁  >  文章  >  資料庫  >  SQL查詢為表起別名要點(總結分享)

SQL查詢為表起別名要點(總結分享)

WBOY
WBOY轉載
2022-09-07 14:15:235515瀏覽

本篇文章為大家帶來了關於SQL server的相關知識,透過使用SQL,可以為表名稱或列名稱指定別名,下面介紹了關於sql查詢給表起別名要點(涉及嵌套查詢)的相關資料,希望對大家有幫助。

SQL查詢為表起別名要點(總結分享)

推薦學習:《SQL教學

可以透過空格或as給表起別名

但是注意如果操作的資料庫是Oracle的話,只能使用空格,as不符合Oracle的語法。

舉個栗子

簡單查詢中使用別名

select *
from student s
where s.id = '10';

在簡單的查詢中使用別名,一般沒有特別需要注意的地方,要做的操作少

複雜查詢中使用別名

題目摘要:有三個表格,student(sno,sname,ssex,sbirthday,class)

score(sno,cno,degree)

course(cno,cname,tno)

查詢選修「3-105」課程的成績高於「109號」同學成績的所有同學的記錄。

答案:

select *
 from (select s.sno,s.sname,s.ssex,s.sbirthday,s.class,    sc.degree,c.cno,c.cname,c.tno from student s , course c ,score sc where s.sno = sc.sno and c.cno = sc.cno) ss
 where  ss.cno = '3-105' and ss.degree >( select degree from score where sno = '109' and cno = '3-105');

可以看到,為了方便操作,我們重新定義了一個表格ss,這個表格是一個大表格同時包含了,以上三個表格中的內容。但是要注意以下幾點,不然容易出錯

要全部顯示新定義表格的值時,不能直接使用*

例如聲明的答案中如果改為

select *
 from (select * from student s , course c ,score sc where s.sno = sc.sno and c.cno = sc.cno) ss
 where  ss.cno = '3-105' and ss.degree >( select degree from score where sno = '109' and cno = '3-105');

命令列會顯示列未明確定義,因為我們要現在指定的列作為一個新的表,但是有些列的列名是重複的,我們需要指定其中的一個。

在巢狀查詢語句中無法使用新創的表,因為巢狀查詢裡面的程式碼是完整的執行段,會從頭開始執行?反正在裡面呼叫會報錯

select *
 from (select * from student s , course c ,score sc where s.sno = sc.sno and c.cno = sc.cno) ss
 where  ss.cno = '3-105' and ss.degree >( select degree from ss where sno = '109' and cno = '3-105');

這段SQL裡面在where裡面的子查詢使用了ss新表,編譯會顯示表或視圖不存在錯誤。

推薦學習:《SQL教學

以上是SQL查詢為表起別名要點(總結分享)的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:jb51.net。如有侵權,請聯絡admin@php.cn刪除