I am trying to solve this problem:
If a table exists, drop the table, otherwise continue processing.
For example, if table X exists, then drop table X. How would I do
this in SQL? I can query the pg_tables table to see which tables
exist, but I'm looking for an If-Else construct in SQL.
Thanks in advance,
Rick