I\'d like to show DataDictionary for entire tables in database.
SHOW COLUMNS FROM `MyDataBase`.`MyTables` WHERE IN ( SELECT TABLE_NAME FROM info
The shortest syntax is this:
SHOW COLUMNS FROM `MyDataBase`.`MyTables`;
Full SHOW Syntax for columns:
SHOW [FULL] COLUMNS FROM tbl_name [FROM db_name] [like_or_where]