AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
变更表结构 === ## 知识点 - alter table [tablename] ... - create index ... - drop index ... ## 实战 ``` > \d users; > alter table users add fullname vachar(255) // 添加字段 > alter table users drop flullname; // 删除字段 > alter table users rename player to new_tab_name; // 从命名 > create index nba_play on users(nba_play ); // 添加index > drop index nba_play ; // 删除index ```