gpt4 book ai didi

postgresql - 如何在 pgAdmin 中执行 pgsql 脚本?

转载 作者:行者123 更新时间:2023-11-29 11:12:08 24 4
gpt4 key购买 nike

我想直接从 pgAdmin 编辑器 UI 执行一些 pgScript

FOR i IN 1..10 LOOP
PRINT i; -- i will take on the values 1,2,3,4,5,6,7,8,9,10 within the loop
END LOOP;

但我总是得到

[ERROR    ] 1.0: syntax error, unexpected character

我也试过用do$$...$$包裹代码,但没有解决问题。

最佳答案

除了Clodoaldo Neto's Answer .你也可以试试这个

DO
$$
BEGIN
FOR i IN 1..10 LOOP
RAISE NOTICE '%', i; -- i will take on the values 1,2,3,4,5,6,7,8,9,10 within the loop
END LOOP;
END
$$

关于postgresql - 如何在 pgAdmin 中执行 pgsql 脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26117622/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com