Answers for "mysql search all tables for name"

SQL
1

mysql search for column name in all tables

SELECT DISTINCT TABLE_NAME, COLUMN_NAME 
FROM INFORMATION_SCHEMA.COLUMNS
WHERE COLUMN_NAME LIKE '%partial_column_name%'
    AND TABLE_SCHEMA='YourDatabase';
Posted by: Guest on February-23-2021
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%';
Posted by: Guest on May-28-2020

Code answers related to "mysql search all tables for name"

Code answers related to "SQL"

Browse Popular Code Answers by Language