How can I insert values(in table 1) from one database to table 2 in another database ? (SQL) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 4

How can I insert values(in table 1) from one database to table 2 in another database ? (SQL)

hi guys , i want to ask How can I insert values(in table 1) from one database to table 2 in another database ?

26th Jul 2021, 8:25 AM
Ramzi Jebalia
Ramzi Jebalia - avatar
3 Answers
+ 1
Lothar thank youuu
29th Jul 2021, 5:59 PM
Ramzi Jebalia
Ramzi Jebalia - avatar
0
insert into DB2.dbo.table2 select * from db1.dbo.table1
24th Aug 2021, 8:10 AM
Suma Harsha
Suma Harsha - avatar