Hello,
I've thought about this a lot, but no ideas.
I issue a normal mysql query to obtain records, ordered by some_column.
SELECT some_col FROM mydb ORDER BY some_col DESC
Once I have my records from the db, I now need to know if any records have the same values.
Example:
Let's say my records are :
tom
samuel
samuel
samuel
mark
jake
jake
doug
doug
Is there a way to tell that samuel, jake, and doug all occur more than once?
TIA,
Richie.