变更表结构
===
## 知识点
- 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
```