Skip to content

Instantly share code, notes, and snippets.

@DEKHTIARJonathan
Created November 22, 2016 12:10
Show Gist options
  • Save DEKHTIARJonathan/d362f785b113b3a689cb754aadad147d to your computer and use it in GitHub Desktop.
Save DEKHTIARJonathan/d362f785b113b3a689cb754aadad147d to your computer and use it in GitHub Desktop.
Delete if exists table in Oracle
BEGIN
EXECUTE IMMEDIATE 'DROP TABLE table_name';
EXCEPTION
WHEN OTHERS THEN NULL;
END;
/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment