List the differences between the following MySql commands.
Drop is deleting the table. I would drop the table if I didn't need it anymoredelete to do a delete (of specific rows) with a query.I rarely "delete" anything from my databases. I generally put a flag column such as deleted as a boolean value. I check for that. If its true, I don't present that data.