In a [PERFORMANCE] table, some rows have the same value for the PERFORMANCE_INDICATOR column.
ID | PERFORMANCE_INDICATOR | REALISASI |
---------------------------------------------------------
1 | Compliance of Inventory Data Consumer | 90,91 |
7 | Compliance of Inventory Data Consumer | 92,22 |
13 | Compliance of Inventory Data Consumer | 93,31 |
9 | Migrasi ODF to FTM | 90,91 |
3 | Migrasi ODF to FTM | 92,22 |
14 | Migrasi ODF to FTM | 93,31 |
I want to select just two data every duplicate data exist like this:
ID | PERFORMANCE_INDICATOR | REALISASI |
-----------------------------------------------------
1 | Compliance of Inventory Data Consumer | 90,91 |
7 | Compliance of Inventory Data Consumer | 92,22 |
9 | Migrasi ODF to FTM | 90,91 |
3 | Migrasi ODF to FTM | 92,22 |
What SQL statement should I use to find those rows? Thanks for your help.