企业🤖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 ```