Hi @Shanvitha ,
Please refer with below code and check whether it is helpful to you.
CREATE TABLE [dbo].[SFMC_HTML_Images](
[HTML_Image] varbinary(max) NULL,
SendID varchar(50) null
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
Insert into SFMC_HTML_Images (HTML_Image)
Select BulkColumn FROM OPENROWSET(
BULK '4017033.jpg',
DATA_SOURCE = 'MyAzureBlobStorage', SINGLE_BLOB) AS ImageFile;
You could refer more details from below:
How to insert image file, stored in Azure blob storage, into an Azure SQL table
Best regards
Melissa
If the answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.