Query below finds all tables with digits in their names.
Query
SELECT  DatabaseName,
        TableName
FROM    DBC.TablesV
WHERE   TableKind = 'T'
AND     REGEXP_SIMILAR(TableName,'.*[0-9].*') = 1
ORDER BY    DatabaseName,
            TableName;
Columns
- DatabaseName - name of database where table was found in
- TableName - name of table
Rows
- One row represents one table
- Scope of rows: all found tables
- Ordered by database & table name
Sample results
List of tables with digits in their names.

 
                                                                     
                                                                     
                                                                     
                                                                     
                                                                     
                                                                     
                                                                     
                                                                     
                                                                     
                                                                     
                                                                     
                                                                     
                                                                     
                                                                     
                                                                     
                                                                     
                                                                     
                                                                 
                                                             
                                                             
                                                             
                                                             
                                                                 
                                                             
                                                             
                                                                 
                                                             
                                                             
                                                             
                                                             Przemek Samojlo
                                                                        Przemek Samojlo
                                 Teradata
                                                                Teradata
                                 SQL Server
                                                                                                SQL Server
                                             Azure SQL Database
                                                                                                Azure SQL Database
                                             Oracle database
                                                                                                Oracle database
                                             Snowflake
                                                                                                Snowflake
                                             Amazon Redshift
                                                                                                Amazon Redshift
                                             IBM Db2
                                                                                                IBM Db2
                                             Vertica
                                                                                                Vertica
                                             PostgreSQL
                                                                                                PostgreSQL
                                             MySQL
                                                                                                MySQL
                                             MariaDB
                                                                                                MariaDB