postgresql 赋值注意

前端之家收集整理的这篇文章主要介绍了postgresql 赋值注意前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

postgresql 赋值注意

函数里面赋值需要注意以下

定义变量是在begin前

变量赋值时使用 :=

select 中赋值使用into

如下:

create or replace...

return i int

declare

value int;

begin

value:=100;

select id into value from table_name

end

原文链接:https://www.f2er.com/postgresql/196902.html

猜你在找的Postgre SQL相关文章