LoslegenKostenlos loslegen

Implementing conceptual data model

As you progress in this journey to model data, it's essential to get hands-on practice on how to implement the models.

In our ongoing E-Commerce project, the logical and conceptual data model indicated to us that there are three key entities: customers, orders, and products.

The customers entity is ready, and now, for this exercise, you will focus on defining the table structures for orders and products.

Diese Übung ist Teil des Kurses

Introduction to Data Modeling in Snowflake

Kurs anzeigen

Interaktive Übung

Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.

-- Create a new products entity
___ products(
	-- List the entity's attributes
	___,
    ___
);
Code bearbeiten und ausführen