get schema of table sql

Solutions on MaxInterview for get schema of table sql by the best coders in the world

showing results for - "get schema of table sql"
Robin
09 Apr 2019
1SELECT `table_schema` 
2FROM `information_schema`.`tables` 
3WHERE `table_name` = 'whatever';