mysql中查询两个表同一条件的数据条数该怎么写sql语句

2024年11月30日 08:50
有1个网友回答
网友(1):

select count(1)
from
(
select id
from a
where id>5
union all
select id
from b
where id>5
)