CommencerCommencer gratuitement

Implementing views

The Star Customer financial company seeks to streamline its data management to efficiently categorize customers and track their product usage. You will create a view to facilitate quick and efficient data retrieval, calculating specific customer categories.

Cet exercice fait partie du cours

Introduction to Data Modeling in Snowflake

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

-- Create a view customer_financial_summary
___ ___ ___
SELECT c.customerid, 
	c.estimatedsalary,
	cp.productid
FROM customers AS c
	-- Merge entity
	___ AS cp 
	___ c.customerid = ___;
Modifier et exécuter le code