有时需要执行一些sql脚本,带逻辑控制语句,又不想用高级语言C#、Java之类的,可以直接用plpgsql,类似于Oracle的plsql。

 do language 'plpgsql' $$
declare
i integer;
begin
--raise notice 'hello world'; for i in 5..100000 loop
insert into dbo.a_org_type(id, des)
values(i, 'shang hai xu hui');
end loop;
end;
$$ --select count(*) from dbo.a_org_type;
--delete from dbo.a_org_type where id > 4;

耗时 = 1.5秒

on windows7 x64

Intel Pentium cpu B950 2.1GHz

05-22 07:48