实现概念数据模型
在构建数据模型的学习过程中,动手实践如何实现模型非常关键。
在我们正在进行的电商项目中,逻辑和概念数据模型显示有 3 个关键实体:customers、orders 和 products。
customers 实体已经就绪。现在,在本练习中,您将专注于为 orders 和 products 定义表结构。
本练习是课程的一部分
Snowflake 中的数据建模入门
交互式实操练习
通过完成这段示例代码来试试这个练习。
-- Create a new products entity
___ products(
-- List the entity's attributes
___,
___
);