I'm trying to build a movie database Below is a selection from the "Movies" table:
id | title | genre |
---|---|---|
1 | Venom | Action, Adventure,Thriller |
2 | DeadPool | Action, Comedy |
I heard that I have to use model called a "many-to-many" relationship in the genre column, And it's not a good practice to use comma delimiter when modelling "real world" categorisations.
I want to know why it is not a good practice.