Answers for "dql get schema of table"

SQL
0

get schema of table sql

SELECT `table_schema` 
FROM `information_schema`.`tables` 
WHERE `table_name` = 'whatever';
Posted by: Guest on August-23-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language