Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Postgres8.4.8に相当するものは何ですか
DO $$ BEGIN IF NOT EXISTS (...) THEN EXECUTE ...; END IF; END; $$;
?
create function f() returns void as $$ BEGIN IF NOT EXISTS (...) THEN EXECUTE ...; END IF; END; $$ language plpgsql; select f();