Just a quick question, I am trying to insert after another but I want them to be on the same rows.
For Example,
When I do the above I get this...
I do not however want them to be on the same line of code.
I know I can do this but this is not what im trying to do.
I was thinking of using a row indentifier maybe and going by the record number?
Thanks.
"Success consists of going from failure to failure without loss of enthusiasm."
Winston Churchill~
For Example,
Code:
Insert into test (FILECODE) select filecode from tester
Insert into test (KEYCODE) select keycode from tester
Code:
FILECODE KEYCODE
a
a
a
a
B
B
B
B
I do not however want them to be on the same line of code.
I know I can do this but this is not what im trying to do.
I was thinking of using a row indentifier maybe and going by the record number?
Code:
Insert into test (FILECODE,KEYCODE) select filecode,keycode from tester
Thanks.
"Success consists of going from failure to failure without loss of enthusiasm."
Winston Churchill~