Subject | Re: [IBO] Searching and column aliases |
---|---|
Author | Geoff Worboys |
Post date | 2002-07-22T06:48:16Z |
> How can I avoid using aliases if my query is returning two columnsSELECT A.NAME, B.NAME
> with the same name from two different tables?
FROM A
JOIN B ON ...
All fields will be referred to internally by their full table
qualified name. In your Fields* definitions you have something
like...
A.NAME=A Name
B.NAME=B Name
If you need to hook these one of these fields to a control you do
it with the full table qualified name.
--
Geoff Worboys
Telesis Computing