Multiple choice technology databases Delete from Employee where grade = ‘Y’” deletes All rows of the Employee table Rows of the Employee table where the set grade is ‘Y’ Delete 1 row Nothing will be deleted Reveal answer Fill a bubble to check yourself B Correct answer Explanation The DELETE statement with a WHERE clause specifically removes only those rows that satisfy the condition. This statement will delete all employee records where the grade column equals 'Y', leaving other rows untouched.