在Oracle中 insert into 表A(user,id ,类型) select user ,id from 表B 现在表B中没有 类型 如何解决

我不想建立一张临时表
2025-12-06 06:36:31
推荐回答(1个)
回答1:

insert into 表A(user,id ,类型) select user ,id,NULL from 表B