I have a database, where the company's invoices are stored, and I need to see the duplicate records (invoices that have the same series, number and type). For each record I have an id id that identifies them. What I want to list are all the ones that are duplicated, not the quantity. Searching the web I have not found any sentence with which I can resolve this.
For example, of those listed below, I want to see only those that are duplicated (A 809 and A 810):
**Tipo Serie Nro Estado Id**
111 A 807 Aceptada 9065
111 A 808 ErrorValidacion 7509
111 A 809 Aceptada 7519
111 A 809 ErrorValidacion 8287
111 A 809 ErrorValidacion 9066
111 A 809 ErrorValidacion 9123
111 A 810 ErrorValidacion 8288
111 A 810 ErrorValidacion 9067
111 A 810 ErrorValidacion 7574
111 A 810 Aceptada 7577
111 A 810 ErrorValidacion 9124
Thank you.