I made a mysql database for my project. I need to know if what I did is correct or not.
I made a master table to store all my movie details and I built some other tables to store the views and ratings. Am I doing wrong by using different tables to store views and ratings, although I can use the master table to store views and rating in each post.
If I add the rating and views fields to the master table itself, will it affect my database? What's the optimal solution?
I am using Myisam as lots of select queries are needed instead of insert.