How will you change "Hansen" into "Nilsen" in the LastName column in the Persons Table?
Correct Answer: UPDATE Persons SET LastName = 'Nilsen' WHERE LastName = 'Hansen'
Explanation:
Note: This Question is unanswered, help us to find answer for this one
More MySQL MCQ Questions