【SQL】修改表中某个字段的值

语法

update  表名 set 待修改字段=某一值 where 条件

举个栗子

update  stu set score=100 where id=1 and name='li'

你可能感兴趣的:(sql)