Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What's the Postgres 8.4.8 equivalent of

DO $$
BEGIN
IF NOT EXISTS (...) THEN
    EXECUTE ...;
END IF;
END; $$;

?

share|improve this question

1 Answer

up vote 1 down vote accepted
create function f() returns void as $$
BEGIN
IF NOT EXISTS (...) THEN
    EXECUTE ...;
END IF;
END;
$$ language plpgsql;

select f();
share|improve this answer
Thanks. That looks like a function definition; doesn't the DO block also execute the function? IOW, wouldn't I need also an explicit call to f? – kjo Mar 7 at 0:22
@kjo Not a call to f but a select. Edited. – Clodoaldo Neto Mar 7 at 0:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.