在oracle 数据库查询的select 查询字段中关联其他表的方法
程序员文章站
2023-12-06 12:54:04
大部分情况下,这种动态生成的sql查询语句写法如下: 复制代码 代码如下:select a表.字段1,a表.字段2,b表.字段返回,c表.字段返回 from a表 ,b表,...
大部分情况下,这种动态生成的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(+)
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
复制代码 代码如下:
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数据库中实现并测试,其他数据库请自行测试。
上一篇: Oracle 日期的一些简单使用
推荐阅读
-
在oracle 数据库查询的select 查询字段中关联其他表的方法
-
在oracle 数据库查询的select 查询字段中关联其他表的方法
-
SQLSERVER查询整个数据库中某个特定值所在的表和字段的方法
-
Oracle查询表中字段里数据是否有重复的方法
-
查询Oracle 数据库中带有lob字段的某一个表的大小
-
在oracle 数据库查询的select 查询字段中关联其他表的方法
-
在oracle 数据库查询的select 查询字段中关联其他表的方法
-
查询Oracle 数据库中带有lob字段的某一个表的大小
-
查询整个数据库中某个特定值所在的表和字段的方法
-
查询整个数据库中某个特定值所在的表和字段的方法