我在postgres中有一个表格如下:
id score
1 23
2 4
3 42
4 21
在普通的SQL中,我可以声明一个变量,并根据select语句的结果为其赋值:
declare @this_score int;
select @this_score = score from scores where id = 3;
print @test_int;
这输出42.是否可以在postgres中以这种方式分配变量?
答案 0 :(得分:3)
PostgreSQL的SQL方言没有扩展脚本功能;相反,它希望你使用PL / PgSQL。在这方面,它更像是Oracle,而不是微软的T-SQL或MySQL。
使用DO
块来运行PL/PgSQL
,或者如果想要返回值,则创建并运行一个函数。
e.g。
DO
$$
DECLARE
this_score int;
BEGIN
SELECT score FROM scores WHERE id = 3 INTO this_score;
RAISE NOTICE 'this_score is: %', this_score;
END;
$$;