Subject | Re: [firebird-support] Re: UPDATE AND DELETE WITH JOIN |
---|---|
Author | Rafael Szuminski |
Post date | 2006-07-15T16:16:40Z |
> Select * from BillsThis is one area where FB is quite um well....pathetic when compared
> inner join Accounts on BillAccount = AccountID
>
> is faster than
>
> Select * from Bills
> where BillAccount in (select AccountID from Accounts where BillAccount
> = AccountID)
to other db's. Once the subselect returns more then a few thousand
rows, all performance goes to hell. Perhaps instead of adding new
update syntax, it would help to increase the performance of subselect
queries and it would solve two issues?
Raf