欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

mysql更改table数据的方法_MySQL

程序员文章站 2022-04-26 14:08:02
...
更改数据表中的某一项数据可以使用update命令,具体使用方法如下:

如下表,表名为aaa:

+----+--------+--------+--------------+
| id | nodeId | type | domain |
+----+--------+--------+--------------+
| 1 | vlsr1 | type1 | blue |
| 2 | vlsr2 | type2 | red |
+----+--------+--------+--------------+

想要更改blue为yellow,则使用如下语法:

update aaa set domain='yellow' where id='1';

即可完成修改