I have the following structure:
TABLE: Field
ID | Name
---|--------
1 | Email
2 | City
And
TABLE: Answers
ID | Field | Value | User
-----------------------------------
1 | 1 | m1@mail.com | 3
2 | 2 | abc | 3
3 | 1 | m2@mail.com | 4
4 | 2 | qwe | 4
I want to select:
Email | City
-------------------
m1@mail.com | abc
m2@mail.com | qwe
How can I do it?

Usercolumn to simulate this... – BrunoLM Jan 13 '11 at 17:00Fields. I could have more fields and would like to select them as well. I want to select all fromFieldsas the header and theAnswersas the values... – BrunoLM Jan 13 '11 at 17:04