khush
07/30/2021, 10:41 AMMayank
khush
07/30/2021, 11:36 AMkhush
07/30/2021, 11:36 AMMayank
khush
07/30/2021, 1:42 PMMayank
khush
07/30/2021, 2:07 PMMayank
khush
07/30/2021, 2:54 PMKishore G
Kishore G
khush
07/30/2021, 3:10 PMKishore G
khush
07/30/2021, 3:14 PMkhush
07/30/2021, 3:15 PMKishore G
Kishore G
SELECT appName FROM requests WHERE request_ts >= '1628380800000' AND request_ts <= '1628726400000' AND testRequest = 'false' GROUP BY appName ORDER BY requestDate ASC
khush
07/30/2021, 3:17 PMKishore G
khush
07/30/2021, 3:21 PMSELECT appName, sum(adRequests) FROM requests WHERE request_ts >= '1628380800000' AND request_ts <= '1628726400000' AND testRequest = 'false' GROUP BY appName ORDER BY requestDate ASC
Xiaobing
07/30/2021, 4:42 PMSELECT VendorID FROM taxi_trips GROUP BY VendorID ORDER BY min(RatecodeID) LIMIT 5
So I assume you may try sth like below on your side. If requestDate is String, you may transform it to epoch (doc) and then do a numeric aggregate on it
SELECT appName FROM requests ... ORDER BY min(requestDate) ASC