Hi,I have an problem with the order of the results after a join.My first query works fine and the order of field Name ist correct.Select * FROM(SELECT * FROMdtree A1WHERE A1.Subtype=31356AND A1.DataID IN (select DataID from dtreeancestors where AncestorID=9940974)) t
When I do a join the order of the left table changesSelect * FROM(SELECT * FROMdtree A1WHERE A1.Subtype=31356AND A1.DataID IN (select DataID from dtreeancestors where AncestorID=9940974)) t, llattrdata A4WHERE t.DataID = A4.ID
How can I do a join and keep the order of the left table?Kind regards,Lara