In MySQL, a single DROP TABLE statement can name several tables to be dropped simultaneously : Drop Table « Table Index « SQL / MySQL






In MySQL, a single DROP TABLE statement can name several tables to be dropped simultaneously

       


DROP TABLE t1, t2, t3;

   
    
    
    
    
    
    
  








Related examples in the same category

1.Dropping Databases
2.Drop table if exists
3.Add an IF EXISTS clause to the drop table statement
4.Drop more than one table at single statement