Das Geheimnis besteht darin, sich zweimal bei tbl_equipwarranty anzumelden - unter Verwendung von 2 verschiedenen Aliasen. Eine für die Servicegarantie und eine für die Produktgarantie. Sie können dies tun, indem Sie den Diensttyp als Teil des Joins angeben. Das Folgende verwendet ANSI-Joins, wird also wahrscheinlich in Firebird und MySQL funktionieren:
SELECT
a.equipmentid,
a.codename,
a.name,
a.labelid,
a.ACQUISITIONDATE,
a.description,
a.partofid,
w1.warrantyid as serviceidwarranty,
w1.startdate,
w1.enddate,
w2.warrantyid as productidwarranty,
w2.startdate,
w2.enddate
FROM TBL_EQUIPMENTMST a
INNER JOIN tbl_equipwarranty w1
ON w1.equipmentid = a.equipmentid AND w1.servicetype = 'service'
INNER JOIN tbl_equipwarranty w2
ON w2.equipmentid = a.equipmentid AND w2.servicetype = 'Product'
WHERE
a.partofid = '57'