OD
(Choose 1 answer)
How can you delete all of the rows where the "name" is "Ruby" in the Cats Table?
A. DELETE FROM Cats WHERE name = 'Ruby'
B. DELETE name='Ruby' FROM Cats
C. DELETE FROM Cats WHERE name == 'Ruby'
D. DELETE ROW name='Ruby' FROM Cats
Exit 28