pgsql 變量賦值方法及註意事項
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
以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。如有錯誤或未考慮完全的地方,望不吝賜教。
推薦閱讀:
- postgresql 存儲函數調用變量的3種方法小結
- postgresql 實現replace into功能的代碼
- Oracle觸發器和程序包的基本介紹
- PostgreSQL自動更新時間戳實例代碼
- postgresql 循環函數的簡單實現操作