Informatics Practices

Identify the SQL command used to delete a relation (table) from a relational database.

  1. DROP TABLE
  2. REMOVE TABLE
  3. DELETE TABLE
  4. ERASE TABLE

SQL Queries

2 Likes

Answer

DROP TABLE

Reason — The DROP TABLE command in SQL is used to delete an entire relation (table) from a relational database, removing its structure and all data permanently.

Answered By

1 Like


Related Questions