oracle 实现3个表的关联查询
业务流程是这样的有4个业务主表PcPsPdPg1个状态表status1个字典表Dic要先到字典表Dic中查询出物品的类型type在根据类型到状态表中查询出状态status...
业务流程是这样的 有4个业务主表 Pc Ps Pd Pg 1个状态表 status 1个字典表 Dic
要先到字典表Dic 中查询出物品的类型 type 在根据类型到状态表中查询出状态 status
这2个表的type是相同的 查出status后在根据 type查找对应的业务主表 查询业务数据业务主表和状态中是根据一个审核号关联的 SPw_NO
最后在列表中显示的数据 分别是从业务主表中查出的和状态表的物品状态和字典表物品类型
审核号 spw_no 注册号 reg_No 名称 tm_Name 类型 type 申请人姓名 app_Name 申请日期 app_Date 状态 status
求查询sql oracle10g
有点问题,首先这4个表我为什么要合并? 字典表 有2个字段 typeno typename我是根据typename(typename只能有4个值 就是 4个主表名)来确定我要查询哪个主表 查询dic时的条件就是根据status状态表的typeno关联的
(select * from pc union all
select * from ps union all
select * from pd union all
select * from pg union all
) c
没看懂
我现在的问题就是 如何让其按字典表中的typename来找到业务主表 把他写进去
(select * from pc union all
select * from ps union all
select * from pd union all
select * from pg union all
) c
有问题 而且如果要是能在程序里判断的话就简单了 c里边并没有typename字段 只有a里有 a与b是根据typeno关联的 展开
要先到字典表Dic 中查询出物品的类型 type 在根据类型到状态表中查询出状态 status
这2个表的type是相同的 查出status后在根据 type查找对应的业务主表 查询业务数据业务主表和状态中是根据一个审核号关联的 SPw_NO
最后在列表中显示的数据 分别是从业务主表中查出的和状态表的物品状态和字典表物品类型
审核号 spw_no 注册号 reg_No 名称 tm_Name 类型 type 申请人姓名 app_Name 申请日期 app_Date 状态 status
求查询sql oracle10g
有点问题,首先这4个表我为什么要合并? 字典表 有2个字段 typeno typename我是根据typename(typename只能有4个值 就是 4个主表名)来确定我要查询哪个主表 查询dic时的条件就是根据status状态表的typeno关联的
(select * from pc union all
select * from ps union all
select * from pd union all
select * from pg union all
) c
没看懂
我现在的问题就是 如何让其按字典表中的typename来找到业务主表 把他写进去
(select * from pc union all
select * from ps union all
select * from pd union all
select * from pg union all
) c
有问题 而且如果要是能在程序里判断的话就简单了 c里边并没有typename字段 只有a里有 a与b是根据typeno关联的 展开
2个回答
展开全部
select c.*,b.物品状态,dic.type
from dic a,
status b,
(select * from pc union all
select * from ps union all
select * from pd union all
select * from pg union all
) c
where a.type = b.type
and b.spw_no = c.spw_no
假设spw_no这个字段在四张表合在一起的时候也不重复,而且四张表的表结构相同,另外查询dic表用什么条件,你没有说明,自己加上去吧。如果spw_no在一张表内唯一,各个表之间不唯一,那还需要修改sql,如果唯一的话,这样就可以了。
补充:如果不合并的话,你就要程序里面进行判断要用哪张表,如果在sql里面想根据typename来确定来用哪张表的话,可以这么写。
select c.*,b.物品状态,dic.type
from dic a,
status b,
(select *,'typename1' typename from pc union all
select *,'typename2' typename from ps union all
select *,'typename3' typename from pd union all
select *,'typename4' typename from pg union all
) c
where a.typename = b.typename
and a.typename = c.typename
and b.spw_no = c.spw_no
其中typename1,typepname2,typename3,typename4的值就是你选这些表时候对于那个的typename的值。
from dic a,
status b,
(select * from pc union all
select * from ps union all
select * from pd union all
select * from pg union all
) c
where a.type = b.type
and b.spw_no = c.spw_no
假设spw_no这个字段在四张表合在一起的时候也不重复,而且四张表的表结构相同,另外查询dic表用什么条件,你没有说明,自己加上去吧。如果spw_no在一张表内唯一,各个表之间不唯一,那还需要修改sql,如果唯一的话,这样就可以了。
补充:如果不合并的话,你就要程序里面进行判断要用哪张表,如果在sql里面想根据typename来确定来用哪张表的话,可以这么写。
select c.*,b.物品状态,dic.type
from dic a,
status b,
(select *,'typename1' typename from pc union all
select *,'typename2' typename from ps union all
select *,'typename3' typename from pd union all
select *,'typename4' typename from pg union all
) c
where a.typename = b.typename
and a.typename = c.typename
and b.spw_no = c.spw_no
其中typename1,typepname2,typename3,typename4的值就是你选这些表时候对于那个的typename的值。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
我强烈建议你把字段换为 汉字 以方便理解
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询