[求助]为何语法错误?请教!!
select sum(id) from
(
select count(id) from 员工表 where 类别表.ID='49'
union
select count(id) from 企业表 where 类别表.ID='49')
用union操作得到的结果是两行:0 和 2
怎样把它们合并起来?
select sum(id) from
(
select count(id) from 员工表 where 类别表.ID='49'
union
select count(id) from 企业表 where 类别表.ID='49')
用union操作得到的结果是两行:0 和 2
怎样把它们合并起来?