Below is my query and the error it is generating. Access97 is passing a query to SQL Server 7.
SELECT dbo.tblMyTable.*
FROM dbo.tblMyTable INNER JOIN dbo.tblMyTable ON tblFromAccess.PDATE = dbo.tblMyTable.PDATE;
The error:
[Micorsoft][ODBC SQL Server Driver][SQL Server]TABLES ; ‘dbo.tblMyTable’ and ‘ dbo.tblMyTable’ have the same exposed names. Use correlation names to distinguish them. (#1013)
This is my first passthrough query and I really haven’t written many queries with SQL.
Thanks