MySQL Forums
Forum List  »  Microsoft Access

Re: sql from access-pls analyze this error
Posted by: sunil kattathara
Date: July 08, 2006 12:48AM

Dear Bob,

in first example
FROM OrderDetails AS d
in second example
FROM Table1 AS t1

i understand...tables and quries can be represented using short alphanumaric representations
now since Table1 AS t1 already said in script...can we say...or logicaly right to say

SELECT t1.ContactAutoID, t1.Referedby AS Referedby1, t1a.Referedby AS Referedby2, t1b.Referedby AS Referedby3
FROM Table1 AS t1, t1a, t1b
LEFT JOIN t1a ON t1.Referedby = t1a.ContactAutoID
LEFT JOIN t1b ON t1a.Referedby = t1b.ContactAutoID;

thank you
Sunil

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: sql from access-pls analyze this error
1548
July 08, 2006 12:48AM


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.