I don't know if this joining construct is allowed. I searched the Internet but I haven't found any information about it.
I want to build a SQL query and I want to join two tables to the main table in the from clause. Example:
SELECT*
FROM OrderData OD
Inner JOIN Customer C, Address A
ON C.ID = OD.ID
AND A.ID = OD.ID
Is there any chance this might work?