【发布时间】:2017-07-25 09:13:05
【问题描述】:
我有格式的数据
+---------------------+-------------------------+-------------------------+-----------+------+
| id | start time | end time | direction | name |
+---------------------+-------------------------+-------------------------+-----------+------+
| 9202340753368000000 | 2015-06-02 15:10:28.677 | 2015-06-02 15:32:22.677 | 3 | xyz |
| 9202340753368000000 | 2015-06-02 14:55:37.353 | 2015-06-02 15:12:18.84 | 1 | xyz |
+---------------------+-------------------------+-------------------------+-----------+------+
我需要最小开始时间、最大结束时间、最小开始时间的方向值和名称等输出
+---------------------+-------------------------+------------------------+-----------+------+
| id | start time | end time | direction | name |
+---------------------+-------------------------+------------------------+-----------+------+
| 9202340753368000000 | 2015-06-02 14:55:37.353 | 2015-06-02 15:32:22.677| 1 | xyz |
+---------------------+-------------------------+------------------------+-----------+------+
我尝试过使用
select x.id, min(x.start_time) as mintime, max(x.end_time) maxtime , y.direction, y.name
from dir_samp x inner join (
select id, start_time, end_time, name, direction ,
rank() over ( partition by id
order by start_time asc) as r
from dir_samp
) y on x.id = y.id where y.r = 1 group by x.id , y.direction, y.name
是否还有其他更有效的逻辑?请提供。
谢谢
【问题讨论】: