----------------------------------------------------------------------------------------------------------- show databases; ----> 列出所有数据库 show tables; ----> 列出所有表 show tables from <databases_name>; ----> 列出所有表 show columns from <table_name>; ----> 显示表的结构 show index from <table_name>; ----> 显示表中有关索引和索引列的信息 show character set; ----> 显示可用的字符集以及其默认整理 show collation; ----> 显示每个字符集的整理 show status; ----> 列出当前数据库状态 show variables; ----> 列出数据库中的参数定义值 ----------------------------------------------------------------------------------------------------------- 元数据: 记录数据的数据 information_schema(系统视图):统计整个数据库的相关信息