Which Of The Following Statement Is Used To Conditionally Drop #317
Which of the following statement is used to conditionally drop a database that already exists?
This multiple choice question (MCQ) is related to the book/course gs gs115 Structured Query Language. It can also be found in gs gs115 SQL Database - SQL Drop DB - Quiz No.1.
Which of the following statement is used to conditionally drop a database that already exists?
DROP DATABASE IF NOT EXISTS database_name
DROP DATABASE IF EXISTS database_name
DROP DATABASE EXISTS database_name
DROP DATABASE NOT EXISTS database_name