plsql里如何给表加数据?
如果列不多、数据为excel或txt的话,可以采用这个方法:
1、打开行级锁方法: select t.*,rowid from 表名 t where 1=2; select * from 表名 where 1=2 for update;
2、点列表字段头上的锁图标,开锁;
3、一列一列地复制导入即可。