Exercise: Add Status Add 'Active' status to all students. Solution sqlCopy1SELECT name, course, 'Active' AS status FROM students;