I have two tables:
Table: Names Fields: ID, Name
Table: Info Fields: ID, Key, Data
Data looks like this:
Names:
1, Joe
2, George
Info:
1, Address, 121 Main Street
1, City, Smithfield
1, State, OH
2, Address, 345 Another Street
I need a query that will show each name in Names along with any data associated with that name from Info.
Suggestions?