Looping through tables to retrieve max dates from a created date column in Postgres – Postgresql
I need to monitor the ongoing flow of data using the latest created date for a set of tables. Basically, I need to batch run SELECT MAX(z_date_creation) FROM table_schema.table_name on a set of tables I retrieve with SELECT c.table_schema, c.table_name…