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