Hi, I have tables A and B. A has data like an ID, and some other fields, B has the same ID, and other fields. I'm trying to produce a view that combines the two horizontally to make it easier for reporting for some of my users. In essence, A has:
1
2
3
B has
1,10
1,20
1,30
2,5
2,6
2,7
I'd...