56,912
社区成员




select count(1) from tmp;
create temporary table tmp select classid from news limit 3;
select a.id,a.title,a.date,b.subclassname from
news as a,newsclass as b
where a.classid = b.classid and b.classid
in (select classid from tmp);