AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
系统数据库 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'; ```