Lets imagine that I have videos and each video can have few tags (maximal is 10 tags per video).
I planned my SQL schema and it looks like this:
videos:id,title,path,tag_rels:id,tag_id,item_id(it will point tovideos.id),tags:id,tag;
Okay, seems fine to me.
Then I wrote SELECT that should get video, plus, tags for it.
SELECT `videos`.`id`, `videos`.`title`, `videos`.`path`, `tags`.`tag`
FROM `videos`
JOIN `tag_rels`
ON `tag_rels`.`item_id` = `videos`.`id`
JOIN `tags`
ON `tags`.`id` = `tag_rels`.`tag_id`
It's not tested or so because it's all in mind-level.
And the huge problem is INSERT query (queries, I guess).
As much as I understand:
- Query #1: insert video in
videos. This will return primary key (videos.id), right? - Query #2: select tag #1 from database and get it's primary key,
- Query #3: if there aren't such record (based on tag name (
tags.tag), do an insert query and insert it. The goal is to get primary key of that tag, - Query #4: insert entry in
tag_relswith video's pk and tag's pk;
So, it's one query per video as it is, plus` 2 or 3 queries for each tag.
This means that if video has 10 tags and (worst situation) any of those tags aren't saved in database, it will cost me 1 + 10 * 3... em.... 31 query?!
There got to be a better way! Thanks a lot!
P.S. I don't want duplicate entries in the database and I would love to have column used_in to tags with video count that use the tag. In future...