I have table users. Each user has his own videos. It is one to many relationship. One user has many videos.
- How to write a query to select users.name where video.name is "Video1" or "Video2"?
- How to write a query to select users.name, video.name where video.name is "Video1" or "Video2"?
In the second question, we have to merge video.name, because it is one to many relationship.