mysql查询各种类型的前N条记录

mysql查询各种类型的前N条记录,将3改为N(需查询条数)即可  
(select * from event_info where event_type = 1  limit 3)
union all
(select * from event_info where event_type = 2  limit 3)
union all
(select * from event_info where event_type = 3  limit 3)

原文出处:http://my.oschina.net/u/1032146/blog/149300

上一篇:Javacard 解释器怎样在API类库中找到源文件调用的类、方法或者静态域?


下一篇:【笔记6】用pandas实现条目数据格式的推荐算法 (基于物品的协同)