Interview Preparation mode beta
Funny Facebook Status Funny Facebook Status
Enter your email address

How to import table using “INSERT” statement, in MS SQL Server?

Nice?Vote!
asked 1 year ago in SQL Server Interview Questions and Answers by R (19,530 points) edited 1 year ago by R

1 Answer

Nice?Vote!
insert into tablename
select * from otherdb.dbo.othertable

above statement can be used to import data from other database.
We can use OPENROWSET utility.
answered 1 year ago by anonymous

Related questions