You wouldnt normally store the actual image in the database, rather store/fetch its name from the database and include that in a html
tag..
In this example you would store your images on the server in the /images/ folder.
And call the name of the image to be placed in the tag from the database.
Also there is the performance issue. Doing the above is fast and simple and exactly what SQL is intended for. Storing large image files like 100kb for example will decrease the performance of the specified task by 500% or more (guessing). Taking 0.5 seconds rather than 0.005... I'm sure you'll agree this can mount up with more concurrent users visit the page and request images from a database bloated with BLOB data.
Sorry, I'm going on a bit arent I. time to shut up ReDuX.