- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<小时/>
我有以下数据结构(简化),其中包括购买表(MySql)中的多态关联
Purchases
product_type (this refers to a table, book, dvd, shirt,...)
product_id (this refers to the product's id in the table in product_type)
amount
Books
category_id
DVDs
category_id
Shirts
category_id
Categories
name
我想从数据库中选择类别,按总销售额 (purchases.amount) 排序。如何使用联接和聚合函数来做到这一点?
我为此制作了一个sqlfiddle:
最佳答案
多态 ID 类似于数据库中的继承结构,因为要查询所有这些 ID,通常必须使用联合。
但是,如果您的 Books/Shirts/DVD 表没有公共(public)列,则对它们进行查询绝对没有意义。如果它们确实有公共(public)列,那么将其拉出到作为其他列的基础的父产品表中可能更有意义。
例如,如果您想要每种产品的总销售额,您只需这样做
Select sum(amount), product_id -- or product_type if you wanted sales per type
From Purchases
Group By product_id -- product_type
您可以像这样提取产品标题:
Select sum(p.amount), p.product_id, b.Title
From Purchases p
Inner Join Books b on b.category_id = p.product_id
Group By product_id
Union
Select sum(p.amount), p.product_id, s.Title
From Purchases p
Inner Join Shirts s on s.category_id = p.product_id
Group By product_id
先进行并集,然后再进行分组,可能会更高效。
我对继承层次结构的经验是,您应该尽一切努力避免联合。它们查询起来很痛苦,会导致非 DRY 查询,并且性能很差。这意味着将诸如标题之类的共性提取到适当的规范化结构中,以避免必须跨具体/派生类型进行查询。这基本上就是 Wrikken 在评论中提到的“通常,更好的方法是使用具有共享信息类型的产品表”
关于mysql - 如何与多态 has_many 'through' 进行连接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25317438/
我来自 Asp.Net 世界,试图理解 Angular State 的含义。 什么是 Angular 状态?它类似于Asp.Net中的ascx组件吗?是子页面吗?它类似于工作流程状态吗? 我听到很多人
我一直在寻找 3 态拨动开关,但运气不佳。 基本上我需要一个具有以下状态的开关: |开 |不适用 |关 | slider 默认从中间开始,一旦用户向左或向右滑动,就无法回到N/A(未回答)状态。 有人
我是一名优秀的程序员,十分优秀!