I'm working on SQL and I'm trying to find rows where the values are the same
If I have a table like this
|Column1|
| a |
| a |
| b |
| c |
| d |
| e |
I want to run a query that shows me each value that repeats more than once.
Select * from table
Where ***the total amount of occurrences of the value in Column1*** >= 2
and it should bring me back just the first and second rows where Column1 = a