HI All,
I have two tables with same column name in my ms access database. In one table i have some data with some duplicate values. I want to move only that duplicate values to another table.. exmp:
Table a Table b
column 1:name column 1:name
column 2:address column 2:address
Table "a" Data:
name address x xxx y yyy x xxx z zzz
need one query to insert the duplicate row to another table.
After query run. It should be like:
Table a:
name address x xxx y yyy z zzz
and Table b
name address x xxx
Please help me to write this query or give me the solution.