select count(*) from (select * from a union select * from b ) c 居然不行!!!请教高人该怎么写? 不要into 临时表再count.
------解决方案--------------------------------------------------------
你的目的是什么?
要两个表的总和?
------解决方案--------------------------------------------------------
你的版本是什么?
select * from a union select * from b
是否能执行?
------解决方案--------------------------------------------------------
试试 select((select count(*) from a) + select count(*) from b)) from systables where
tabid = 1