Question: Which is the right query to change the name of the Philosophy Pandas team to the Philosophy Parrots?

  1. `UPDATES Students SET team = 'Philosophy Parrots' WHERE team = 'Philosophy Pandas';`
  2. `UPDATES Students SET team = `Philosophy Parrots`WHERE team =`Philosophy Pandas`;`
  3. `UPDATES Students SET team = "Philosophy Parrots" WHERE team = "Philosophy Pandas";`
  4. `UPDATES Students SET team = Philosophy Parrots WHERE team = Philosophy Pandas;`

Answer: The correct answer of the above question is Option A:`UPDATES Students SET team = 'Philosophy Parrots' WHERE team = 'Philosophy Pandas';`