考试报名
考试报名
考试内容
考试大纲
在线客服
返回顶部

备考刷题,请到

CDA认证小程序

The following is an E-R diagram of transaction related tables for a company. Please answer the questions by observing the diagram: 产品表:products table 区域表:regions table 订单表:orders table 订单提成表:commissions table 赵大:Zhao Da 王二:Wang Er 孙三:Sun san The orders and commissions tables both record transaction behavior data. Based on the diagram, the connection relationship between the orders and commissions tables is:
A. Snowflake schema
B. Star schema
C. Intersecting joins
D. Constellation schema
上一题
下一题
收藏
点赞
评论
题目解析
题目评论(0)

There are multiple filter paths from orders to commissions, so it is an intersecting join relationship. C is correct.

正确答案是:D: 星座模式 (Constellation schema)

专业分析:

在E-R图中,订单表(orders table)和订单提成表(commissions table)都记录了交易行为数据。通过观察图表,我们可以看到:

1. 产品表(products table)和区域表(regions table)分别与订单表(orders table)和订单提成表(commissions table)关联。
2. 订单表和订单提成表之间有直接的关联关系。

星座模式(Constellation schema)是一种数据仓库架构,其中多个事实表(如订单表和订单提成表)共享维度表(如产品表和区域表)。在这种模式下,多个事实表通过共享的维度表连接在一起,形成一个复杂的星座结构。

因此,根据以上分析,订单表和订单提成表之间的连接关系符合星座模式(Constellation schema)。