想请问 如果是想让数据库里的某一列数值加1 怎么写update 语句合适呢?
展开全部
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
展开全部
首先,加1的列须是整型的。其实也没什么意义。
sql这样:
update 表名 set 字段=字段 + 1 where 条件;
不知楼主要实现什么样的功能呢?
sql这样:
update 表名 set 字段=字段 + 1 where 条件;
不知楼主要实现什么样的功能呢?
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-10-11
展开全部
update TableName set rowName = (rowName + 1) where row_id = ?;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-10-09
展开全部
update table_name
set column_a = (select a + 10 from table_name )
where a = a
set column_a = (select a + 10 from table_name )
where a = a
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询