发布网友 发布时间: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,你可以调试下。