Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
hi, how can i query duplicate records from a ms access table.
ram
How are you going to enter duplicate records
Develop2Program & Program2Develop
for example tblA col1 col2 101 AAA 102 BBB 101 AAA 103 CCC 103 CCC select col1, col2 from tblA gorup by col1, col2 having count(*) > 1 returns all rows which are repeated
Regards KP