The DELETE SQL command can be used to delete ______ tuple(s) from the tables…
2022
The DELETE SQL command can be used to delete ______ tuple(s) from the tables of the database.
- A.
only one
- B.
single or multiple
- C.
at least two
- D.
at the most five
Attempted by 212 students.
Show answer & explanation
Correct answer: B
The SQL DELETE command removes rows, or tuples, from a table. If the WHERE clause matches one row, it deletes one tuple; if it matches many rows, it deletes multiple tuples. Without a WHERE clause, it can delete all tuples in the table. Therefore, option B is correct.