I have a table in a Postgres that stores 10x10 matrices, where each row has it's own entry, defined as:
id, matrix_id, row_id, col1, col2, col3...
I'd like to compute the trace (sum of main diagonal) for every matrix identified by its matrix_id, that is, for every matrix_id, I would like to get (col1 where row_id=1) + (col2 where row_id=2) + (col3 where row_id=3)...
I've tried grouping it by matrix_id but then I cannot use subqueries, something like:
select matrix_id, (select col1 where row_id=1) + (col2 where row_id=2) +
(col3 where row_id=3) ... from matrix group by matrix_id;
but it doesn't work this way.
How could I do that?