Question:What is the proper syntax for deleting a table?
A DELETE DATABASE IF EXISTS databasename; B DROP TABLE tablename; C DELETE TABLE tablename; D DROP DATABASE IF EXISTS databasename;
+ AnswerB
+ Report