MySQL Drop vs Delete

DELETE FROM tbl_name; -- removes rows
DROP TABLE tbl_name;  -- removes tables and DB
Fine Fox