sql資料表字段操作

2021-07-23 06:07:46 字數 387 閱讀 9064

一、修改字段預設值

alter table 表名 drop constraint 約束名字   ------說明:刪除表的字段的原有約束

alter table 表名 add constraint 約束名字 default 預設值 for 欄位名稱 -------說明:新增乙個表的字段的約束並指定預設值

二、修改欄位名:

alter table 表名 rename column a to b

三、修改字段型別:

alter table 表名 alter column unitprice decimal(18, 4) not null 

三、修改增加字段:

alter table 表名 add 字段 型別 not null default 0

MySql 資料表字段常用查詢記錄

獲取資料表的所有字段資訊 select c.from information schema.columns c where table name baseinfo vehicle 拼接資料表的所有欄位名 select group concat concat c.column name,from in...

修改和刪除資料表字段

修改表修改表名 alter table 舊表明 rename as 新錶名 新增字段 alter table 表名 add 欄位名 列屬性 修改字段 刪除alter table 表名 drop 欄位名 刪除資料表 語法 drop table if exists 表名 1.可用反引號 為識別符號 庫名...

PHP自動驗證MySql資料表字段

php自動驗證mysql 資料表字段 變數自行替換,this 自行刪除 資料對比 param type param 資料 param type table 表名 return boolean false 需要資料 function data contrast param,table 判斷資料型別 s...