Forum Moderators: phranque
SELECT
e.exhibitor_name from exhibitors e, badges b where e.exhibitor_id NOTIN b.exhibitor_id
Any help would be greatly appreciated.
mySQL doesn't support subselects or unions at this time.
It was a real crisis until I learned how to write it in reverse:
SELECT distinct categ,budgets.code FROM budgets left join budtrans on budgets.code =budtrans.code and budgets.schcode = budtrans.schcode WHERE budgets.schCode = 'WHS' and budtrans.code is null
This returns the same data, but without the subselect.