【发布时间】:2019-03-04 22:44:58
【问题描述】:
我对 UNION ALL 有以下查询。我只需要对其进行修改,以便对结果求和。
select count (*)
from BAU_DEAN_USER
where checked_date >= date '2019-03-01' and checked_date < date '2019-03-05'
UNION ALL
select count (*)
from BAU_DEAN_USER_ARCHIVE
where checked_date >= date '2019-03-01' and
checked_date < date '2019-03-05'
【问题讨论】: