Subject | Re: [firebird-support] Slow Query |
---|---|
Author | Aage Johansen |
Post date | 2004-03-27T20:34:02Z |
On Sat, 27 Mar 2004 15:50:25 +0000 (UTC), Alois Maier wrote:
select ...
from TABLE1 T1 join TABLE2 on T1.FIELD1 = T2.FIELD2
group by ...
with selection criteria only in the WHERE clause.
--
Aage J.
> ...Consider using the 'explicit join' style:
> Right, a "WHERE Table.field2=table2.field2" was missing.
> I definitely did not want to join everything. I was not interested in
> the cartesian product.
select ...
from TABLE1 T1 join TABLE2 on T1.FIELD1 = T2.FIELD2
group by ...
with selection criteria only in the WHERE clause.
--
Aage J.