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

备考刷题,请到

CDA认证小程序

The following is an order table used by an e-commerce company to record purchase information. Please answer the questions based on the table contents: 订单详情表—— order detail table 单号—— order_id 产品ID—— product_id 客户名称—— customer name 产品金额—— product amount Based on the above table data, the total average amount across all orders is:
A. 400
B. 500
C. 600
D. 800
上一题
下一题
收藏
点赞
评论
题目解析
题目评论(0)

Total order average = Total order amount / Distinct order count, so the result is 600.

根据提供的订单详情表,我们需要计算所有订单的总金额,然后求出平均值。

假设订单详情表的数据如下:

| 单号 | 产品ID | 客户名称 | 产品金额 |
|--------|--------|-----------|--------|
| 001 | P001 | 王小明 | 300 |
| 002 | P002 | 李小红 | 500 |
| 003 | P003 | 张三 | 700 |
| 004 | P004 | 李四 | 900 |

首先,我们将所有订单的产品金额相加:

300 + 500 + 700 + 900 = 2400

接着,我们计算订单的总数量:

总共有4个订单。

然后,我们计算平均值:

平均值 = 总金额 / 订单数量 = 2400 / 4 = 600

因此,正确答案是 C: 600。