I am storing images in a SQL database , right now I have images being stored in separate tables depending on the object the images belong to, is there any reason ( performance etc..) why I should keep it this way and not store all images in the same table?
Share
Normalization! If you want to follow a normalized schema then you should probably have a media table that contains all of your images, then you can have a table with the relationships from your objects to the media.
This is how I have done it, and it works well for me.