Update语句
Update 表名 set 字段1=值1, 字段2=值2 where 条件
练习:
把用户名带 ‘小’的人的密码设置为123456
语句:UPDATE crm_user SET userpwd=‘123456‘ WHERE username LIKE ‘%小%‘;
效果
时间: 2024-10-25 21:07:55
Update语句
Update 表名 set 字段1=值1, 字段2=值2 where 条件
练习:
把用户名带 ‘小’的人的密码设置为123456
语句:UPDATE crm_user SET userpwd=‘123456‘ WHERE username LIKE ‘%小%‘;
效果