Hallo Alle,
ich habe zu Auswertung von Supportfällen eine Abfrage erstellt. Dabei soll das Erledigungsdatum eines Vorgangs mit ausgegeben werden. Es gibt aber das Problem, dass ein Vorgang wiedereröffnet und erneut erledigt werden kann. Es soll die Duplizerung verhindert und nur die jüngste Erledigung ausgewertet werden. Momentan mach ich das so:
SQL-Code:
select bugs.id,
projects.name as Projekt,
reporter.username as Reporter,
bearbeiter.username as "Bearbeitung durch",
bugs.date_submitted as Meldungsdatum,
bugs.last_updated as Aktualisiert,
bugs.summary as Zusammenfassung,
bugs.status,
history.date_modified as Erledigt,
abrechnung.value as abrechnung,
cast(replace(mannstunden.value, ',', '.') as DECIMAL) as Aufwand
from mantis_bug_table bugs
left outer join mantis_project_table projects on projects.id = bugs.project_id
left outer join mantis_custom_field_string_table abrechnung on abrechnung.field_id = 2 and abrechnung.bug_id = bugs.id
left outer join mantis_custom_field_string_table mannstunden on mannstunden.field_id = 1 and mannstunden.bug_id = bugs.id
left outer join mantis_user_table reporter on reporter.id = bugs.reporter_id
left outer join mantis_user_table bearbeiter on bearbeiter.id = bugs.handler_id
left outer join mantis_bug_history_table history
on history.bug_id = bugs.id and history.field_name = 'status' and history.new_value = '80' and
/* Durch diese Subquery wird sichergestellt, dass nur der neueste Eintrag gejoined wird */
history.id = (select max(id)
from mantis_bug_history_table
where bug_id = bugs.id and
field_name = 'status' and
new_value = '80')
Gibt es eine elegantere und performantere Variante zu dieser Subquery ?