时间:2021-04-24 09:33:20 | 栏目:PostgreSQL | 点击:次
:=,赋值,比如user_id := 20;
select into 赋值,比如
SELECT INTO myrec * FROM emp WHERE empname = myname
select ...into ...
使用示例:
一个变量,select 30 into user_id;
多个变量,select 20,30,50 into a,b.c;
比如,拼接字符中时,直接into即可。
select 'update student set remark ='''|| now() ||''' where student.id = '|| $1 into sql_str_run ; execute sql_str_run;
补充:postgresql 赋值注意
在函数里面赋值需要注意以下
定义变量是在begin前
变量赋值时使用 :=
select 中赋值使用into
如下:
create or replace... return i int declare value int; begin value:=100; select id into value from table_name end