我应该使用什么 SQL 操作?
我有两个表:
TABLE 'songs'
song_id --some other columns about this song
-------
1
2
3
TABLE 'song_ownership'
user_id song_id
------- -------
28 1
28 3
538 1
234 2
我有兴趣执行查询,在给定 user_id
的情况下,我返回他们拥有的所有歌曲。例如,您可以看到用户 28 拥有两首歌曲。
顺便说一句,这是我所知道的如何规范化该表的最好方法,并且愿意接受有关如何更传统地存储该数据的建议(我刚刚学习 SQL)。这是典型的桌子设置吗?
I have two tables:
TABLE 'songs'
song_id --some other columns about this song
-------
1
2
3
TABLE 'song_ownership'
user_id song_id
------- -------
28 1
28 3
538 1
234 2
I'm interested in performing a query where given a user_id
I'm returned all of the songs that they own. You can see that user 28 owns two songs, for example.
Incidentally, this is the best I know how to normalize this table and am open to suggestions on how to store this data more conventionally (I'm just learning SQL). Is this a typical table setup?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设同一用户不能两次拥有同一首歌曲。到目前为止,您的标准化看起来很好!您的 Song_ownership 表将是一个“多对多”表,并且(如果歌曲-用户关联是唯一的),您可以在两列上放置复合主键,并且您的用户将位于单独的表中。
Assuming that the same user can't own the same song twice. Your normalization looks fine so far! Your song_ownership table will be a "many-to-many" table, and (if a song-user association is unique), you can put a compound primary key on both columns, and your users will be in a separate table.