I have a table with different columns which included an image. First I have manually entered all the other columns details except the image column. And at last I want to insert an image into that table manually. I tried to use this command but I am failing - it is showing an error:
INSERT INTO Tablename (image column name)
SELECT BulkColumn
FROM Openrowset( Bulk 'path......', Single_Blob) as img
WHERE columnname = 'xxxxx';