想请问 如果是想让数据库里的某一列数值加1 怎么写update 语句合适呢?

想请问 如果是想让数据库里的某一列数值加1 怎么写update 语句合适呢?,第1张

1、创建测试表,create table test_update(id number)

2、插入测试数据

insert into test_update values(1)

insert into test_update values(12)

insert into test_update values(23)

3、查询表中数据,select t.*, rowid from test_update  t

4、执行update语句,update test_update set id = id+1

5、再次查询数据,发现数据已变化;select t.*, rowid from test_update  t

格式:update 表名称 set 字段名称 = 字段名称 + 1  [ where语句]

比如说数据库中有一张student表,要想把id为1的学生成绩(score)加1则

update student set score=score+1 where id = 1


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9909586.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-03
下一篇 2023-05-03

发表评论

登录后才能评论

评论列表(0条)

保存