MySQL的操作(二)

給數據表增加字段 alter table 表名 add 類型 約束; alter table students add number int not null; 修改字段 只修改字段類型不修改字段名 alter table 表名 modify 字段名 類型 約束; alter table students modify number varchar(20) default ‘0’;; 修改字段名
相關文章
相關標籤/搜索