Extract what you need
In this exercise you will practice preparing date/time elements by using the EXTRACT()
function.
Este exercício faz parte do curso
Applying SQL to Real-World Problems
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
SELECT payment_date,
EXTRACT(___) AS payment_day
FROM payment;