My situation is that I currently have a list of images. I want to store tags with an X/Y position and a person id for each image.
I was looking at doing this via three tables. One table the images, the second table the tags, and the third table the persons name.
- Is this the right way to do it or is there a better way?
- How would I go about searching for images that contain specific people (eg return images that have tags of key 1,2 and 3)
I was thinking that when the user searches through the table of images I could create a new column dynamically, which would be an array of the person tag keys that would then be checked for all the values.