變更表結構
===
## 知識點
- 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
```