Obtenez le schéma de la table SQL

SELECT `table_schema` 
FROM `information_schema`.`tables` 
WHERE `table_name` = 'whatever';
VasteMonde