Einzelnen Beitrag anzeigen

hoika

Registriert seit: 5. Jul 2006
Ort: Magdeburg
8.276 Beiträge
 
Delphi 10.4 Sydney
 
#8

Re: Performance-Prob mit Subselect

  Alt 21. Jan 2008, 17:47
Hallo,

die Query von alzaimar bringt es fast.

SQL-Code:
Select Booking.booking_id,
       Booking.project_id
  From (
       Booking
       Join Project On Project.project_id=Booking.project_id
       Join Pos On Pos.position_id=Booking.position_id
       )
       Left join except_projects on except_projects.project_id = Booking.projectID
where except_projects.project_id is null
OK das Booking.position_id hatte ich unterschlagen.

Ausführungszeit unter FB1.5 und FB2.0 ist OK,

1600 ms execution, 3000 ms fetch


Tja, mit einer SP bin ich bei 9 ms execution.

Soll ich nu ne SP nehmen oder besser das "Standard"-SQL lassen.


Was meint ihr ?


Heiko
Heiko
  Mit Zitat antworten Zitat