Hi I have a Access DB Table With Multiple Columns (Say Col_1, Col_2,Col_3,......,Col_n )all Integer
I need a query to find for any Specific Row The Values of the Multiple Column is Duplicated,
Take for Example Below is the Table
Field2 Field3 Field4 Field1
1 3 2 3
4 3 1 2
5 6 7 8
2 2 3 1
3 6 5 4
3 3 3 2
2 1
2 2
Now I need a query To Display the Below result
Field2 Field3 Field4 Field1
1 3 2 3
2 2 3 1
3 3 3 2
2 2
Currently I am using the Query ("Select * from Table1 where Field1 in (Field2,Field3,Field4) or Field2 in (Field1,Field3,Field4) or Field3 in (Field2,Field1,Field4) or Field4 in (Field2,Field3,Field1)") to fetch the result But I need a simple Query to resolve it,