Matriz agregada do Postgresql

Oi eu tenho duas tabelas

Student
--------
Id  Name
1   John    
2   David
3   Will

Grade
---------
Student_id  Mark
1           A
2           B
2           B+
3           C
3           A

É possível fazer com que o Postgresql nativo selecione para obter resultados como este:

Name    Array of marks
-----------------------
'John',     {'A'}
'David',    {'B','B+'}
'Will',     {'C','A'}

Masnão como isso

Name    Mark
----------------
'John',     'A'
'David',    'B'
'David',    'B+'
'Will',     'C'
'Will',     'A'

questionAnswers(4)

yourAnswerToTheQuestion