to_monday

Description

Syntax

DATE to_monday(DATETIME date)

Round a date or datetime down to the nearest Monday, return type is Date or DateV2. Specially, input 1970-01-01, 1970-01-02, 1970-01-03 and 1970-01-04 will return ‘1970-01-01’

example

  1. MySQL [(none)]> select to_monday('2022-09-10');
  2. +----------------------------------+
  3. | to_monday('2022-09-10 00:00:00') |
  4. +----------------------------------+
  5. | 2022-09-05 |
  6. +----------------------------------+

keywords

  1. MONDAY