Computer Science, asked by ashujaguar7875, 1 year ago

How to select data from one table and insert into another in sql server?

Answers

Answered by Anonymous
0

Answer:

The INSERT INTO SELECT statement copies data from one table and inserts it into another table.

  • INSERT INTO SELECT requires that data types in source and target tables match.
  • The existing records in the target table are unaffected.

Similar questions