information_schema数据库是MySQL自带的,它提供了访问数据库元数据的方式
什么是元数据呢?元数据是关于数据的数据,如数据库名或表名,列的数据类型,或访问权限等
常用命令
1.等同于mysql命令的showdatabases操作
select*frominformation_schema.schemata
2.提供了关于数据库中的表的信息
select*frominformation_schema.tables返回字段解释:table_catalog数据表登记目录table_schema数据表所属的数据库名table_name表名称table_type表类型[systemview
basetable]engine使用的数据库引擎[myisam
csv
innodb]version版本,默认值10row_format行格式[