W3cubDocs

/RethinkDB Python

ReQL command: day_of_year

Command syntax

time.day_of_year() → number

Description

Return the day of the year of a time object as a number between 1 and 366 (following ISO 8601 standard).

Example: Retrieve all the users who were born the first day of a year.

r.table("users").filter(
    r.row["birthdate"].day_of_year() == 1
).run(conn)

Related commands

Get more help

Couldn't find what you were looking for?

© RethinkDB contributors
Licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License.
https://rethinkdb.com/api/python/day_of_year/