HI all,
I have a simple query:
SELECT tableA.fieldA, tableA.fieldB, tableB.fieldA FROM tableA LEFT JOIN tableB ON tableA.fieldID = tableB.fieldID;
So now if there are two entries in tableB for any entry in tableA I will have two results for that field, but I just want to have one (the first...