Answers for "drop database if exists sql server"

SQL
8

mysql drop database if exists

DROP DATABASE IF EXISTS database_name;
Posted by: Guest on September-04-2020
4

sql server drop table if exists

IF OBJECT_ID('dbo.Scores', 'U') IS NOT NULL DROP TABLE dbo.Scores;
Posted by: Guest on April-22-2020
4

how to drop a database in sql server when it is in use

BY LOVE SINGH

USE master;
GO
ALTER DATABASE OnlineRestaurant2 
SET SINGLE_USER 
WITH ROLLBACK IMMEDIATE;
GO
DROP DATABASE OnlineRestaurant2;
Posted by: Guest on June-25-2020
0

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;
Posted by: Guest on May-07-2020

Code answers related to "drop database if exists sql server"

Code answers related to "SQL"

Browse Popular Code Answers by Language