I have the following table, from which i have to fetch non unique rows
id | idA | infos |
---|---|---|
0 | 201 | 1899 |
1 | 205 | 1955 |
2 | 207 | 1955 |
3 | 201 | 1959 |
I'd like fetch all the rows for the column infos
, that have a same idA
value in at least two rows.
Output of the query for the above table must be
infos
1899
1959
I've tried the following requests with no success :
SELECT idA FROM XXX WHERE NOT EXISTS(SELECT * FROM XXX GROUP BY idA)
SELECT * FROM XXX a WHERE NOT EXISTS(SELECT * FROM XXX b WHERE a.RVT_ID=b.RVT_ID GROUP BY idA)