Create a report showing Math, Science, and English scores as columns for every student.
| student_id(INTEGER) | student_name(VARCHAR) |
|---|---|
| 1 | Alice |
| 2 | Bob |
| student_id(INTEGER) | subject_name(VARCHAR) | score(INTEGER) |
|---|---|---|
| 1 | Math | 95 |
| 1 | Science | 88 |
| 2 | Math | 70 |
| 2 | English | 85 |
| subject_id(INTEGER) | subject_name(VARCHAR) |
|---|---|
| 101 | Math |
| student_id(INTEGER) | student_name(VARCHAR) | math_score(INTEGER) | science_score(INTEGER) | english_score(INTEGER) |
|---|---|---|---|---|
| 1 | Alice | 95 | 88 | 0 |
| 2 | Bob | 70 | 0 | 85 |