4 réponses
- Le plus récent
- Le plus de votes
- La plupart des commentaires
0
You also might need to use date_diff for subtracting the two dates like in this post: https://stackoverflow.com/questions/58326786/athena-datediff
répondu il y a 2 ans
0
Please refer to this documentation page for a list of all Athena functions, and specifically to this trino documentation page for the Date & Time Function.
Your Query should read as:
SELECT avg(date_diff('day',PZD.ORDER_DATE,current_date)) as MY_DATE_DIFF
FROM PZDTORBK PZD
WHERE PZD.ORDER_DATE > cast('2021-01-01'as timestamp)
hope this helps
Contenus pertinents
- demandé il y a 5 mois
- AWS OFFICIELA mis à jour il y a 7 mois
I tried it, but it did not work. I am still getting the same error message. Thank you