select sum(id) from(select count(id) from 员工表 where 类别表.ID='49'unionselect count(id) from 企业表 where 类别表.ID='49')用union操作得到的结果是两行:0 和 2怎样把它们合并起来?