码迷,mamicode.com
首页 > 其他好文 > 详细

postgres 在查询面板直接执行查询语句while

时间:2020-07-17 19:32:52      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:ice   big   begin   ide   end   字符串   notice   declare   insert   

之前一直以为while 语句只能在函数中执行,今天算是涨知识了.

DO $$
DECLARE
i INTEGER := 1;
identityId BIGINT := 200000000001;
BEGIN
  WHILE i < 100 LOOP
    identityId = identityId + 1;
  raise notice ‘%‘,i;
      -- INSERT 语句
      -- 将字符串转为 uuid cast (‘057b8c51-f62f-4260-bdbb-‘ || identityId as uuid)
							 
    i = i + 1;
  END LOOP;
END $$;

postgres 在查询面板直接执行查询语句while

标签:ice   big   begin   ide   end   字符串   notice   declare   insert   

原文地址:https://www.cnblogs.com/qianxunman/p/13332167.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!