Sql query, count and group by - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T23:16:59Zhttp://stackoverflow.com/feeds/question/3196http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/3196/sql-query-count-and-group-by5Sql query, count and group byDan2008-08-06T09:00:58Z2008-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#319725Answer by GateKiller for Sql query, count and group byGateKiller2008-08-06T09:02:36Z2008-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) > 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) > 1)<br></code></pre>http://stackoverflow.com/questions/3196/sql-query-count-and-group-by/6986#69863Answer by Dag Haavi Finstad for Sql query, count and group byDag Haavi Finstad2008-08-10T01:31:05Z2008-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#135122Answer by Ryan for Sql query, count and group byRyan2008-08-17T04:36:53Z2008-08-17T04:36:53Z<pre><code>select name from table group by name having count(name) > 1
</code></pre>