Check if there are the same values for given column
Note that if you column a
is of type VARCHAR and you're using MySQL, by default you'll get the same results for 'value', 'VALue', etc.
SELECT email, COUNT(*) a FROM sometable GROUP BY a HAVING a > 1;
Congratulations @symfonydev! You have completed some achievement on Steemit and have been rewarded with new badge(s) :
Click on any badge to view your own Board of Honor on SteemitBoard.
For more information about SteemitBoard, click here
If you no longer want to receive notifications, reply to this comment with the word
STOP