返回列表 发帖

sql中将两个表中数据相加求表中总数

select sum(a) from  
(
select COUNT(*) a from _aa2    union all
select COUNT(*) a from _aa1
) c

返回列表