Hi,
I have a 'persons' table, an 'answer' table and a 'token' table.
The token table contains matching unique identifiers from the persons table and the answers table.
In my query I want to join the persons table with the answers but I don't know how to proceed since they don't contain matching identifier and I would have to check the token table somehow in the query.
I did try to create a trigger in mysql admin to update the persons table with the corresponding token value but my query resulted in a "#1419 - You do not have the SUPER privilege". As this failed I gather that I have to create this query or is there a better solution?
Cheers
Adam