MySQL 如何更新某个字段的值为原来的值加1

格式:update 表名称 set 字段名称 = 字段名称 + 1  [ where语句] 
比如说数据库中有一张student表,要想把id为1的学生成绩(score)加1则
update student set score=score+1 where id = 1
posted @ 2015-04-16 16:47  海乐学习  阅读(2908)  评论(0编辑  收藏  举报