Exercise: Update Two Columns
Update course and grade for student 5.
Solution
sql
1UPDATE students
2SET course = 'Python', grade = 'A'
3WHERE id = 5;
Update course and grade for student 5.
1UPDATE students
2SET course = 'Python', grade = 'A'
3WHERE id = 5;