I have one table (t1)
id score
22 1
35 3
51 4
and another (t2)
id score
22 2
35 1
10 5
I want to create the following table using an SQL query.
id score
10 5
22 3
35 4
51 5
i.e. I need to merge the id and add the scores together.
Ideally in ANSI SQL.