In Sql Which Of The Following Statement Is Used To #332
In SQL, which of the following statement is used to conditionally drop a table 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 Table - Quiz No.1.
In SQL, which of the following statement is used to conditionally drop a table that already exists?
DROP TABLE IF EXISTS table_name
DROP TABLE IF NOT EXISTS table_name
DROP TABLE EXISTS table_name
DROP TABLE NOT EXISTS table_name