Multiple choice technology databases

  1. Which SQL statement is used to delete data from a database?

  1. DELETE

  2. COLLAPSE

  3. REMOVE

  4. None

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The DELETE statement is used to remove rows from a database table. You can delete specific rows using a WHERE clause or all rows if no condition is specified. Options B (COLLAPSE) and C (REMOVE) are not valid SQL statements.