有一个订单操作记录表,表结构是这么样的。
create table order_operation ( id int unsigned primary key auto_increment, order_id int unsigned not null, /* 订单号 / operation_type varchar(64) not null, / 操作类型 / operation_content varchar(255) not null default '', / 操作内容 */ )
假如有一下数据:
| id | order_id | operation_type | operation_content | |----+----------+----------------+-------------------| | 1 | 1000 | ADD | | | 2 | 1001 | ADD | | | 3 | 1002 | UPDATE | Change address | | 4 | 1000 | DELETE | Cancel order | | 5 | 1002 | DELETE | Cancel order |
那么现在有个需求是每个订单各获取最后一条记录,对于上面的数据,理应是下面的结果:
| id | order_id | operation_type | operation_content | |----+----------+----------------+-------------------| | 2 | 1001 | ADD | | | 4 | 1000 | DELETE | Cancel order | | 5 | 1002 | DELETE | Cancel order |
这个Sql要怎么写才能保证性能啊?
select * from order_operation where id in (SELECT max(id) from order_operation GROUP BY order_id )
临时解决下 ######谢谢!
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。