• DROP [database] -- DBA only
  • DROP TABLE mytablename; # mytablename is now gone
  • DROP TABLE IF EXISTS mytablename; # mytablename is now gone, and you won't get a warning if it wasn't there in the first place
  • DROP TABLE IF EXISTS car, manufacturer, service_call;
  • DROP TABLE syntax reference
  • NEXT
    PREVIOUS
    Master Index