2017-04-20 1 views

답변

1

간단한 예 :

DO $$ 
DECLARE 
    myVar VARCHAR := myValue; 
BEGIN 
    INSERT INTO table(user) VALUES (myVar); 
END $$; 
관련 문제