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

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

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-07 14:58:06
Original
3252 people have browsed it

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;
/

Copy after login
Related labels:
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template