普通的 update 都是根据条件来对部分列的内容进行修改,用法如下: update temp_cwh_table set name = 'xxx' where id = 1; 假设现在有2张表:A.B,需要关联A.B表,根据相同的 id 来 update A表. 建立测试表 -- 创建测试表 temp_cwh_001 create table temp_cwh_001 ( id int, name varchar2(20) ); -- 插入数据 insert into temp_cwh_001