I have a table like this.
myID Name Pic
1 Shan
2 Sharon
myId column is integer type, Name is varchar(10) and pic is type of image data type. I'm using SQL Server.
In a normal insert procedure, in which if you don't have a column name of data type "image" I know the insert would look like this.
INSERT INTO myTable
VALUES (1,Shan);
How to insert image data type column how to select the file. How to write an insert query to a table which is having a image data type column?
Thanks in advance.