SHOW TABLE STATUS
This statement is used to view some information about the Table.
grammar:
SHOW TABLE STATUS [FROM db] [LIKE "pattern"]
illustrate:
View the information of all tables under the current database
SHOW TABLE STATUS;
View the information of the table whose name contains example under the specified database
SHOW TABLE STATUS FROM db LIKE "%example%";
SHOW, TABLE, STATUS