#### 1. update 命令 --- 如果我們需要修改或更新 MySQL 中的數(shù)據(jù),我們可以使用 SQL UPDATE 命令來操作 **命令格式** ```sql update 表名 set 字段1 = 新值1, 字段2 = 新值2 [修改條件]; ``` #### 2. 使用示例 --- 沒有修改條件時,將修改表中所有的數(shù)據(jù) 將所有用戶的密碼修改為 123456 進(jìn)行 md5 加密后的字符串 ```sql update user set password = md5(123456); ``` 將用戶名為 liang 的用戶密碼修改為 123456 進(jìn)行 md5 加密后的字符串 ```sql update user set password = md5(123456) where username = 'liang'; ``` replace 函數(shù):替換某個字段中的某個字符 ```sql update user set password = replace(password, 'bcd', '666') where username = 'liang'; ``` ![](https://img.itqaq.com/art/content/a3b74d70c8645499ed5d079e03384030.png) 一次修改多個字段 ```sql update user set `username` = '辰風(fēng)沐陽', `password` = 123456 where username = 'liang'; ``` ![](https://img.itqaq.com/art/content/24ac024041ee089a770dfb75925ce023.png) #### 3. 參考文章 --- [https://www.runoob.com/mysql/mysql-update-query.html](https://www.runoob.com/mysql/mysql-update-query.html)