Tricky way to drop multiple table in oracle
Droping a table in oracle is very simple task. With just one row of sql statement you can drop a table. For example you want to drop [cci]school[/cci] table in database. Use this simple sql statement, the table will be dropped. [sourcecode lang=”sql”] DROP TABLE school; [/sourcecode] Dropping multiple tables Read more…