GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Oracle  >  Database Administration

 Print  |  
Question:  Is it possible to drop more than one table using single sql statement? if yes then how.



July 07, 2009 18:43:56 #5
 skranof   Member Since: July 2009    Total Comments: 1 

RE: Is it possible to drop more than one table using single sql statement? if yes then how.
 
I assume you already figured this out, but if not

simply

use dbName
go

drop table table1, table2, table3
     

 

Back To Question