gpt4 book ai didi

sql - if 语句中的意外 IF(在 END IF 中)

转载 作者:行者123 更新时间:2023-11-29 14:11:50 25 4
gpt4 key购买 nike

我已阅读PostgreSQL control structure page我决定做一个测试:

IF 1 = 0 THEN
INSERT INTO my_table (num_a, num_b)
VALUES (1, 1);
END IF;

我单独测试了 insert 语句,它工作正常。但是当我在 psql 中运行上面的代码时,我得到:

ERROR:  syntax error at or near "IF" 
LINE 1: END IF;
^

有什么问题吗?

最佳答案

根据您的评论,您可能缺少一个 do block :

http://www.postgresql.org/docs/current/static/sql-do.html

DO $$
BEGIN
IF 1 = 0 THEN
INSERT INTO my_table (num_a, num_b)
VALUES (1, 1);
END IF;
END;
$$ language plpgsql;

或者将其放入 function .

关于sql - if 语句中的意外 IF(在 END IF 中),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17069017/

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