更新表数据,当t2、t3的条件符合时更新t1为null
update table_name t set t.t1 = null where t.t2 = '是' or t.t3='否'
在plsql工具中查询出数据后更新
select t.* from table_name t where t.t1 like '%xx%' for update