MySQL查询找到一个出现多次的值?
让我们首先创建一个表-
create table DemoTable-> (
-> value int
-> );
使用插入命令在表中插入一些记录-
insert into DemoTable values(10);insert into DemoTable values(100);
insert into DemoTable values(20);
insert into DemoTable values(10);
insert into DemoTable values(30);
insert into DemoTable values(40);
insert into DemoTable values(20);
使用select语句显示表中的所有记录-
select *from DemoTable;
输出结果
这将产生以下输出-
+-------+| value |
+-------+
| 10 |
| 100 |
| 20 |
| 10 |
| 30 |
| 40 |
| 20 |
+-------+
7 rows in set (0.00 sec)
以下是查找多次出现的值的查询-
select *from DemoTable group by value having count(*) > 1;
输出结果
这将产生以下输出-
+-------+| value |
+-------+
| 10 |
| 20 |
+-------+
2 rows in set (0.00 sec)
以上是 MySQL查询找到一个出现多次的值? 的全部内容, 来源链接: utcz.com/z/352607.html