Skip
Arish's avatar

139. Practice - Static Values


Exercise: Add Status

Add 'Active' status to all students.

Solution

sql
1SELECT name, course, 'Active' AS status FROM students;