程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> 關於Oracle數據庫 >> 在oracle 數據庫查詢的select 查詢字段中關聯其他表的方法

在oracle 數據庫查詢的select 查詢字段中關聯其他表的方法

編輯:關於Oracle數據庫
大部分情況下,這種動態生成的sql查詢語句寫法如下:
代碼如下:

select A表.字段1,A表.字段2,B表.字段返回,C表.字段返回 from A表 ,B表,C表 [where A表,B表,C表關聯及各自的條件語句]

但是這個方法有一個缺點,那就是在動態的生成這個查詢語句的業務邏輯程序仍然很復雜。這裡就介紹一個降低業務邏輯復雜度的查詢sql生成方式。其語法結構如下:
代碼如下:

select A表.字段1,A表.字段2,B表.字段,C表.字段 from A表 [where A表的條件語句]

業務邏輯程序通過這種方式生成的sql語句時只需修改select的字段,而不需像通用方法那樣需要同時動態修改select字段,from的表,以及where 語句。這樣真個業務邏輯就能將生成sql語句的關注點由3+個減少為1個。下面就該方式實現舉例如下:

首先,建立三個表,一個反應學生基本情況的信息表——student表,兩個存放學生相關信息的代碼表——sexCode表(性別代碼表),gradeCode(年紀代碼表),建表語句如下:
代碼如下:

-- Create table STUDENT
create table STUDENT
(
ID number,
name nvarchar2(10),
sex char(1),
grade char(1),
age number(2)
)
tablespace SDMP
storage
(
initial 64K
minextents 1
maxextents unlimited
);
-- Add comments to the columns
comment on column STUDENT.name
is '學生姓名';
comment on column STUDENT.sex
is '學生性別';
comment on column STUDENT.grade
is '年級';
comment on column STUDENT.age
is '年齡';

代碼如下:

-- Create table SEXCODE
create table SEXCODE
(
DM char(1),
MC nvarchar2(5)
)
tablespace SDMP
storage
(
initial 64K
minextents 1
maxextents unlimited
);
-- Add comments to the columns
comment on column SEXCODE.DM
is '代碼';
comment on column SEXCODE.MC
is '名稱';

代碼如下:

-- Create table GRADECODE
create table GRADECODE
(
DM CHAR(1),
MC NVARCHAR2(5)
)
tablespace SDMP
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
-- Add comments to the columns
comment on column GRADECODE.DM
is '代碼';
comment on column GRADECODE.MC
is '名稱';

然後,執行以下insert語句,分別在每個表中填入信息。
代碼如下:

--insert into student
insert into student(id,name,sex,grade,age) values(1,'張三','1','2',8);
insert into student(id,name,sex,grade,age) values(2,'李四','0','1',11);
insert into student(id,name,sex,grade,age) values(3,'王五','1','2',9);
insert into student(id,name,sex,grade,age) values(4,'劉二','0','4',8);
insert into student(id,name,sex,grade,age) values(5,'韓六','0','3',6);

--insert into sexcode
insert into sexcode(dm,mc) values('1','男');
insert into sexcode(dm,mc) values('0','女');

--insert into gradecode
insert into gradecode(dm,mc) values('1','一年級');
insert into gradecode(dm,mc) values('2','二年級');
insert into gradecode(dm,mc) values('3','三年級');

最後,給出常用sql查詢方式和本文倡導的查詢方式及其查詢結果比較:
通用查詢方式及其查詢結果如下:
代碼如下:

select s.id,s.name,sc.mc sex,gc.mc grade,s.age
from student s,sexcode sc,gradecode gc
where sc.dm=s.sex(+) and s.grade=gc.dm(+)

ID NAME SEX GRADE AGE 1 2 李四 女 一年級 11 2 3 王五 男 二年級 9 3 1 張三 男 二年級 8 4 5 韓六 女 三年級 6 5 4 劉二 女 8

本問題出查詢方法及其查詢結果如下
代碼如下:

select s.id,s.name,s.age,
(select mc from sexcode where dm=s.sex) sex,
(select mc from gradecode where dm=s.grade) grade
from student s

ID NAME AGE SEX GRADE 1 1 張三 8 男 二年級 2 2 李四 11 女 一年級 3 3 王五 9 男 二年級 4 4 劉二 8 女 5 5 韓六 6 女 三年級

注:1.對於二者的性能,這裡只是做了個簡單測試,1000條數據查詢耗時二者相當,而且本文提到方法甚至略優於普通方法。

2.此方法目前只在oracle數據庫中實現並測試,其他數據庫請自行測試。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved