Hi,I've reached the limit of my already limited SQL coding skills, and wonder if someone could help me with the following please?I have two tables of data, both in the same format, e.g.Table1:UniqueID FirstName LastName Value1111 Steve Smith 1501112 Anthony Craven 3551113 Mary Greene 5001114 Jame Grayson 55
Table2:UniqueID FirstName LastName Value1111 Steve Smith 2001113 Mary Greene 1801116 Stuart Pearce 4501117 Richard Tong 605
What I want to do is get a list of results summing the values from both tables where theres a matching ID present, e.g.UniqueID FirstName LastName TotalValue1111 Steve Smith 3501113 Mary Greene 680
So the query has found matching UniqueID values in both tables and then summed the Value column for both.Any help on how I can code this is much appreciated.Thanks!