答案 0 :(得分:1)
您可以使用窗口函数lead
来获取最后一行的值,并检查当前行的值是否小于该值。您也可以使用lead
以类似的方式从下一行获取值。
select distinct ID
from (
select t.*,
lag(value) over (
partition by ID order by time
) as last_value
from your_table t
) t
where value < last_value;