G
gabriel
Hi everybody!
I have a table and a query and would like to create a query with SQL, which
has all the fields from the table plus one exlusive field from the query.
As I understood this is done by the INNER JOIN function and should look
similar to this approach:
SELECT
FROM Consulta2005 INNER JOIN ATRFazenda2
ON Consulta2005.Fazenda = ATRFazenda2.Fazenda;
Both table and query have an identical field (Fazenda).
I would like to know, what I have to write in the SELECT line to create the
query I mentioned above.
Many thanks in advance
gabriel
I have a table and a query and would like to create a query with SQL, which
has all the fields from the table plus one exlusive field from the query.
As I understood this is done by the INNER JOIN function and should look
similar to this approach:
SELECT
FROM Consulta2005 INNER JOIN ATRFazenda2
ON Consulta2005.Fazenda = ATRFazenda2.Fazenda;
Both table and query have an identical field (Fazenda).
I would like to know, what I have to write in the SELECT line to create the
query I mentioned above.
Many thanks in advance
gabriel