Please can i have multiple innner join statements in mysql??
tried to combine two but got a syntax error.
this is a sample of what i did
SELECT invoice.transid. invoice.airline, invoice.agent, airline.name, agent.name from invoice INNER JOIN airline, agent
WHERE invoice.airline=airline.name and invoice.agent=agent.name