|
well.. you could try a couple things.
1. use DISTINCT in the query (SELECT DISTINCT [columns] WHERE .....)
2. use a GROUP BY in the query (SELECT [columns] WHERE ..... GROUP BY [uniquecolumn])
By "uniquecolumn" I mean something that would be common only if the two results were identical (such as the id).
|