Hi,
I have three tables I need to join. My db is normalized and I don't want to store redundant data.
Here is my query in normal SQL
SELECT * FROM
tblA,tblB,tblC
WHERE
tblA.f_ID = tblB.ID AND
tblB.f_ID = tblC.ID
In you documentation, I can only find info about direct inner JOINs between 2 tables, or joins between 2 tables and a multi-table.
How would you write out my above query in your API?
Thanks,
Nathan
I have three tables I need to join. My db is normalized and I don't want to store redundant data.
Here is my query in normal SQL
SELECT * FROM
tblA,tblB,tblC
WHERE
tblA.f_ID = tblB.ID AND
tblB.f_ID = tblC.ID
In you documentation, I can only find info about direct inner JOINs between 2 tables, or joins between 2 tables and a multi-table.
How would you write out my above query in your API?
Thanks,
Nathan