Home >Database >Mysql Tutorial >PLSQL批量插入100000条数据到Oracle DB

PLSQL批量插入100000条数据到Oracle DB

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-07 14:58:063248browse

PLSQL批量插入100000条数据到OracleDB 无 beginfor i in 100001 .. 110000 loopinsert into emp3 values(i,'dev',1);end loop;end;/

PLSQL批量插入100000条数据到Oracle DB
begin
for i in 100001 .. 110000 loop
	insert into emp3 values(i,'dev',1);
end loop;
end;
/

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:图书馆剔旧Next article:oracle表数据的闪回