In Postgresql, how can I do a condition to create a table only if it does not already exist?
Code example appreciated.
http://www.postgresql.org/docs/8.2/static/sql-droptable.html
DROP TABLE [ IF EXISTS ] name [, ...] [ CASCADE | RESTRICT ]