mysql get tables names code example
Example: mysql find tables with name
SELECT table_name
FROM information_schema.tables
WHERE table_type = 'base table' AND table_name like '%YOUR TABLE NAME%';
SELECT table_name
FROM information_schema.tables
WHERE table_type = 'base table' AND table_name like '%YOUR TABLE NAME%';