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

备考刷题,请到

CDA认证小程序

Considering the business significance represented by table names, which tables can be connected together?
A. Order table and order details table
B. Inventory table and procurement table
C. Sales table and customer table
D. Product table and product size table
上一题
下一题
收藏
点赞
评论
题目解析
题目评论(0)

Option B involves two different business modules - procurement and inventory - with separate fact tables. To connect fact tables from different business modules, you would typically need to use a shared dimension table, so it is not a suitable combination. On the other hand, A, C, and D are all suitable combinations based on the business context.

正确答案是:A: Order table and order details table

专业分析:

1. **Order table and order details table (订单表和订单详情表)**:
- **业务意义**: 订单表记录了每个订单的总体信息,如订单号、客户ID、订单日期等。订单详情表则记录了每个订单中的具体商品信息,如商品ID、数量、价格等。
- **连接逻辑**: 订单表和订单详情表之间通常通过订单号(Order ID)进行连接。这样可以从订单表中获取订单的总体信息,从订单详情表中获取订单中每个商品的详细信息。

2. **Inventory table and procurement table (库存表和采购表)**:
- **业务意义**: 库存表记录了当前库存的商品信息和数量。采购表记录了采购订单的信息,包括采购的商品、数量、供应商等。
- **连接逻辑**: 库存表和采购表之间的连接并不直接。虽然采购活动会影响库存,但它们通常通过商品ID和采购订单来间接关联。

3. **Sales table and customer table (销售表和客户表)**:
- **业务意义**: 销售表记录了销售订单的信息,客户表记录了客户的详细信息。
- **连接逻辑**: 销售表和客户表可以通过客户ID进行连接,以便了解每个销售订单的客户信息。

4. **Product table and product size table (产品表和产品尺寸表)**:
- **业务意义**: 产品表记录了产品的基本信息,如产品ID、名称、类别等。产品尺寸表记录了产品的尺寸信息。
- **连接逻辑**: 产品表和产品尺寸表可以通过产品ID进行连接,以便获取产品的详细尺寸信息。

综上所述,最直接且常见的连接关系是订单表和订单详情表之间的连接。其他选项虽然也有业务上的联系,但连接关系不如订单表和订单详情表那么直接和明确。