Indexes, tables, and databases can easily be deleted/removed with the DROP statement.
The DROP INDEX statement is used to delete an index in a table.
The DROP TABLE statement is used to delete a table.
The DROP DATABASE statement is used to delete a database.
What if we only want to delete the data inside the table, and not the table itself?
Then, use the TRUNCATE TABLE statement:
Your Query was successfully sent!