Let's suppose we have three tables
T1
ID |Type| Class | Points
111|1 |a101 | 12
111|1 |b104 | 10
112|2 |a112 | 40
118|1 |a245 | 30
186|2 |c582 | 23
T2(Data for Type = 1 only)
ID |Type|EPoints
111|1 |4
118|1 |3
T3(Data for Type = 2 only)
ID |Type|EPoints
112|2 |9
186|2 |15
And we want to have a View which will show ID,Type,sum(Points)+Epoints for example
ID |Type| Points
111|1 | 26
112|2 | 49
118|1 | 33
186|2 | 38
How can I do that?