purge database file if exists code example
Example 1: mysql drop database if exists
DROP DATABASE IF EXISTS database_name;
Example 2: Sql query to force the database to be drop
BY LOVE SINGH
USE master;
GO
ALTER DATABASE OnlineRestaurant2
SET SINGLE_USER
WITH ROLLBACK IMMEDIATE;
GO
DROP DATABASE OnlineRestaurant2;