您好,登錄后才能下訂單哦!
這篇文章主要講解了“MySQL怎么修改數據”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“MySQL怎么修改數據”吧!
update 表名 set 字段名=值 where 條件子句;
如:
update c1 set name="庫里30" where id=1;
update 表名 set 字段名1=值1,字段名2=值2...,字段名n=值n;
對于NULL不能用=符號,要用is null
alter table 表名 修改的動作語法;
如:
alter table c1 modify name varchar(20) not null;
說明:設置姓名不為空
alter table 表名 modify 字段 新數據類型;
如:
alter table c1 modify name varchar(20) not null;
alter table 表名 change 舊字段名 新字段名 新數據類型;
如:
alter table c3 change name name1 varchar(30) not null;
alter table 表名 add constraint 約束名字 約束類型[字段];
如:
alter table c5 add constraint PK_c5_id primary key(id);
說明:PK_c5_id是約束名(指定主鍵約束為PK_c5_id,對大部分數據庫有效但對于MySql無效,此主鍵約束名仍為primary)
在建表時給主鍵個性化名字較好
rename table 舊表名 to 新表名;
如:
rename table c5 to cc55;
alter table 表名 add unique(字段名)
如:
alter table c9 add unique(id);
alter table 表名 alter 列名 set default’默認值’;
如:
alter table c11 alter name set default “歐”;
alter 表名 modify 字段名字段類型not null
如:
alter table c12 modify id int not null;
alter table 表名稱 add foreign key (列名稱) references關聯表名稱(列名稱);
如:
altertable stuInfo add foreign key (scode) references score(studentID);
mysql修改某個字段(替換關鍵字內容),UPDATE 表名 SET 字段名= REPLACE( 替換前的字段值, '替換前關鍵字', '替換后關鍵字' ) WHERE 條件。
舉例:
update goods_table SET goods_name = REPLACE( goods_name, '2017', '2018' ) where goods_name like '%2017%';
原來字段“2017新款”,執行之后“2018新款”
感謝各位的閱讀,以上就是“MySQL怎么修改數據”的內容了,經過本文的學習后,相信大家對MySQL怎么修改數據這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。