I have this query which I cannot get to work :
MyQuery$ = "Select
transactions.id,
transactions.transdate,
transactions.description,
votes.votename as firstvotename,
votes.votename as secondvotename
from
(((Transactions
LEFT JOIN Votes ON Transactions.paidby=Votes.voteno)
LEFT JOIN Votes ON Transactions.paidfor=Votes.voteno)
I would appreciate help, thanks
MyQuery$ = "Select
transactions.id,
transactions.transdate,
transactions.description,
votes.votename as firstvotename,
votes.votename as secondvotename
from
(((Transactions
LEFT JOIN Votes ON Transactions.paidby=Votes.voteno)
LEFT JOIN Votes ON Transactions.paidfor=Votes.voteno)
I would appreciate help, thanks