notes
with its contentDROP TABLE notes;
If the table does not exist, it will generate the following error:#1051 - Unknown table 'notes
Deletes several tables at the same timeDROP TABLE notes, students;
Deletes the table if exists, otherwise it will not generate an errorDROP TABLE IF EXISTS notes;
Note: There is no undo. Once we delete, the table is gone