R
RC
Hi,
When I want to combine, say 10 tables, each table contain
about 150 rows of data, the rows of data get mixed.
That means maybe in row 220 of the new table, it should be
the data of table 2, but a row of data from table 3
appear. Althrough all the data from the 10 tables had been
copied to the correct table, the output is not desired.
Anyone can suggest a solution? Thanks!
My code:
SELECT * INTO [server] FROM table 1 'first, I created the
new table using table
INSERT INTO [server] SELECT * FROM table(2,3,4...) 'Then
copy the data in other tables into the destinated table.
Regards,
RC
When I want to combine, say 10 tables, each table contain
about 150 rows of data, the rows of data get mixed.
That means maybe in row 220 of the new table, it should be
the data of table 2, but a row of data from table 3
appear. Althrough all the data from the 10 tables had been
copied to the correct table, the output is not desired.
Anyone can suggest a solution? Thanks!
My code:
SELECT * INTO [server] FROM table 1 'first, I created the
new table using table
INSERT INTO [server] SELECT * FROM table(2,3,4...) 'Then
copy the data in other tables into the destinated table.
Regards,
RC