mysql 每个分类各取5条

( select * from tb  where  sort=1 limit 5 )
union 
( select * from tb  where  sort=2 limit 5 )
union 
( select * from tb  where  sort=3 limit 5 )
order by  id  desc

 每个分类取5条这种有什么性能问题没有?
原文地址:https://www.cnblogs.com/wangqishu/p/2843534.html