I have a database with many tables and I want to understand which of my actions is modifying what tables. How do I use cockroach sql client to list tables in order of modifications? Internet answers use sys.tables as the FROM target which does not work:
select * from sys.tables order by modify_date desc;
pq: relation “sys.tables” does not exist