Possible Duplicate:
Is storing a delimited list in a database column really that bad?
In my database I have a table for objects and I want to attach pictures (as links) to each of them, but I wonder which one is better:
- Create extra column and store comma-seperated list or
- Create extra table and connect object to its picture or
- Is there any better way?