Type: Function
Function: BEGINNING_OF_MONTH
Syntax: BEGINNING_OF_MONTH(datetime)
Description: Returns a datetime corresponding to the beginning of month for the provided datetime or NOW if no value is provided.
Sample usage:
BEGINNING_OF_MONTH(created_at)returns thecreated_atfield value set at midnight on the first day of the month. Ifcreated_atis equal to2023-02-23T15:39:21ZthenBEGINNING_OF_MONTH(created_at)returns2023-02-01T00:00:00Z.BEGINNING_OF_MONTH()is equal toBEGINNING_OF_MONTH(NOW())BEGINNING_OF_MONTH(DATE(2023, 2, 15))is equal toDATE(2023, 2, 1)
