欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

mysql 数据表中查找重复记录

程序员文章站 2023-12-11 23:56:28
复制代码 代码如下:select user_name,count(*) as count from user_table group by user_name having...
复制代码 代码如下:

select user_name,count(*) as count from user_table group by user_name having count>1;

这个我在很早有发过一个asp下的access 的

上一篇:

下一篇: