

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
MySQL Select where value exists more than once
For this, you can use GROUP BY HAVING along with the COUNT(*) function. Let us first create a table −
mysql> create table DemoTable -> ( -> Value int -> ); Query OK, 0 rows affected (0.47 sec)
Insert some records in the table using insert command −
mysql> insert into DemoTable values(20); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable values(10); Query OK, 1 row affected (0.08 sec) mysql> insert into DemoTable values(30); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable values(10); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable values(30); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable values(40); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable values(50); Query OK, 1 row affected (0.27 sec)
Display all records from the table using select statement −
mysql> select *from DemoTable;
This will produce the following output −
+-------+ | Value | +-------+ | 20 | | 10 | | 30 | | 10 | | 30 | | 40 | | 50 | +-------+ 7 rows in set (0.00 sec)
Following is the query to select where value exists more than once −
mysql> select *from DemoTable -> group by Value -> having count(*) > 1;
This will produce the following output −
+-------+ | Value | +-------+ | 10 | | 30 | +-------+ 2 rows in set (0.38 sec)
- Related Questions & Answers
- MySQL query to find a value appearing more than once?
- Select MySQL rows where column contains same data in more than one record?
- Array elements that appear more than once?
- Array elements that appear more than once in C?
- Select rows having more than 2 decimal places in MySQL?
- SELECT where row value contains string in MySQL?
- MySQL query to count where more than three columns values are true?
- How to check if value exists with MySQL SELECT 1?
- Insert more than one element at once in a C# List
- addEventListener() not working more than once with a button in JavaScript?
- Select a value from MySQL database only if it exists only once from a column with duplicate and non-duplicate values
- Select from table where value does not exist with MySQL?
- MySQL query to select column where value = one or value = two, value = three, etc?
- Compute the multiplicative inverse of more than one matrix at once in Python
- How to select where sum of fields is greater than a value in MongoDB?
Advertisements