I need something like the "inverse" of DISTINCT which removes duplicates from the select query. I need to display the same repeating lines
Mom tables that look like this:
Field1 Field2 Field3 Field4
1 2 3 4
2 2 3 5
1 3 4 5
3 4 4 2
2 2 3 5
As you can see, records 2 and 5 are identical, the query select distinct * from Table will return this record only once. What to write a query to return only records that repeat, i.e. records 2 and 5, or a query that will return only record 2 or 5
I do not need to write that my table has 13,000 records and there is no unique ID, I know that about 35 different records are repeated for me (the difference between a regular select and the one with distinct) How can I find them ??
Mom tables that look like this:
Field1 Field2 Field3 Field4
1 2 3 4
2 2 3 5
1 3 4 5
3 4 4 2
2 2 3 5
As you can see, records 2 and 5 are identical, the query select distinct * from Table will return this record only once. What to write a query to return only records that repeat, i.e. records 2 and 5, or a query that will return only record 2 or 5
I do not need to write that my table has 13,000 records and there is no unique ID, I know that about 35 different records are repeated for me (the difference between a regular select and the one with distinct) How can I find them ??