+ 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 ?
3 Réponses
+ 4
Ramzi Jebalia ,
using google does help sometimes:
https://stackoverflow.com/questions/1612267/move-sql-data-from-one-table-to-another#1612291
+ 1
Lothar thank youuu
0
insert into DB2.dbo.table2
select * from db1.dbo.table1