zl程序教程

您现在的位置是:首页 >  数据库

当前栏目

oracle插入

Oracle 插入
2023-09-27 14:29:13 时间

 

普通插入方式:
insert into t select * from t2;
append插入方式:
insert /*+append*/ into t select * from t2;
Append+nologing插入方式:
insert /*+append*/ into t nologging select * from t2;