このクエリがあります。毎日の最低気温と最高気温を返します。
select year(DateTimeS),month(DateTimeS),day(DateTimeS),min(Low),max(High) from temperature
where year(DateTimeS) = 2018
group by year(DateTimeS),month(DateTimeS),day(DateTimeS)
このクエリには、LowTime と MaxTime の 2 つのフィールドがありません。min(low) と max(high) が発生した時間を取得する方法がわかりません。(DateTimeS は DateTime フィールドで、残りは 10 進数です) テーブルには、次のような分ごとの温度データがあります。
+-----------------------+--------+-------+
| "DateTimeS" | "High" | "Low" |
+-----------------------+--------+-------+
| "2018-09-07 23:58:00" | "89" | "87" |
| "2018-09-07 23:57:00" | "88" | "85" |
| "2018-09-07 23:56:00" | "86" | "82" |
| . | | |
| etc... | | |
+-----------------------+--------+-------+
何か案は?