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;
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) :
Award for the number of posts published
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
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit