show tables; --显示该数据库里的所有表show columns from 表名; --显示表字段use information_schemaselect * from columns where table_name='表名'; --显示表字段