EXPLAIN the filter query plan step
All Olympic athletes are impressive, but athletes that are not yet adults (i.e., too young to drive or vote) are particularly impressive. You will look at these young athletes, those under 16 years, for African athletes across all Winter Olympics.
Before proceeding, feel free to explore the athletes_wint
table and find if any athletes are your age.
Once done exploring, you will use the EXPLAIN
function to see how your WHERE
clause executes.
Cet exercice fait partie du cours
Improving Query Performance in PostgreSQL
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
SELECT ___
FROM athletes_wint
WHERE ___ < ___;