php中mysql一条sql语句查询出所有符合条件的数据,该怎么写?

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

您好,不知道你的a,b两表有没有关联,假定没有关联
select count(1)
from
(
select id
from a
where id>5
union all
select id
from b
where id>5
)