Computer >> 컴퓨터 >  >> 프로그램 작성 >> MySQL

MySQL 테이블에서 사용 가능한 중복 값을 찾는 방법은 무엇입니까?


열 수량에 중복 값이 ​​있는 stock_item이라는 다음 테이블이 있다고 가정합니다. 즉, 항목 이름 'Notebooks' 및 'Pencil'의 경우 'Quantity' 열에 중복 값이 ​​있습니다. 표와 같이 40'입니다.

mysql> Select * from stock_item;
+------------+---------+
| item_name  |quantity |
+------------+---------+
| Calculator | 89      |
| Notebooks  | 40      |
| Pencil     | 40      |
| Pens       | 32      |
| Shirts     | 29      |
| Shoes      | 29      |
| Trousers   | 29      |
+------------+---------+
7 rows in set (0.00 sec)

이제 다음 쿼리를 사용하여 항목 이름과 함께 '수량' 열에서 중복 값을 찾을 수 있습니다.

mysql> Select distinct g.item_name,g.quantity from stock_item g
    -> INNER JOIN Stock_item b ON g.quantity = b.quantity
    -> WHERE g.item_name<>b.item_name;

+-----------+----------+
| item_name | quantity |
+-----------+----------+
| Pencil    | 40       |
| Notebooks | 40       |
| Shoes     | 29       |
| Trousers  | 29       |
| Shirts    | 29       |
+-----------+----------+
5 rows in set (0.00 sec)