Which statement deletes a table named Inventory from the Products database?
:
DROP TABLE Products.Inventory;
USE Products; DROP TABLE Inventory;
USE Products.Inventory; DROP TABLE Inventory;
This statement first switches to the Products database using the USE command and then drops the Inventory table using the DROP TABLE command.
USE
DROP TABLE
USE Products; DELETE Inventory;