How to write code in C#, Asp.Net, Php, Javascript, C. On this blog you will find example codes that will help you to understand concepts of programming.
Monday, November 26, 2012
How to INSERT into a table records extracted from another table?
If you want to insert values from one table into another you can use this sql query.
insert into TBL_TARGET([USERNAME],[PASSWORD],[ACTION])
select [USERNAME] ,[PASSWORD], 'I'
from [TBL_SOURCE]
No comments:
Post a Comment