範囲のmax値が持つ時刻を取る – PL/pgsql
時系列表であるyour_tableのカラムvalue1が持つmax値の最初の時刻を取る。
1 2 3 4 5 6 |
select into res.timestamp, res,value1 timestamp, value1 from your_table where starttime < = timestamp and timestamp <= endtime order by value1 desc, timestamp limit1 |