“MySQL Select Table Nomes” Respostas de código

mysql encontre tabelas com nome

SELECT table_name 
FROM information_schema.tables 
WHERE table_type = 'base table' AND table_name like '%YOUR TABLE NAME%';
Itchy Impala

MySQL Encontre tabelas com o nome da coluna

SELECT DISTINCT TABLE_NAME 
    FROM INFORMATION_SCHEMA.COLUMNS
    WHERE COLUMN_NAME IN ('columnA','ColumnB')
        AND TABLE_SCHEMA='YourDatabase';
Sleepy Scarab

MySQL Select Table Nomes

SELECT *
FROM information_schema.tables
WHERE table_type='BASE TABLE'
AND table_schema='<insert_your_database_name_here>'
Arno Deceuninck

Respostas semelhantes a “MySQL Select Table Nomes”

Perguntas semelhantes a “MySQL Select Table Nomes”

Mais respostas relacionadas para “MySQL Select Table Nomes” em Sql

Procure respostas de código populares por idioma

Procurar outros idiomas de código