So I don't forget it...
Showing posts with label
CSC HPH
.
Show all posts
Showing posts with label
CSC HPH
.
Show all posts
Thursday, September 19, 2013
Selecting and displaying duplicates in a MySQL DB:
SELECT *
FROM table
WHERE column IN (
SELECT column
FROM table
GROUP BY column
HAVING (COUNT(column) > 1)
)
Older Posts
Home
Subscribe to:
Posts (Atom)