I have two tables. One table (A) has n rows of data and the other table (B) is empty. I want to insert n rows into table B, 1 row for each row in table A. Table B will have a couple of fields from table A in it, including a foreign key from table A. In the end I want one row in B for each row in A. How can I write some TSQL to do this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Pinal Dave has wrote a great article on other alternative methods here: |
|||||||||||
|
|
If I understood you correctly, you need to use something like |
|||||
|
|
You can do this:
|
|||
|
|
|
This can be done by using following query.
If you want a more adequate example, you can provide me with specific tablenames and columns that you wish to enter. |
|||
|
|
