bikerboy718
Programmer
I have data from 2 tables (tableA and tableB) that needs to be combined into one table (tableC). The data has to go into tableC in a specific order. TableA data and then TableB data. To do this i use
Insert TableC
Select *
From TableA
Insert TableC
Select *
From TableB
However when i do a Select all on TableC and also check the table contents in Enterprise manager, TableB's data is listed first and then TableA's data. Is there a way for me to have tableA's data entered in first in the tableC and stay first in the tableC.
Normally i would not have a problem but for some reason this does not seem to be working.
Can anyone provide some light as to why this may be happening. Any help will be greatly appreciated.
Michael
Insert TableC
Select *
From TableA
Insert TableC
Select *
From TableB
However when i do a Select all on TableC and also check the table contents in Enterprise manager, TableB's data is listed first and then TableA's data. Is there a way for me to have tableA's data entered in first in the tableC and stay first in the tableC.
Normally i would not have a problem but for some reason this does not seem to be working.
Can anyone provide some light as to why this may be happening. Any help will be greatly appreciated.
Michael