pgsql 变量赋值方法及注意事项
时间:2021-04-24 09:33:20|栏目:PostgreSQL|点击: 次
1、网上一般说的方法如下:
:=,赋值,比如user_id := 20;
select into 赋值,比如
SELECT INTO myrec * FROM emp WHERE empname = myname
2、我今天介绍的是一个更通用更实用的赋值方法
select ...into ...
使用示例:
一个变量,select 30 into user_id;
多个变量,select 20,30,50 into a,b.c;
3、在存储函数中(即存储过程中)还有Into也很常用。
比如,拼接字符中时,直接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