Click here to Skip to main content
15,902,636 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hello Friends

I want a query in which I want to insert one column data of one table to another table column .

Pls Help me out
Posted

1 solution

This is a generic script
SQL
insert into destination_table
(
destination_column
)
select source_column
from source_table
where condition
 
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