select order_time, max(sum_price) from (SELECT order, sum(price) as sum_price FROM orders group by order_time) as table_tmp;

 

posted on 2018-02-06 15:05  Go_Forward  阅读(263)  评论(0编辑  收藏  举报