🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
系统数据库 information\_schema存储着所有的数据库的相关信息 ![](https://img.kancloud.cn/cb/6f/cb6f7fd2113f18afdad8f7b68e3599a7_782x506.png) 例: ``` select schema_name from information_schema.schemata; select table_name from information_schema.schemata where table_schema = 'zzcms'; select column_name from information_schema.columns where table_schema = 'zzcms' and 'table_name' = 'zzcms_zx'; ```