There is a table A in one database Q and table A in database R. How to add the rows of table R.A at the end of table Q.A.
Problem is both the tables are having same primary key 'id' (auto increment), so if table Q.A has 10 rows(id 1 to 10) then after adding the content of table R.A having 5 rows(id 1 to 5) into Q.A, then at the end Q.A will be having 15 rows (id 1 to 15)
Thanks.