Oracle 23ai database now allows you to use IF EXISTS and IF NOT EXISTS. e.g. CREATE TABLE IF NOT EXISTS demo (d_id number, d_name VARCHAR2(10)); DROP TABLE IF EXISTS demo; This helps with portability of code across vendors and also
Oracle 23ai database now allows you to use IF EXISTS and IF NOT EXISTS. e.g. CREATE TABLE IF NOT EXISTS demo (d_id number, d_name VARCHAR2(10)); DROP TABLE IF EXISTS demo; This helps with portability of code across vendors and also