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.

Answer: B. single or multipleThe 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…

  1. A.

    only one

  2. B.

    single or multiple

  3. C.

    at least two

  4. D.

    at the most five

Attempted by 748 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.

Explore the full course: Up Police Computer Operator

Loading lesson…