最近更新时间: 2025-02-18 16:02:00
postgres=# create or replace procedure p_para(a_int integer) as $$ begin raise notice 'a_int = %',a_int; end; $$ language plpgsql; CREATE PROCEDURE postgres=# call p_para(1); NOTICE: a_int = 1 CALL postgres=#