@kowisoft how about you do something like this with a sub-query determining the latest date/time in your database?
SELECT * FROM "PUBLIC"."sample_table"
WHERE "Zoned Date Time" >=
(SELECT MAX("Zoned Date Time") FROM "PUBLIC"."sample_table")
@kowisoft how about you do something like this with a sub-query determining the latest date/time in your database?
SELECT * FROM "PUBLIC"."sample_table"
WHERE "Zoned Date Time" >=
(SELECT MAX("Zoned Date Time") FROM "PUBLIC"."sample_table")