Is there a Image related data type in MySQL that can be used for storing images for each record. Appreciate your help.
Cheers! Anil
You'll need to use some sort of BLOB type:
BLOB
MySQL Reference: BLOB and TEXT types
Which type you use depends on the size of the image you wish to store.