Extract what you need
In this exercise you will practice preparing date/time elements by using the EXTRACT()
function.
Cet exercice fait partie du cours
Applying SQL to Real-World Problems
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
SELECT payment_date,
EXTRACT(___) AS payment_day
FROM payment;