Postgresql支持无需创建出来即可执行的function,关键字是
do language plpgsql $$ declare begin ... .. . end $$;
示例如下:
postgres=# do language plpgsql $$ postgres$# declare postgres$# begin postgres$# raise notice 'hello postgresql'; postgres$# end $$; NOTICE: hello postgresql DO原文链接:https://www.f2er.com/postgresql/195358.html