select all tables mysql code example
Example 1: get all tables postgres
SELECT * FROM pg_catalog.pg_tables;
Example 2: mysql find tables with name
SELECT table_name
FROM information_schema.tables
WHERE table_type = 'base table' AND table_name like '%YOUR TABLE NAME%';
Example 3: mysql show all tables
show tables;