differences between drop and truncate in mysql

differences between drop and truncate in mysql

DROP TABLE table_name -it will delete the table and its data.

TRUNCATE TABLE table_name -it will delete the data of the table, but not the table definition.