Row Filter on Database Level to only get incremental load of data

@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")
3 Likes