--一、修改字段預設值
alter
table 表名 drop
constraint 約束名字 --
----說明:刪除表的字段的原有約束
alter
table 表名 add
constraint 約束名字 default 預設值 for 欄位名稱 --
-----說明:新增乙個表的字段的約束並指定預設值
--二、修改欄位名:
alter
table 表名 rename column a tob--
三、修改字段型別:
alter
table 表名 alter
column unitprice decimal(18, 4) not
null
--四、修改增加字段:
alter
table 表名 add 字段 型別 not
null
default
0
出處:
SQL語句增加字段 修改字段 修改型別 修改預設值
sql語句增加字段 修改字段 修改型別 修改預設值 一 修改字段預設值 alter table 表名 drop constraint 約束名字 說明 刪除表的字段的原有約束 alter table 表名 add constraint 約束名字 default 預設值 for 欄位名稱 說明 新增乙個...
SQL語句增加字段 修改字段 更改型別 修改預設值
一 修改字段預設值 alter table 表名 drop constraint 約束名字 說明 刪除表的字段的原有約束 alter table 表名 add constraint 約束名字 隨便填 default 預設值 for 欄位名稱 說明 新增乙個表的字段的約束並指定預設值 二 修改欄位名 ...
用SQL語句增加修改字段
一 修改字段預設值 alter table 表名 drop constraint 約束名字 說明 刪除表的字段的原有約束 alter table 表名 add constraint 約束名字 default 預設值 for 欄位名稱 說明 新增乙個表的字段的約束並指定預設值 二 修改欄位名 alte...