怎么将两个结果集加到一起【sql】
select a.sensorid sensorid ,'2008-10-19 '||to_char(t.time1,'hh24') cptime from usedseninfotab a,time_interval t where
a.sensorid=318
和
select a.sensorid sensorid ,'2008-10-20 '||to_char(t.time1,'hh24') cptime from usedseninfotab a,time_interval t where
a.sensorid=318
把后面一个结果集并在前面的后面,要怎么做
怎么将两个结果集加到一起【sql】
答案:4 悬赏:0 手机版
解决时间 2021-02-11 06:24
- 提问者网友:焚苦与心
- 2021-02-11 02:25
最佳答案
- 五星知识达人网友:胯下狙击手
- 2021-02-11 03:33
union all忽略向同值
select a.sensorid sensorid ,'2008-10-19 '||to_char(t.time1,'hh24') cptime from usedseninfotab a,time_interval t where
a.sensorid=318 union all
select a.sensorid sensorid ,'2008-10-20 '||to_char(t.time1,'hh24') cptime from usedseninfotab a,time_interval t where
a.sensorid=318
select a.sensorid sensorid ,'2008-10-19 '||to_char(t.time1,'hh24') cptime from usedseninfotab a,time_interval t where
a.sensorid=318 union all
select a.sensorid sensorid ,'2008-10-20 '||to_char(t.time1,'hh24') cptime from usedseninfotab a,time_interval t where
a.sensorid=318
全部回答
- 1楼网友:夜余生
- 2021-02-11 06:23
要将sql里的结果集链接起来必须这两个结果集里面的字段一样
在这两个sql语句中间加union来联接
- 2楼网友:有你哪都是故乡
- 2021-02-11 04:56
你好!
可以分别把连个结果集创建成视图。然后在两个试图进行检索就比较简单了。
create view temp1 as (select ....)
create view temp2 as (select ....)
select a.*,b.* from temp1 a,temp2 where a.主键=b.主键
如果对你有帮助,望采纳。
- 3楼网友:撞了怀
- 2021-02-11 03:47
可以分别把连个结果集创建成视图。然后在两个试图进行检索就比较简单了。
create view temp1 as (select ....)
create view temp2 as (select ....)
select a.*,b.* from temp1 a,temp2 where a.主键=b.主键
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯