Which Of The Following Statement Is Used To Drop Multiple #331
Which of the following statement is used to drop multiple tables at once in SQL?
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.
Which of the following statement is used to drop multiple tables at once in SQL?
DROP TABLE table_name1&table_name2&…table_namen;
DROP TABLE table_name1, table_name2,…table_namen;
DROP table_name1, table_name2,…table_namen;
DROP TABLE table_name1 table_name2 …. table_namen;