Query below lists all tables in Snowflake database that were created within the last 30 days
Query
select table_schema,
       table_name,
       created,
       last_altered
from information_schema.tables
where created > DATEADD(DAY, -30, CURRENT_TIMESTAMP)
      and table_type = 'BASE TABLE'
order by created desc;
Columns
- table_schema - schema that the table belongs to
- table_name - name of the table
- created - creation time of the table
- last_altered - last altered time of the table
Rows
- One row represents one table in a database
- Scope of rows: all tables accessible to the current user in Snowflake database that were created within the last 30 days
- Ordered by table schema, table name
Sample results

 
                                                                     
                                                                     
                                                                     
                                                                     
                                                                     
                                                                     
                                                                     
                                                                     
                                                                     
                                                                     
                                                                     
                                                                     
                                                                     
                                                                     
                                                                     
                                                                     
                                                                     
                                                                 
                                                             
                                                             
                                                             
                                                             
                                                                 
                                                             
                                                             
                                                                 
                                                             
                                                             
                                                             
                                                             Bart Gawrych
                                                                        Bart Gawrych
                                 Snowflake
                                                                Snowflake
                                 SQL Server
                                                                                                SQL Server
                                             Azure SQL Database
                                                                                                Azure SQL Database
                                             Oracle database
                                                                                                Oracle database
                                             IBM Db2
                                                                                                IBM Db2
                                             Teradata
                                                                                                Teradata
                                             Vertica
                                                                                                Vertica
                                             MySQL
                                                                                                MySQL
                                             MariaDB
                                                                                                MariaDB
                                             Microsoft Access
                                                                                                Microsoft Access