American Airlines training analytics tracks student performance across multiple subjects. Write a PostgreSQL query to identify students whose sum of all recorded subject scores is greater than 200.
students with subject_scores using the student identifier.| Column | Type | Description |
|---|---|---|
| student_idPK | INTEGER | Unique student identifier |
| student_name | VARCHAR(100) | Student's full name |
| Column | Type | Description |
|---|---|---|
| score_idPK | INTEGER | Unique score record identifier |
| student_id | INTEGER | Student associated with the score |
| subject_code | VARCHAR(20) | Training subject code |
| score | INTEGER | Subject score |