Re: Need help with Access SQL
You have some tables in a single SELECT statement, so you should say haw tables are joined.
For example:
SELECT o.id, c.name
FROM client AS c, order AS o
WHERE c.id = o.client_id; -- tables are joined by these columns
See the SQL reference about joining tables.
Devart Company,
MySQL management tools
http://www.devart.com/dbforge/mysql/
Subject
Views
Written By
Posted
3825
November 24, 2009 03:27PM
Re: Need help with Access SQL
2132
November 27, 2009 03:33AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.