update语句:将cusservice_log表查询结果后的列的值替换为,cusservice_worksheet这个表查询后的列的值
update cusservice_log a set a.operate_time=(
select asset_remark_time
from cusservice_worksheet b
where a.worksheet_id=b.id and b.id>946 )
where a.worksheet_id>946
首先要值的个数要一一对应,列个表的联系是通过括号内的where链接相同字段来实现的
oracle时间列加一天,加一小时,加一分钟
select sysdate,sysdate+1,sysdate+1/24,sysdate+1/24/60 from dual