alter table
往表 customer 中添加字段 fax, 并且允许字段有空值
alter table customer add column fax c(20) null
ALTER TABLE xscj RENAME COLUMN kcmc TO kc '重命名字段
增加字段:alter talbe 表名 add 字段名 类型(宽度[,小数位] )
修改字段:alter table 表名 alter column 字段名 类型(宽度[,小数位] )
重命名字段:alter table 表名 rename column 字段名 TO 新字段名
删除字段:alter table 表名 drop column 字段名
modify structure
单个表里头应该要考虑数据结构(用到什么字段,字段的类型,字段的长度,还有标间关联,索引)数据冗余问题
Append Blank