Truncate Table
This would allow you to quickly and easily delete all of the records in a table. You can do this in most SQL databases.
The reason that it is so fast is that the process also simply drops any indexes on the table as well – so it doesn’t have to update the index as each record is deleted.