Kalyan Ganesan
Programmer
There are two tables in MS Access that are identical,they are linked tables,but the structure is same even though their database is different,so i tried
INSERT INTO TableA
SELECT *
FROM TableB
but it inserts three columns and two columns data is not inserted and left blank,but it doesnt give any error so what should i do to make sure all the 5 columns are inserted
Thanks
INSERT INTO TableA
SELECT *
FROM TableB
but it inserts three columns and two columns data is not inserted and left blank,but it doesnt give any error so what should i do to make sure all the 5 columns are inserted
Thanks