description |
---|
Returns the week of year of the date or timestamp. |
- date_timestamp_expression: A
DATE
orTIMESTAMP
expression.
Examples
{% code title="WEEKOFYEAR example" %}
SELECT WEEKOFYEAR('2003-02-01 11:43:22')
-- 5
{% endcode %}
{% code title="WEEKOFYEAR example" %}
SELECT "Date", WEEKOFYEAR("Date")
FROM eth.recent_blocks
LIMIT 3
-- Date, EXPR$1
-- 2016-01-29, 4
-- 2016-01-29, 4
-- 2016-04-25, 17
{% endcode %}