Categories: Date/Time
WEEKOFYEAR
Returns the week of year of the date or timestamp.
Syntax
WEEKOFYEAR(date_timestamp_expression string) → bigint
- date_timestamp_expression: A
DATE
orTIMESTAMP
expression.
Examples
WEEKOFYEAR exampleSELECT WEEKOFYEAR('2003-02-01 11:43:22')
-- 5
SELECT "Date", WEEKOFYEAR("Date")
FROM Samples."samples.dremio.com"."SF_incidents2016.json"
LIMIT 3
-- Date, EXPR$1
-- 2016-01-29, 4
-- 2016-01-29, 4
-- 2016-04-25, 17