Click here to Skip to main content
15,891,204 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
select * into #Tab from employees
insert into #Tab values ('Giri', 'SSE', 'HB')

This will insert data into #Tab. But I want those changes to be reflected back to 'employees' table. Is it possible ?
Posted

1 solution

No, the #Tab table is a temporary table. If you want to update the original table(s) you need to do that seperatley.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900