MySQL Найти таблицы с именем
SELECT table_name
FROM information_schema.tables
WHERE table_type = 'base table' AND table_name like '%YOUR TABLE NAME%';
Itchy Impala
SELECT table_name
FROM information_schema.tables
WHERE table_type = 'base table' AND table_name like '%YOUR TABLE NAME%';
DESCRIBE table_name; # To show table structure...
SHOW TABLES
use database_name;
show tables;
Code language: SQL (Structured Query Language) (sql)