I want to combine multiple values just by doing a select. I have this:
| id | student_id | key | value |
| 1 | 1 | dad_name | Leonel |
| 2 | 1 | mom_name | Mireya |
| 3 | 1 | school | Agape |
And to convert it to this:
| id | student_id | dad_name | mom_name | school |
| 1 | 1 | Leonel | Mireya | Agape |