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

统一数据库中创建了两个表,student和class表,想查询各个班级的学生都有多少人。注:student表中有class_id字段

select count(1)
from
(
select id
from a
where id>5
union all
select id
from b
where id>5
)
温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答