Menu

[solved]-Add Images Last Columns Named Productimage Productthumbnail Need Code Stored Procedure Cod Q39017917

How do I add images to the last columns named Product_Image andProduct_Thumbnail? Need code for stored procedure and code behindif needed.

TABLE INFO

CREATE TABLE [dbo].[ExampleTable] (
[Id] INT IDENTITY (1, 1) NOT NULL,
[Product_ID] VCHAR (50) NOT NULL,
[Product_Name] VCHAR (50) NOT NULL,
[Product_Image] IMAGE NULL,
[Product_Thumbnail] IMAGE NULL,
PRIMARY KEY CLUSTERED ([Id] ASC)
)

Expert Answer


Answer to How do I add images to the last columns named Product_Image and Product_Thumbnail? Need code for stored procedure and co… . . .

OR


Leave a Reply

Your email address will not be published. Required fields are marked *