如何同时执行两条sql语句

发布网友 发布时间:2022-04-21 04:46

我来回答

5个回答

热心网友 时间:2022-04-11 01:27

select s.wkid,s.wkname,t.retime ,t.traffic*60
from river_calresult t,ph_anm_weikou s
where t.rno=s.dmno and t.overflowflag=3

union
{

select s.wkid,s.wkname,t.retime ,t.traffic*60
from river_calresult t,ph_anm_weikou s
where t.rno=s.dmno and t.overflowflag=s.shore
group by( s.wkid,s.wkname,t.retime ,t.traffic*60)

}

热心网友 时间:2022-04-11 02:45

同时选中,点击运行按钮,就可以执行

热心网友 时间:2022-04-11 04:19

select s.wkid,s.wkname,t.retime ,t.traffic*60
from river_calresult t,ph_anm_weikou s
where t.rno=s.dmno and t.overflowflag=3

union

select s.wkid,s.wkname,t.retime ,t.traffic*60
from river_calresult t,ph_anm_weikou s
where t.rno=s.dmno and t.overflowflag=s.shore
group by( s.wkid,s.wkname,t.retime ,t.traffic*60)

热心网友 时间:2022-04-11 06:11

用union 或 union all将两个SQL串起来
union会消除重复资料
union all不会消除重复资料

热心网友 时间:2022-04-11 08:19

使用union all,你可以调试下。

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com