Multiple choice The UPDATE SQL clause can update only one row at a time update more than one row at a time delete more than one row at a time delete only one row at a time Reveal answer Fill a bubble to check yourself B Correct answer Explanation The UPDATE statement modifies all rows that satisfy the WHERE clause. If the WHERE condition matches multiple rows (or is omitted entirely), the UPDATE affects all matching rows simultaneously, not just one.