PostgreSQL数据库中匿名块的写法

前端之家收集整理的这篇文章主要介绍了PostgreSQL数据库中匿名块的写法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Postgresql数据库中匿名块的写法
注意:
1.本文的写成,得到了山东瀚高公司技术总监Lu和Postgresql数据库迁移专家Han的大力支持,在此深表感谢.
2.参考网址: https://www.postgresql.org/docs/9.6/static/sql-do.html
test=# DO $$DECLARE  i record;
test$# BEGIN
test$#   FOR i IN 1..10
test$#   LOOP 
test$#   execute 'select loop_insert(1)';
test$# END LOOP;
test$# END$$;
DO
test=# 
看匿名块的执行效果:
test=# select count(*) from lineitem;
 count 
-------
  7000
(1 row)


test=# select count(*) from lineitem;
 count 
-------
 17000       ------------->>>>匿名块插入了10000条记录.
(1 row)


test=# 
原文链接:https://www.f2er.com/postgresql/194062.html

猜你在找的Postgre SQL相关文章