Hi guys,I have a lot of key/value pairs. The keys are milliseconds, the values are doubles.Now I want to find the min/max for a given time period (e.g. one day).In MySQL I could do something like that:group by unix_timestamp(timestamp) div (3600*24)Any hints how I could solve that with H2?Thanks,
Johannes