Multiple choice general knowledge

In Oracle PL/SQL, which query is used to drop a table called "order"?

  1. drop table order;

  2. drop order;

  3. drop order table;

  4. 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;