Get startedGet started for free

Evaluating filter performance

The Idaho field office is reporting issues with a query they are using to get the average well depth for each latitude. One thing you decide to check is the effectiveness of the welldepthmeasure WHERE condition clause.

SELECT latitudemeasure, AVG(welldepthmeasure)
  FROM public_intro_redshift.idaho_monitoring_location 
 WHERE welldepthmeasure > 0.00
 GROUP BY latitudemeasure
 ORDER BY latitudemeasure

Using the EXPLAIN output of this query, how many rows were scanned after the where cause was applied?

This exercise is part of the course

Introduction to Redshift

View Course

Hands-on interactive exercise

Turn theory into action with one of our interactive exercises

Start Exercise