The INNODB_SYS_TABLES table provides
metadata about InnoDB tables, equivalent to the
information from the SYS_TABLES table in the
InnoDB data dictionary.
For related usage information and examples, see Section 14.16.3, “InnoDB INFORMATION_SCHEMA System Tables”.
The INNODB_SYS_TABLES table has these
columns:
TABLE_IDAn identifier for the
InnoDBtable. This value is unique across all databases in the instance.NAMEThe name of the table, preceded by the schema (database) name where appropriate (for example,
test/t1). Names of databases and user tables are in the same case as they were originally defined, possibly influenced by thelower_case_table_namessetting.FLAGA numeric value that represents bit-level information about table format and storage characteristics.
N_COLSThe number of columns in the table. The number reported includes three hidden columns that are created by
InnoDB(DB_ROW_ID,DB_TRX_ID, andDB_ROLL_PTR). The number reported also includes virtual generated columns, if present.SPACEAn identifier for the tablespace where the table resides. 0 means the
InnoDBsystem tablespace. Any other number represents either a file-per-table tablespace or a general tablespace. This identifier stays the same after aTRUNCATE TABLEstatement. For file-per-table tablespaces, this identifier is unique for tables across all databases in the instance.FILE_FORMATThe table's file format (
AntelopeorBarracuda).ROW_FORMATThe table's row format (
Compact,Redundant,Dynamic, orCompressed).ZIP_PAGE_SIZEThe zip page size. Applies only to tables with a row format of
Compressed.SPACE_TYPEThe type of tablespace to which the table belongs. Possible values include
Systemfor the system tablespace,Generalfor general tablespaces, andSinglefor file-per-table tablespaces. Tables assigned to the system tablespace usingCREATE TABLEorALTER TABLETABLESPACE=innodb_systemhave aSPACE_TYPEofGeneral. For more information, seeCREATE TABLESPACE.
Example
mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_SYS_TABLES WHERE TABLE_ID = 214\G
*************************** 1. row ***************************
TABLE_ID: 214
NAME: test/t1
FLAG: 129
N_COLS: 4
SPACE: 233
FILE_FORMAT: Antelope
ROW_FORMAT: Compact
ZIP_PAGE_SIZE: 0
SPACE_TYPE: General
Notes
You must have the
PROCESSprivilege to query this table.Use the
INFORMATION_SCHEMACOLUMNStable or theSHOW COLUMNSstatement to view additional information about the columns of this table, including data types and default values.