
September 1st, 2002, 01:43 PM
|
|
Junior Member
|
|
Join Date: Apr 2001
Location: UK
Posts: 9
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
That didnt seem to work for me.
I figured our part of it.
SELECT password FROM table
GROUP BY password HAVING count( * ) > 1
But that returns all passwords which are used more than once, which ispartly what I want. Im having to then make a query for each of those passwords returned by the above to get the rest of the table information.
Its slow. There is another method, using "In" (Im guessing a query in a query), but MySQL doesnt seem to want to support it.
|