<p class="intro">以下sql语句可以实现查找出一个表中的所有重复的记录</p> 代码如下:<br>select user_name,count(*) as count from user_table group by user_name having count>1; <br><br>这个我在很早有发过一个asp下的ACCESS 的