Skip
Arish's avatar

268. Practice - Multiple UPDATE


Exercise: Update Two Columns

Update course and grade for student 5.

Solution

sql
1UPDATE students 
2SET course = 'Python', grade = 'A'
3WHERE id = 5;