C-06-Q076mediumsingle_mcq
Why should extra conditions be added to a query like DELETE FROM student WHERE name = 'Fardeem Munir';?
Why should extra conditions be added to a query like DELETE FROM student WHERE name = 'Fardeem Munir';?
- aTo make the query run faster
- bBecause it would delete all records that have that name, so extra conditions ensure only the intended record is removed
- cBecause DELETE cannot use WHERE
- dTo convert it to an UPDATE query