首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Web开发 >

求好手给条sql 啊

2012-07-31 
求高手给条sql 啊!!!!!!有以上数据,要求返回 根据coupon_xuhao字段 最新的一条记录即:[解决办法]探讨SQL c

求高手给条sql 啊!!!!!!


有以上数据,要求返回 根据coupon_xuhao字段 最新的一条记录

即:





[解决办法]

探讨

SQL code
select * from xxx x1 where coupon_date = (select max(coupon_date) from xxx x2 where x1.coupon_id = x2.coupon_id group by coupon_xuhao );

[解决办法]
where x1.coupon_xuhao = x2.coupon_xuhao group by coupon_xuhao
明显这个group by 是没用的。

热点排行