Hello there ,
I try to copy a temporaryTable data into an actual table. I'm using C++/CLI .
Thanks a lot for any suggestion.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Syed ShakeerPosted Mar 2, 2010, 8:53 AM
To copy Table Data from one table to another table use the below query:-
Insert into newtable(name,deptno) select naem,deptno from oldtable
zehraPosted Mar 2, 2010, 1:59 PM