How do you copy an image data type (or varbinary(max)) from one table to another in SQL Server, without having to save the data to a file first?
|
|
|
|
|
|
|
You select the records from one table and insert into another. As you do it in the same query, the data doesn't leave the database, so you don't have to store it anywhere. Example:
|
||
|
|
|
|
You can just use an insert statement with a SELECT clause, for example:
You can get full details about the INSERT statement here: |
||
|
|
