I have records in few rows, but need to get them all into one with query.
Here it is:

I have records in few rows, but need to get them all into one with query.
Here it is:

SELECT MAX(rbr) maxRBR,
id, date,
MAX(pr1) maxPr1,
MAX(pr2) maxPr2,
....
FROM tableName
GROUP BY id, date
normalization...