postgresql 存儲函數調用變量的3種方法小結

一、假設有表student,字段分別有id,remark,name等字段。

二、寫一個存儲函數,根據傳過去的變量ID更新remark的內容。

調用該存儲函數格式如下:

select update_student(1);

三、存儲函數示例如下:

CREATE OR REPLACE FUNCTION public.update_student(id integer)
 RETURNS text AS
$BODY$
declare sql_str_run text; 
BEGIN
/*
--method 1
 select 'update student set remark ='''|| now() ||''' where student.id = '|| $1 into sql_str_run ;
 execute sql_str_run;
 --method 2
 execute 'update student set remark =now() where student.id=$1' using $1;
*/
 --method 3 
 update student set remark =now() where student.id=$1;
 
 return 'update is ok' ;
end
$BODY$
 LANGUAGE plpgsql VOLATILE

以上三種方法都可以實現同樣的效果,實際應用中,可以結合場景來使用。比較簡單的情況下直接用method 3。

比如,表名、字段名本身是變量,那麼method 3 就無法實現,需要根據method 1或method 2來實現。

method 1或method 2 有什麼區別呢?

如果需要拼的變量可以直接獲取的,則用method2即可。如果變量本身也是需要需要通過函數或語句的計算來獲得,一般建議用method 1,先拼成一個字符串,再調用execute來實現。

補充:postgresql存儲函數/存儲過程用sql語句來給變量賦值

–定義變量

a numeric;

方式一:

select sqla into a from table1 where b = '1' ; --這是sql語句賦值

方式二:

sql1:= 'select a from table1 where b = ' '1' ' ';
execute sql1 into a; --這是執行存儲函數賦值

以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。如有錯誤或未考慮完全的地方,望不吝賜教。

推薦閱讀: