How to delete or drop all tables from a SQL Server database using just a SQL query.
The following SQL will delete all the tables and their associated information from a database. The only downside to this is that you cannot perform a rollback, so you need to make sure this is what you want to do….
Read more