1.新增字段
alter
table 表名 add 列名 型別 約束;
例:alter
table students add birthday datetime
;
2.修改字段
1)修改欄位名
alter
table
[表名.
]table_name rename
column old_column_name to new_column_name;
2)自改字段型別
alter
table 表名 modify 列名 型別 約束;
例:alter
table students modify birthday date
notnull
;
modify: 只能修改字段型別或者約束,不能修改欄位名
alter
table 表名 change 原名 新名 型別及約束;
例:alter
table students change birthday birth datetime
notnull
;
change: 既能對字段重新命名又能修改字段型別還能修改約束
3.刪除字段
alter
table 表名 drop 列名;
例:alter
table students drop birthday;
Mysql 字段操作
alter table 表名 add 欄位1 型別 長度 欄位2 型別 長度 欄位3 型別 長度 alter table pro add add pro int 11 pro age int 11 pro lenth int 11 alter table pro add drop column ag...
mysql 字段操作 mysql如何對欄位進行操作
mysql如何對欄位進行操作 閱讀 104 1 mysql修改欄位的預設值 alter table tb mer team column drop constraint df tb mer team column columnorder alter table tb mer team column ...
mysql操作BLOB欄位
平常的sql語句,大都是乙個字串,而blob是字串無法表示的 這就需要另一種方式來執行語句,即stmt,理論上適合任意sql語句 初始化 mysql stmt init 解析sql語句 mysql stmt prepare 例 update x set y 待確定欄位用問號表示 驗證待確定字段數量 ...