how to save image link in table and retrieve from table in sql server.
CREATE TABLE ##Images(
[ID] [int] IDENTITY(1,1) NOT NULL,
[ImageData] varBinary(max) NOT NULL
)
insert into ##Images(ImageData)
select convert(VARBINARY(MAX),'https://zinghrnewux.blob.core.windows.net/wishes/MINS/Birthday/Final.jpg')