Can someone please tell me where the error is in this query.
SELECT
incomeforecast.id,
mydate,
incomevotes.votename as incomevotename,
origin,
incomeforecast.refno,
amount,
bankvotes.votename as bankvotename
FROM
incomeforecast
LEFT JOIN
(votes as incomevotes on incomeforecast.voteno=incomevotes.voteno)
left join votes as bankvotes on incomeforecast.bankvoteno=bankvotes.voteno
WHERE
bankvotes.bankvotename='Pro Housing Bank - 405 119 0248' order by 1 desc
Thank you
SELECT
incomeforecast.id,
mydate,
incomevotes.votename as incomevotename,
origin,
incomeforecast.refno,
amount,
bankvotes.votename as bankvotename
FROM
incomeforecast
LEFT JOIN
(votes as incomevotes on incomeforecast.voteno=incomevotes.voteno)
left join votes as bankvotes on incomeforecast.bankvoteno=bankvotes.voteno
WHERE
bankvotes.bankvotename='Pro Housing Bank - 405 119 0248' order by 1 desc
Thank you