Mysql
 sql >> Datenbank >  >> RDS >> Mysql

MySQL-Suche nach Segment des Tabellennamens

SELECT TABLE_NAME 
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_NAME like '%_name'
and TABLE_SCHEMA = 'your_db_name'

Wenn Sie in Ihrer aktuellen Datenbank nach Tabellen suchen möchten, können Sie dies tun

SHOW TABLES LIKE '%_name'