汇总客户信息
在大多数业务决策中,客户通常按组进行分析,例如按国家或按年龄段统计客户。
本练习是课程的一部分
用 SQL 进行数据驱动决策
交互式实操练习
通过完成这段示例代码来试试这个练习。
SELECT ___ -- Count the total number of customers
FROM customers
WHERE date_of_birth ___; -- Select customers born between 1980-01-01 and 1989-12-31在大多数业务决策中,客户通常按组进行分析,例如按国家或按年龄段统计客户。
本练习是课程的一部分
通过完成这段示例代码来试试这个练习。
SELECT ___ -- Count the total number of customers
FROM customers
WHERE date_of_birth ___; -- Select customers born between 1980-01-01 and 1989-12-31