Sql query, count and group by - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T23:16:59Z http://stackoverflow.com/feeds/question/3196 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/3196/sql-query-count-and-group-by 5 Sql query, count and group by Dan 2008-08-06T09:00:58Z 2008-08-17T04:36:53Z <p>if i have data like this:</p> <pre><code>Key Name<br>1 Dan<br>2 Tom<br>3 Jon<br>4 Tom <br>5 Sam<br>6 Dan<br></code></pre> <p>What is the sql query to bring back the records where the Name is repeated 2 or more times.</p> <p>So the result i would want is</p> <pre><code> Tom<br> Dan<br></code></pre> http://stackoverflow.com/questions/3196/sql-query-count-and-group-by/3197#3197 25 Answer by GateKiller for Sql query, count and group by GateKiller 2008-08-06T09:02:36Z 2008-08-06T09:47:30Z <p>Couldn't be simpler...</p> <pre><code>Select<br>Name,<br>Count(Name) As Count<br>From<br>Table<br>Group By<br>Name<br>Having<br>Count(Name) &gt; 1<br>Order By<br>Count(Name) Desc<br></code></pre> <p>This could also be extended to delete duplicates:</p> <pre><code>Delete<br>From<br>Table<br>Where<br>Key In (<br> Select<br> Max(Key)<br> From<br> Table<br> Group By<br> Name<br> Having<br>Count(Name) &gt; 1)<br></code></pre> http://stackoverflow.com/questions/3196/sql-query-count-and-group-by/6986#6986 3 Answer by Dag Haavi Finstad for Sql query, count and group by Dag Haavi Finstad 2008-08-10T01:31:05Z 2008-08-10T01:31:05Z <p>This could also be accomplished by joining the table with itself,</p> <pre><code>SELECT DISTINCT t1.name FROM tbl t1 INNER JOIN tbl t2 ON t1.name = t2.name WHERE t1.key != t2.key; </code></pre> http://stackoverflow.com/questions/3196/sql-query-count-and-group-by/13512#13512 2 Answer by Ryan for Sql query, count and group by Ryan 2008-08-17T04:36:53Z 2008-08-17T04:36:53Z <pre><code>select name from table group by name having count(name) &gt; 1 </code></pre>