Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 Development Tools
 ASP.NET
 want the coding

Author  Topic 

lakshsql.samy
Starting Member

1 Post

Posted - 2010-06-18 : 08:22:39
how to get the particular value from one table using where condition and insert to another table particular field.

madhivanan
Premature Yak Congratulator

22864 Posts

Posted - 2010-06-18 : 08:52:05
insert into target_table(col)
select col from source_table
where some_condition

Madhivanan

Failing to plan is Planning to fail
Go to Top of Page
   

- Advertisement -