急!急!急!
有一张任务表
有一字段月份
我现在查出2月份的数据
想将他的月份字段修改为3月份再次插入数据库中 并且2月份的数据不变
------解决方案--------------------SQL code
insert into 任务表
select add_months(月份, 1), 其他字段 from table_name
where trunc(月份,'mm')=to_date('201102','yyyymm');
------解决方案--------------------
------解决方案--------------------
楼上正解啦。。
------解决方案--------------------