For the sake of simplicity, let's say my database has two tables, videos and users. Videos being a list of different videos, and users being a list of different users.
I need to be able to have a record of when a user watches a certain video, so when they go to view the video again, I can let them know that they have already seen it.
Info: There will potentially be hundreds of thousands of users There will potentially be hundreds of thousands of videos.
One way I have thought of doing this is buy creating a table for each video, or a table for each user (Both would result in hundreds of thousands of tables).
Another way would be to create one neutral table, with the fields: userID(foreign key), videoID(foreign key). However, I believe this compromises efficiency (and normalization) because there would be multi-valued dependencies, or multiples of the same userID's and videoID's in the two columns.
I am still fairly new to databases, and I feel like I am missing something simple. Any help would be greatly appreciated.
I am using MySQL.
