I'm using the following SQL code to search through my MySQL database:
SELECT a.* FROM clients a JOIN (SELECT email, COUNT(*) FROM clients GROUP BY email HAVING count(*) > 1 ) b ON a.email = b.email ORDER BY a.email
. However, after my search, the rows come up and it says: Current selection does not contain a unique column. Grid edit, checkbox, Edit, Copy and Delete features are not available.
Yet the column clientID, which is marked as a primary key is there, but I still cannot edit. What is the problem?
This is my clientID structure.
This is what the search returns. Also before anyone mentions it, the passwords are hashed.
Thanks!