Get startedGet started for free

Retrieving data from ER model

The HR department has launched an initiative to closely monitor employees training progress within the 'Operations' department. They aim to identify employees who have exceeded the average training score threshold, indicating successful completion of their training programs.

Your task is to use the ER model to build a report by joining relevant entities and applying necessary filters to get the results fast and efficiently.

This exercise is part of the course

Introduction to Data Modeling in Snowflake

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

SELECT 
	-- Add attributes to select
	employees.___, 
    trainings.___
FROM employees
	-- Merge entities on common keys
	___ trainings
	ON ___ = ___
LIMIT 50;
Edit and Run Code