Subject | RE: [firebird-support] Order by |
---|---|
Author | Alan McDonald |
Post date | 2003-11-30T23:50:44Z |
for First case (Records read 45)
some of which do not apply to the starting with clause?)
Is "Ref_Number" indexed? a foreign key?
When you say slow - how slow?
And how many records are in these tables?
I am assuming that the in the 360 records you are getting duplicates?
Alan
>I imagine the 45 records returned is incomplete? (as opposed to 360 records
> SQL is
> select cln.*, anm.*
> from "Client_Main" cln left outer join "Animal_Main" anm
> on anm."Owner" = cln."Ref_Number"
> where cln."FName" starting with 'SA'
>
> Plan is
> [PLAN JOIN (CLN INDEX (CLN_BY_FNAME),ANM INDEX (Anm_By_Owner))]
>
> _________________________________________________________________
> for Second case (Records read 360)
>
> SQL is
> select cln.*, anm.*
> from "Client_Main" cln left outer join "Animal_Main" anm
> on anm."Owner" = cln."Ref_Number"
> where cln."FName" starting with 'SA'
> order by cln."FName" desc
>
> Plan is [PLAN SORT (JOIN (CLN INDEX (CLN_BY_FNAME),ANM INDEX
> (Anm_By_Owner)))]
>
> Regards
>
> Sandeep
some of which do not apply to the starting with clause?)
Is "Ref_Number" indexed? a foreign key?
When you say slow - how slow?
And how many records are in these tables?
I am assuming that the in the 360 records you are getting duplicates?
Alan