Multiple choice general knowledge In Oracle PL/SQL, which query is used to drop a table called "order"? drop table order; drop order; drop order table; drop "order"; Reveal answer Fill a bubble to check yourself A Correct answer Explanation In Oracle PL/SQL, the DROP TABLE statement is used to remove a table and all its data permanently. The correct syntax is DROP TABLE followed by the table name. Option A shows the correct syntax: drop table order;