IN with Subquery sqlCopy1SELECT * FROM students 2WHERE course_id IN ( 3 SELECT id FROM courses WHERE category = 'Programming' 4);