postgres 在查询面板直接执行查询语句while
Posted qianxunman
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了postgres 在查询面板直接执行查询语句while相关的知识,希望对你有一定的参考价值。
之前一直以为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的主要内容,如果未能解决你的问题,请参考以下文章
求高手帮忙解决数据库问题,pgsql connection 在PGSQL中,输入select查询语句,执行,报如下错误: