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

2024-11-30 04:35:26
推荐回答(1个)
回答1:

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