mysql 数据的增删改

Posted 逆欢

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 数据的增删改相关的知识,希望对你有一定的参考价值。

1.更新数据update

update 表名 set

字段1 = 值

字段2 = 值2

where condition

示例:

update mysql.user set password=password("123)where user="root‘‘ and host ="localhost";

2.删除数据

delete from 表名 

where conition

示例;

delete from mysql.user where password=" ‘‘

 

以上是关于mysql 数据的增删改的主要内容,如果未能解决你的问题,请参考以下文章

mysql 的增删改查 实现代码

mysql 数据表的增删改查 目录

如何用PHP代码实现MySQL数据库的增删改查

MySQL的增删改查

MySQL表的增删改查(基础)

MySQL数据库之表的增删改查