developer怎么導(dǎo)入sql?
有幾種方式:
1.在sql窗口中使用insert語句插入數(shù)據(jù)。例如:
insert into table (a, b) values ('asd', '123');
2.在sql窗口中select * from table for update;
然后在結(jié)果的表格中填寫數(shù)據(jù);
3.導(dǎo)入含有insert語句的sql腳本;
4.導(dǎo)入dmp文件;
5.還有其他方式可以導(dǎo)入數(shù)據(jù),這里就不多舉例了。