Hi,
i have been cracking my head over SQL left join and union
but can't get into the right palce.
I have a single table - TableA
Auto-Key Group Location Value
1 A Loc1 2.00
2 A Loc2 1.00
3 A Loc3 3.00
4 B Loc1 1.00
5 B Loc2 1.00
6 B Loc3 1.00
How to I make a join table like this:
Location Group_A_Value Group_B_Value
Loc1 2.00 1.00
Loc2 1.00 1.00
Loc3 3.00 1.00
Thanks
Dex