Hi Guys ,
i have faced a sql command problem. That is currently i have 2 different table
a) Select ID, Name from Table1 where ID >=1 and ID ID <=3
ID | Name
1 | Alan
2 | Amy
3 | Andrew
b) Select ID,Sum(Points) as [Total] from Table2 where
ID >=1 and ID <=3
[No Record From ID > =1 until ID <=3]
My question is how to combine both queries so i can make my table result at below:
ID | Name | Total
1 | Alan | 0
2 | Amy | 0
3 | Andrew | 0