这篇文章主要讲解了“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进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。