Formatting Dates on Google BigQuery

You will love this blog because date functions and formatting differ dramatically between databases, but I have covered that with brilliant examples and clear and concise explanations below.
All of these examples have come from my books and training classes. Please do me a favor and tell your training coordinator that you know the best technical trainer in the world. Ask them to hire me to train at your company, either on-site or with a virtual class. They can see our classes, outlines, and a sample of my teaching at this link on our website.
https://coffingdw.com/education/
This blog will brilliantly break down and explain everything about the formatting dates in any way you desire on a Google BigQuery system. I will include over 12,000 examples to avoid confusion about formatting dates.
Google BigQuery performs date formatting differently than any other system, using the FORMAT_DATE command to format date values according to specified patterns. I will show you everything you need to know to format a date as you desire.
Below are some great examples for formatting a Google BigQuery date to get you a great start to understanding how BigQuery formats.
%Y: Four-digit year.
%y: Two-digit year.
%g: Two-digit year without century (00-99).
%m: Month (01-12).
%d: Day of the month (01-31) with leading zero.
%e: Day of the month (1-31) without leading zero.
%B: Full month name (e.g., January, February).
%b: Abbreviated month name (e.g., Jan, Feb).
%e: Day of the month (1-31) without leading zero.
Quarter: Literal text ‘Quarter’.
%Q: Quarter of the year (1-4), derived from the month.
%A: Full day of the week name (e.g., Sunday, Monday).
%a: Abbreviated day of the week name (e.g., Sun, Mon).
DOY: Literal text ‘DOY’.
%j: Day of the year (001-366).

Did you know that you can use the FORMAT_DATE function in BigQuery to filter rows in the WHERE and the AND clause of a query? The BigQuery query example below uses the FORMAT_DATE function in the WHERE and AND clause to only return rows where the customer_timestamp has a minute of ’54’ and a second of ’34’. Notice that we need to put the values in single quotes.

In the context of the FORMAT_DATE command, you will use the support element as a placeholder or code that represents a specific date component when formatting the date. Each support element in the provided list corresponds to a particular aspect of the date, such as day, month, year, weekday, etc. Support elements allow users to control the output format of date values according to their preferences.
The picture below shows you the majority of support elements.

Below is a table that shows the most popular formatting worldwide.
Syntax | Result |
---|---|
SELECT current_date as Todays_Date, | 2024-01-18 |
FORMAT_DATE(%m/%d/%Y, current_date) as US | 01/18/2024 |
FORMAT_DATE(%d/%m/%Y, current_date) as European | 18/01/2024 |
FORMAT_DATE(%Y-%m-%d, current_date) as ISO_8601 | 2024-01-18 |
FORMAT_DATE(%Y年%m月%d日, current_date) as Japanese | 2024年01月18日 |
FORMAT_DATE(%d/%m/%Y, current_date) as Brazilian | 18/01/2024 |
FORMAT_DATE(%Y年%m月%d日, current_date) as Chinese | 2024年01月18日 |
FORMAT_DATE(%d-%m-%Y, current_date) as Indian | 18-01-2024 |
FORMAT_DATE(%Y-%m-%d, current_date) as Canadian | 2024-01-18 |
FORMAT_DATE(%d/%m/%Y, current_date) as Australian | 18/01/2024 |
FORMAT_DATE(%d.%m.%Y, current_date) as Russian | 18.01.2024 |
FORMAT_DATE(%Y/%m/%d, current_date) as South_African | 2024/01/18 |
FORMAT_DATE(%d/%m/%Y, current_date) as British | 18/01/2024 |
FORMAT_DATE(%d/%m/%Y, current_date) as Mexican | 18/01/2024 |
FORMAT_DATE(%Y년 %m월 %d일, current_date) as Korean | 2024년 01월 18일 |
FORMAT_DATE(%d/%m/%Y, current_date) as Middle_Eastern | 18/01/2024 |
The table below shows you 20 creative examples you might want to use. Notice that you can use single or double quotes interchangeably in BigQuery. Also, notice that some examples use CURRENT_DATE, which you can substitute for a date column, and others use a literal date of ‘2024-12-31’.
Syntax | Result |
---|---|
CURRENT_DATE | 2024-01-18 |
FORMAT_DATE('%Y-%m-%d', CURRENT_DATE) | 2024-01-18 |
FORMAT_DATE('%y/%m/%d', CURRENT_DATE) | 24/01/18 |
FORMAT_DATE('%Y-%B-%e', CURRENT_DATE) | 2024-January-18 |
FORMAT_DATE('%y %b %d', CURRENT_DATE) | 24 Jan 18 |
FORMAT_DATE('%G-%B-%d Day %j', CURRENT_DATE) | 2024-January-18 Day 018 |
FORMAT_DATE('%d-%m-%Y', CURRENT_DATE) | 18-01-2024 |
FORMAT_DATE('%d-%m-%g', CURRENT_DATE) | 18-01-24 |
FORMAT_DATE('%d:%m:%E4Y ISO Week %V', CURRENT_DATE) | 18:01:2024 ISO Week 03 |
FORMAT_DATE('%m-%e-%E4Y', CURRENT_DATE) | 01-18-2024 |
FORMAT_DATE('%m/%e/%y', CURRENT_DATE) | 01/18/24 |
FORMAT_DATE(%d.%m.%Y, current_date) | 18.01.2024 |
FORMAT_DATE('%B-%e-%Y Day %j', CURRENT_DATE) | January-18-2024 Day 018 |
FORMAT_DATE('%a %b %d, %Y', CURRENT_DATE) | Thu Jan 18, 2024 |
FORMAT_DATE('%A %B %e, %y', CURRENT_DATE) | Thursday January 18, 24 |
FORMAT_DATE('%g-%b-%d Day %j', DATE '2024-12-31') | 25-Dec-31 Day 366 |
FORMAT_DATE('%G/%B/%e %A', DATE '2024-12-31') | 2025/December/31 Tuesday |
FORMAT_DATE('%Y-%b-%d Quarter %Q', DATE '2024-12-31') | 2024-Dec-31 Quarter 4 |
FORMAT_DATE('%d.%B.%Y', DATE '2024-12-31') | 31.December.2024 |
FORMAT_DATE('%d/%B/%Y Week %W', DATE '2024-12-31') | 31/December/2024 Week 53 |
The final table shows you 12,000 Google BigQuery DATE_FORMAT examples and the results.
SYNTAX | RESULTS |
---|---|
CURRENT_DATE as TODAYS_DATE | 2024-01-11 |
FORMAT_DATE('%A', CURRENT_DATE) AS FULL_WEEK_NAME -- The full weekday name | Thursday |
FORMAT_DATE('%a', CURRENT_DATE) AS ABB_WEEK_NAME -- The abbreviated weekday name | Thu |
FORMAT_DATE('%B', CURRENT_DATE) AS FULL_MNTH_NAME -- The full month name | January |
FORMAT_DATE('%b', CURRENT_DATE) AS ABB_MNTH_NAME -- The abbreviated month name | Jan |
FORMAT_DATE('%h', CURRENT_DATE) AS ABB_MNTH_NAME2 -- The abbreviated month name | Jan |
FORMAT_DATE('%C', CURRENT_DATE) AS CNTRY_YR_DIV_100 -- The century (a year divided by 100 and truncated to an integer) number (00-99) | 20 |
FORMAT_DATE('%D', CURRENT_DATE) AS MMDDYY -- The date in the format %m/%d/%y | 01/11/24 |
FORMAT_DATE('%d', CURRENT_DATE) AS DAY_OF_MNTH_01_31 -- The day of the month as a decimal number (01-31) | 11 |
FORMAT_DATE('%e', CURRENT_DATE) AS DAY_OF_MNTH_1_31-- The day of month as a decimal number (1-31); single digits preceded by a space | 11 |
FORMAT_DATE('%F', CURRENT_DATE) AS YYYY_MM_DD -- The date in the format %Y-%m-%d. | 2024-01-11 |
FORMAT_DATE('%G', CURRENT_DATE) AS ISO_YYYY -- The ISO 8601 year with century as a decimal number | 2024 |
FORMAT_DATE('%g', CURRENT_DATE) AS ISO_YY -- The ISO 8601 year without century as a decimal number (00-99) | 24 |
FORMAT_DATE('%j', CURRENT_DATE) AS DAY_OF_YR_001_366 -- The day of the year as a decimal number (001-366) | 011 |
FORMAT_DATE('%m', CURRENT_DATE) AS MONTH_01_31 -- The month as a decimal number (01-12) | 01 |
FORMAT_DATE('%n', CURRENT_DATE) AS NEWLINE -- A newline character | |
FORMAT_DATE('%Q', CURRENT_DATE) AS QTR_1_4 -- The quarter as a decimal number (1-4) | 1 |
FORMAT_DATE('%t', CURRENT_DATE) AS TAB -- A tab character | |
FORMAT_DATE('%U', CURRENT_DATE) AS WK_NUM_YR_SUN_FIRST -- The week number of the year (Sunday as the first day of the week) | 01 |
FORMAT_DATE('%u', CURRENT_DATE) AS WK_DAY_1_7_Mon_First -- The weekday (Monday as the first day of the week) as a decimal number (1-7) | 4 |
FORMAT_DATE('%V', CURRENT_DATE) AS ISO_WK_NUM_YR_MON_FIRST -- The ISO 8601-week number of the year (Monday as the first day of the week) | 02 |
FORMAT_DATE('%W', CURRENT_DATE) AS WK_NUM_YR_MON_FIRST -- The week number of the year (Monday as the first day of the week) | 02 |
FORMAT_DATE('%w', CURRENT_DATE) AS WK_DAY_SUN_FIRST_0_6 -- The weekday (Sunday as the first day of the week) as a decimal number (0-6) | 4 |
FORMAT_DATE('%x', CURRENT_DATE) AS MM_DD_YY -- The date representation in MM/DD/YY format | 01/11/24 |
FORMAT_DATE('%Y', CURRENT_DATE) AS YR_YYYY -- The year with century as a decimal number | 2024 |
FORMAT_DATE('%y', CURRENT_DATE) AS YR_YY -- The year without century as a decimal number (00-99) | 24 |
FORMAT_DATE('%E4Y', CURRENT_DATE) AS YYYY_0001_9999 -- Four-character years (0001 ... 9999) | 2024 |
FORMAT_DATE('%H', CURRENT_TIMESTAMP) AS HOUR_24 -- Time and Timestamp Hour (00-23) | 11 |
FORMAT_DATE('%I', CURRENT_TIMESTAMP) AS HOUR_12 -- Time and Timestamp Hour (01-12) | 11 |
FORMAT_DATE('%M', CURRENT_TIMESTAMP) AS MIN_TS_TIME -- Time and Timestamp Minute (00-59) | 13 |
FORMAT_DATE('%S', CURRENT_TIMESTAMP) AS SEC_TS_TIME -- Time and Timestamp Second (00-59) | 59 |
FORMAT_DATE('%P', CURRENT_TIMESTAMP) AS AM_OR_PM -- Time and Timestamp AM or PM | am |
FORMAT_DATE('%Y-%m', CURRENT_DATE) as YYYYMM | 2024-01 |
FORMAT_DATE('%E4Y-%m', CURRENT_DATE) as YYYYMM2 | 2024-01 |
FORMAT_DATE('%y-%m', CURRENT_DATE) as YYMM | 24-01 |
FORMAT_DATE('%G-%m', CURRENT_DATE) as IYYYMM | 2024-01 |
FORMAT_DATE('%g-%m', CURRENT_DATE) as IYMM | 24-01 |
FORMAT_DATE('%Y-%B', CURRENT_DATE) as YYYYMONTH | 2024-January |
FORMAT_DATE('%E4Y-%B', CURRENT_DATE) as YYYYMONTH2 | 2024-January |
FORMAT_DATE('%y-%B', CURRENT_DATE) as YYMONTH | 24-January |
FORMAT_DATE('%G-%B', CURRENT_DATE) as IYYYMONTH | 2024-January |
FORMAT_DATE('%g-%B', CURRENT_DATE) as IYMONTH | 24-January |
FORMAT_DATE('%Y-%b', CURRENT_DATE) as YYYYMON | 2024-Jan |
FORMAT_DATE('%E4Y-%b', CURRENT_DATE) as YYYYMON2 | 2024-Jan |
FORMAT_DATE('%y-%b', CURRENT_DATE) as YYMON | 24-Jan |
FORMAT_DATE('%G-%b', CURRENT_DATE) as IYYYMON | 2024-Jan |
FORMAT_DATE('%g-%b', CURRENT_DATE) as IYMON | 24-Jan |
FORMAT_DATE('%Y-%h', CURRENT_DATE) as YYYYMON2 | 2024-Jan |
FORMAT_DATE('%E4Y-%h', CURRENT_DATE) as YYYYMON3 | 2024-Jan |
FORMAT_DATE('%y-%h', CURRENT_DATE) as YYMON2 | 24-Jan |
FORMAT_DATE('%G-%h', CURRENT_DATE) as IYYYMON2 | 2024-Jan |
FORMAT_DATE('%g-%h', CURRENT_DATE) as IYMON2 | 24-Jan |
FORMAT_DATE('%m-%Y', CURRENT_DATE) as MMYYYY | 01-2024 |
FORMAT_DATE('%m-%E4Y', CURRENT_DATE) as MM2YYYY | 01-2024 |
FORMAT_DATE('%m-%y', CURRENT_DATE) as MMYY | 01-24 |
FORMAT_DATE('%m-%G', CURRENT_DATE) as MMIYYY | 01-2024 |
FORMAT_DATE('%m-%g', CURRENT_DATE) as MMIY | 01-24 |
FORMAT_DATE('%B-%Y', CURRENT_DATE) as MONTHYYYY | January-2024 |
FORMAT_DATE('%B-%E4Y', CURRENT_DATE) as MONTH2YYYY | January-2024 |
FORMAT_DATE('%B%y', CURRENT_DATE) as MONTHYY | January24 |
FORMAT_DATE('%B-%G', CURRENT_DATE) as MONTHIYYY | January-2024 |
FORMAT_DATE('%B-%g', CURRENT_DATE) as MONTHIY | January-24 |
FORMAT_DATE('%b-%Y', CURRENT_DATE) as MONYYYY | Jan-2024 |
FORMAT_DATE('%b-%E4Y', CURRENT_DATE) as MON2YYYY | Jan-2024 |
FORMAT_DATE('%b-%y', CURRENT_DATE) as MONYY | Jan-24 |
FORMAT_DATE('%b-%G', CURRENT_DATE) as MONIYYY | Jan-2024 |
FORMAT_DATE('%b-%g', CURRENT_DATE) as MONIY | Jan-24 |
FORMAT_DATE('%h-%Y', CURRENT_DATE) as MON2YYYY | Jan-2024 |
FORMAT_DATE('%h-%E4Y', CURRENT_DATE) as MON3YYYY | Jan-2024 |
FORMAT_DATE('%h-%y', CURRENT_DATE) as MON2YY | Jan-24 |
FORMAT_DATE('%h-%G', CURRENT_DATE) as MON2IYYY | Jan-2024 |
FORMAT_DATE('%h-%g', CURRENT_DATE) as MON2IY | Jan-24 |
FORMAT_DATE('%m-%d', CURRENT_DATE) as MM_DD_01_31 | 01-11 |
FORMAT_DATE('%m-%e', CURRENT_DATE) as MM_D_1_31 | 01-11 |
FORMAT_DATE('%B-%d', CURRENT_DATE) as MONTH_DD_01_31 | January-11 |
FORMAT_DATE('%B-%e', CURRENT_DATE) as MONTH_D_1_31 | January-11 |
FORMAT_DATE('%b-%d', CURRENT_DATE) as MON_DD_01_31 | Jan-11 |
FORMAT_DATE('%b-%e', CURRENT_DATE) as MON_D_1_31 | Jan-11 |
FORMAT_DATE('%h-%d', CURRENT_DATE) as MON2_DD_01_31 | Jan-11 |
FORMAT_DATE('%h-%e', CURRENT_DATE) as MON2_D_1_31 | Jan-11 |
FORMAT_DATE('%d-%m', CURRENT_DATE) as DD_01_31_MM | 11-01 |
FORMAT_DATE('%e-%m', CURRENT_DATE) as D_1_31_MM | 11-01 |
FORMAT_DATE('%d-%B', CURRENT_DATE) as DD_01_31_MONTH | 11-January |
FORMAT_DATE('%e-%B', CURRENT_DATE) as D_1_31_MONTH | 11-January |
FORMAT_DATE('%d-%b', CURRENT_DATE) as DD_01_31_MON | 11-Jan |
FORMAT_DATE('%e-%b', CURRENT_DATE) as D_1_31_MON | 11-Jan |
FORMAT_DATE('%d-%h', CURRENT_DATE) as DD_01_31_MON2 | 11-Jan |
FORMAT_DATE('%e-%h', CURRENT_DATE) as D_1_31_MON2 | 11-Jan |
FORMAT_DATE('%Y/%m', CURRENT_DATE) as YYYYMM_S | 2024/01 |
FORMAT_DATE('%E4Y/%m', CURRENT_DATE) as YYYYMM2_S | 2024/01 |
FORMAT_DATE('%y/%m', CURRENT_DATE) as YYMM_S | 24/01 |
FORMAT_DATE('%G/%m', CURRENT_DATE) as IYYYMM_S | 2024/01 |
FORMAT_DATE('%g/%m', CURRENT_DATE) as IYMM_S | 24/01 |
FORMAT_DATE('%Y/%B', CURRENT_DATE) as YYYYMONTH_S | 2024/January |
FORMAT_DATE('%E4Y/%B', CURRENT_DATE) as YYYYMONTH2_S | 2024/January |
FORMAT_DATE('%y/%B', CURRENT_DATE) as YYMONTH_S | 24/January |
FORMAT_DATE('%G/%B', CURRENT_DATE) as IYYYMONTH_S | 2024/January |
FORMAT_DATE('%g/%B', CURRENT_DATE) as IYMONTH_S | 24/January |
FORMAT_DATE('%Y/%b', CURRENT_DATE) as YYYYMON_S | 2024/Jan |
FORMAT_DATE('%E4Y/%b', CURRENT_DATE) as YYYYMON2_S | 2024/Jan |
FORMAT_DATE('%y/%b', CURRENT_DATE) as YYMON_S | 24/Jan |
FORMAT_DATE('%G/%b', CURRENT_DATE) as IYYYMON_S | 2024/Jan |
FORMAT_DATE('%g/%b', CURRENT_DATE) as IYMON_S | 24/Jan |
FORMAT_DATE('%Y/%h', CURRENT_DATE) as YYYYMON2_S | 2024/Jan |
FORMAT_DATE('%E4Y/%h', CURRENT_DATE) as YYYYMON3_S | 2024/Jan |
FORMAT_DATE('%y/%h', CURRENT_DATE) as YYMON2_S | 24/Jan |
FORMAT_DATE('%G/%h', CURRENT_DATE) as IYYYMON2_S | 2024/Jan |
FORMAT_DATE('%g/%h', CURRENT_DATE) as IYMON2_S | 24/Jan |
FORMAT_DATE('%m/%Y', CURRENT_DATE) as MMYYYY_S | 01/2024 |
FORMAT_DATE('%m/%E4Y', CURRENT_DATE) as MM2YYYY_S | 01/2024 |
FORMAT_DATE('%m/%y', CURRENT_DATE) as MMYY_S | 01/24 |
FORMAT_DATE('%m/%G', CURRENT_DATE) as MMIYYY_S | 01/2024 |
FORMAT_DATE('%m/%g', CURRENT_DATE) as MMIY_S | 01/24 |
FORMAT_DATE('%B/%Y', CURRENT_DATE) as MONTHYYYY_S | January/2024 |
FORMAT_DATE('%B/%E4Y', CURRENT_DATE) as MONTH2YYYY_S | January/2024 |
FORMAT_DATE('%B%y', CURRENT_DATE) as MONTHYY_S | January24 |
FORMAT_DATE('%B/%G', CURRENT_DATE) as MONTHIYYY_S | January/2024 |
FORMAT_DATE('%B/%g', CURRENT_DATE) as MONTHIY_S | January/24 |
FORMAT_DATE('%b/%Y', CURRENT_DATE) as MONYYYY_S | Jan/2024 |
FORMAT_DATE('%b/%E4Y', CURRENT_DATE) as MON2YYYY_S | Jan/2024 |
FORMAT_DATE('%b/%y', CURRENT_DATE) as MONYY_S | Jan/24 |
FORMAT_DATE('%b/%G', CURRENT_DATE) as MONIYYY_S | Jan/2024 |
FORMAT_DATE('%b/%g', CURRENT_DATE) as MONIY_S | Jan/24 |
FORMAT_DATE('%h/%Y', CURRENT_DATE) as MON2YYYY_S | Jan/2024 |
FORMAT_DATE('%h/%E4Y', CURRENT_DATE) as MON3YYYY_S | Jan/2024 |
FORMAT_DATE('%h/%y', CURRENT_DATE) as MON2YY_S | Jan/24 |
FORMAT_DATE('%h/%G', CURRENT_DATE) as MON2IYYY_S | Jan/2024 |
FORMAT_DATE('%h/%g', CURRENT_DATE) as MON2IY_S | Jan/24 |
FORMAT_DATE('%m/%d', CURRENT_DATE) as MM_DD_01_31_S | 01/11 |
FORMAT_DATE('%m/%e', CURRENT_DATE) as MM_D_1_31_S | 01/11 |
FORMAT_DATE('%B/%d', CURRENT_DATE) as MONTH_DD_01_31_S | January/11 |
FORMAT_DATE('%B/%e', CURRENT_DATE) as MONTH_D_1_31_S | January/11 |
FORMAT_DATE('%b/%d', CURRENT_DATE) as MON_DD_01_31_S | Jan/11 |
FORMAT_DATE('%b/%e', CURRENT_DATE) as MON_D_1_31_S | Jan/11 |
FORMAT_DATE('%h/%d', CURRENT_DATE) as MON2_DD_01_31_S | Jan/11 |
FORMAT_DATE('%h/%e', CURRENT_DATE) as MON2_D_1_31_S | Jan/11 |
FORMAT_DATE('%d/%m', CURRENT_DATE) as DD_01_31_MM_S | 11/01 |
FORMAT_DATE('%e/%m', CURRENT_DATE) as D_1_31_MM_S | 11/01 |
FORMAT_DATE('%d/%B', CURRENT_DATE) as DD_01_31_MONTH_S | 11/January |
FORMAT_DATE('%e/%B', CURRENT_DATE) as D_1_31_MONTH_S | 11/January |
FORMAT_DATE('%d/%b', CURRENT_DATE) as DD_01_31_MON_S | 11/Jan |
FORMAT_DATE('%e/%b', CURRENT_DATE) as D_1_31_MON_S | 11/Jan |
FORMAT_DATE('%d/%h', CURRENT_DATE) as DD_01_31_MON2_S | 11/Jan |
FORMAT_DATE('%e/%h', CURRENT_DATE) as D_1_31_MON2_S | 11/Jan |
FORMAT_DATE('%Y:%m', CURRENT_DATE) as YYYYMM_C | 2024:01 |
FORMAT_DATE('%E4Y:%m', CURRENT_DATE) as YYYYMM2_C | 2024:01 |
FORMAT_DATE('%y:%m', CURRENT_DATE) as YYMM_C | 24:01 |
FORMAT_DATE('%G:%m', CURRENT_DATE) as IYYYMM_C | 2024:01 |
FORMAT_DATE('%g:%m', CURRENT_DATE) as IYMM_C | 24:01 |
FORMAT_DATE('%Y:%B', CURRENT_DATE) as YYYYMONTH_C | 2024:January |
FORMAT_DATE('%E4Y:%B', CURRENT_DATE) as YYYYMONTH2_C | 2024:January |
FORMAT_DATE('%y:%B', CURRENT_DATE) as YYMONTH_C | 24:January |
FORMAT_DATE('%G:%B', CURRENT_DATE) as IYYYMONTH_C | 2024:January |
FORMAT_DATE('%g:%B', CURRENT_DATE) as IYMONTH_C | 24:January |
FORMAT_DATE('%Y:%b', CURRENT_DATE) as YYYYMON_C | 2024:Jan |
FORMAT_DATE('%E4Y:%b', CURRENT_DATE) as YYYYMON2_C | 2024:Jan |
FORMAT_DATE('%y:%b', CURRENT_DATE) as YYMON_C | 24:Jan |
FORMAT_DATE('%G:%b', CURRENT_DATE) as IYYYMON_C | 2024:Jan |
FORMAT_DATE('%g:%b', CURRENT_DATE) as IYMON_C | 24:Jan |
FORMAT_DATE('%Y:%h', CURRENT_DATE) as YYYYMON2_C | 2024:Jan |
FORMAT_DATE('%E4Y:%h', CURRENT_DATE) as YYYYMON3_C | 2024:Jan |
FORMAT_DATE('%y:%h', CURRENT_DATE) as YYMON2_C | 24:Jan |
FORMAT_DATE('%G:%h', CURRENT_DATE) as IYYYMON2_C | 2024:Jan |
FORMAT_DATE('%g:%h', CURRENT_DATE) as IYMON2_C | 24:Jan |
FORMAT_DATE('%m:%Y', CURRENT_DATE) as MMYYYY_C | 01:2024 |
FORMAT_DATE('%m:%E4Y', CURRENT_DATE) as MM2YYYY_C | 01:2024 |
FORMAT_DATE('%m:%y', CURRENT_DATE) as MMYY_C | 01:24 |
FORMAT_DATE('%m:%G', CURRENT_DATE) as MMIYYY_C | 01:2024 |
FORMAT_DATE('%m:%g', CURRENT_DATE) as MMIY_C | 01:24 |
FORMAT_DATE('%B:%Y', CURRENT_DATE) as MONTHYYYY_C | January:2024 |
FORMAT_DATE('%B:%E4Y', CURRENT_DATE) as MONTH2YYYY_C | January:2024 |
FORMAT_DATE('%B%y', CURRENT_DATE) as MONTHYY_C | January24 |
FORMAT_DATE('%B:%G', CURRENT_DATE) as MONTHIYYY_C | January:2024 |
FORMAT_DATE('%B:%g', CURRENT_DATE) as MONTHIY_C | January:24 |
FORMAT_DATE('%b:%Y', CURRENT_DATE) as MONYYYY_C | Jan:2024 |
FORMAT_DATE('%b:%E4Y', CURRENT_DATE) as MON2YYYY_C | Jan:2024 |
FORMAT_DATE('%b:%y', CURRENT_DATE) as MONYY_C | Jan:24 |
FORMAT_DATE('%b:%G', CURRENT_DATE) as MONIYYY_C | Jan:2024 |
FORMAT_DATE('%b:%g', CURRENT_DATE) as MONIY_C | Jan:24 |
FORMAT_DATE('%h:%Y', CURRENT_DATE) as MON2YYYY_C | Jan:2024 |
FORMAT_DATE('%h:%E4Y', CURRENT_DATE) as MON3YYYY_C | Jan:2024 |
FORMAT_DATE('%h:%y', CURRENT_DATE) as MON2YY_C | Jan:24 |
FORMAT_DATE('%h:%G', CURRENT_DATE) as MON2IYYY_C | Jan:2024 |
FORMAT_DATE('%h:%g', CURRENT_DATE) as MON2IY_C | Jan:24 |
FORMAT_DATE('%m:%d', CURRENT_DATE) as MM_DD_01_31_C | 01:11 |
FORMAT_DATE('%m:%e', CURRENT_DATE) as MM_D_1_31_C | 01:11 |
FORMAT_DATE('%B:%d', CURRENT_DATE) as MONTH_DD_01_31_C | January:11 |
FORMAT_DATE('%B:%e', CURRENT_DATE) as MONTH_D_1_31_C | January:11 |
FORMAT_DATE('%b:%d', CURRENT_DATE) as MON_DD_01_31_C | Jan:11 |
FORMAT_DATE('%b:%e', CURRENT_DATE) as MON_D_1_31_C | Jan:11 |
FORMAT_DATE('%h:%d', CURRENT_DATE) as MON2_DD_01_31_C | Jan:11 |
FORMAT_DATE('%h:%e', CURRENT_DATE) as MON2_D_1_31_C | Jan:11 |
FORMAT_DATE('%d:%m', CURRENT_DATE) as DD_01_31_MM_C | 11:01 |
FORMAT_DATE('%e:%m', CURRENT_DATE) as D_1_31_MM_C | 11:01 |
FORMAT_DATE('%d:%B', CURRENT_DATE) as DD_01_31_MONTH_C | 11:January |
FORMAT_DATE('%e:%B', CURRENT_DATE) as D_1_31_MONTH_C | 11:January |
FORMAT_DATE('%d:%b', CURRENT_DATE) as DD_01_31_MON_C | 11:Jan |
FORMAT_DATE('%e:%b', CURRENT_DATE) as D_1_31_MON_C | 11:Jan |
FORMAT_DATE('%d:%h', CURRENT_DATE) as DD_01_31_MON2_C | 11:Jan |
FORMAT_DATE('%e:%h', CURRENT_DATE) as D_1_31_MON2_C | 11:Jan |
FORMAT_DATE('%Y.%m', CURRENT_DATE) as YYYYMM_P | 2024.01 |
FORMAT_DATE('%E4Y.%m', CURRENT_DATE) as YYYYMM2_P | 2024.01 |
FORMAT_DATE('%y.%m', CURRENT_DATE) as YYMM_P | 24.01 |
FORMAT_DATE('%G.%m', CURRENT_DATE) as IYYYMM_P | 2024.01 |
FORMAT_DATE('%g.%m', CURRENT_DATE) as IYMM_P | 24.01 |
FORMAT_DATE('%Y.%B', CURRENT_DATE) as YYYYMONTH_P | 2024.January |
FORMAT_DATE('%E4Y.%B', CURRENT_DATE) as YYYYMONTH2_P | 2024.January |
FORMAT_DATE('%y.%B', CURRENT_DATE) as YYMONTH_P | 24.January |
FORMAT_DATE('%G.%B', CURRENT_DATE) as IYYYMONTH_P | 2024.January |
FORMAT_DATE('%g.%B', CURRENT_DATE) as IYMONTH_P | 24.January |
FORMAT_DATE('%Y.%b', CURRENT_DATE) as YYYYMON_P | 2024.Jan |
FORMAT_DATE('%E4Y.%b', CURRENT_DATE) as YYYYMON2_P | 2024.Jan |
FORMAT_DATE('%y.%b', CURRENT_DATE) as YYMON_P | 24.Jan |
FORMAT_DATE('%G.%b', CURRENT_DATE) as IYYYMON_P | 2024.Jan |
FORMAT_DATE('%g.%b', CURRENT_DATE) as IYMON_P | 24.Jan |
FORMAT_DATE('%Y.%h', CURRENT_DATE) as YYYYMON2_P | 2024.Jan |
FORMAT_DATE('%E4Y.%h', CURRENT_DATE) as YYYYMON3_P | 2024.Jan |
FORMAT_DATE('%y.%h', CURRENT_DATE) as YYMON2_P | 24.Jan |
FORMAT_DATE('%G.%h', CURRENT_DATE) as IYYYMON2_P | 2024.Jan |
FORMAT_DATE('%g.%h', CURRENT_DATE) as IYMON2_P | 24.Jan |
FORMAT_DATE('%m.%Y', CURRENT_DATE) as MMYYYY_P | 01.2024 |
FORMAT_DATE('%m.%E4Y', CURRENT_DATE) as MM2YYYY_P | 01.2024 |
FORMAT_DATE('%m.%y', CURRENT_DATE) as MMYY_P | 01.24 |
FORMAT_DATE('%m.%G', CURRENT_DATE) as MMIYYY_P | 01.2024 |
FORMAT_DATE('%m.%g', CURRENT_DATE) as MMIY_P | 01.24 |
FORMAT_DATE('%B.%Y', CURRENT_DATE) as MONTHYYYY_P | January.2024 |
FORMAT_DATE('%B.%E4Y', CURRENT_DATE) as MONTH2YYYY_P | January.2024 |
FORMAT_DATE('%B%y', CURRENT_DATE) as MONTHYY_P | January24 |
FORMAT_DATE('%B.%G', CURRENT_DATE) as MONTHIYYY_P | January.2024 |
FORMAT_DATE('%B.%g', CURRENT_DATE) as MONTHIY_P | January.24 |
FORMAT_DATE('%b.%Y', CURRENT_DATE) as MONYYYY_P | Jan.2024 |
FORMAT_DATE('%b.%E4Y', CURRENT_DATE) as MON2YYYY_P | Jan.2024 |
FORMAT_DATE('%b.%y', CURRENT_DATE) as MONYY_P | Jan.24 |
FORMAT_DATE('%b.%G', CURRENT_DATE) as MONIYYY_P | Jan.2024 |
FORMAT_DATE('%b.%g', CURRENT_DATE) as MONIY_P | Jan.24 |
FORMAT_DATE('%h.%Y', CURRENT_DATE) as MON2YYYY_P | Jan.2024 |
FORMAT_DATE('%h.%E4Y', CURRENT_DATE) as MON3YYYY_P | Jan.2024 |
FORMAT_DATE('%h.%y', CURRENT_DATE) as MON2YY_P | Jan.24 |
FORMAT_DATE('%h.%G', CURRENT_DATE) as MON2IYYY_P | Jan.2024 |
FORMAT_DATE('%h.%g', CURRENT_DATE) as MON2IY_P | Jan.24 |
FORMAT_DATE('%m.%d', CURRENT_DATE) as MM_DD_01_31_P | 01.11 |
FORMAT_DATE('%m.%e', CURRENT_DATE) as MM_D_1_31_P | 01.11 |
FORMAT_DATE('%B.%d', CURRENT_DATE) as MONTH_DD_01_31_P | January.11 |
FORMAT_DATE('%B.%e', CURRENT_DATE) as MONTH_D_1_31_P | January.11 |
FORMAT_DATE('%b.%d', CURRENT_DATE) as MON_DD_01_31_P | Jan.11 |
FORMAT_DATE('%b.%e', CURRENT_DATE) as MON_D_1_31_P | Jan.11 |
FORMAT_DATE('%h.%d', CURRENT_DATE) as MON2_DD_01_31_P | Jan.11 |
FORMAT_DATE('%h.%e', CURRENT_DATE) as MON2_D_1_31_P | Jan.11 |
FORMAT_DATE('%d.%m', CURRENT_DATE) as DD_01_31_MM_P | 11.01 |
FORMAT_DATE('%e.%m', CURRENT_DATE) as D_1_31_MM_P | 11.01 |
FORMAT_DATE('%d.%B', CURRENT_DATE) as DD_01_31_MONTH_P | 11.January |
FORMAT_DATE('%e.%B', CURRENT_DATE) as D_1_31_MONTH_P | 11.January |
FORMAT_DATE('%d.%b', CURRENT_DATE) as DD_01_31_MON_P | 11.Jan |
FORMAT_DATE('%e.%b', CURRENT_DATE) as D_1_31_MON_P | 11.Jan |
FORMAT_DATE('%d.%h', CURRENT_DATE) as DD_01_31_MON2_P | 11.Jan |
FORMAT_DATE('%e.%h', CURRENT_DATE) as D_1_31_MON2_P | 11.Jan |
FORMAT_DATE('%Y %m', CURRENT_DATE) as YYYYMM_SP | 2024 01 |
FORMAT_DATE('%E4Y %m', CURRENT_DATE) as YYYYMM2_SP | 2024 01 |
FORMAT_DATE('%y %m', CURRENT_DATE) as YYMM_SP | 24 01 |
FORMAT_DATE('%G %m', CURRENT_DATE) as IYYYMM_SP | 2024 01 |
FORMAT_DATE('%g %m', CURRENT_DATE) as IYMM_SP | 24 01 |
FORMAT_DATE('%Y %B', CURRENT_DATE) as YYYYMONTH_SP | 2024 January |
FORMAT_DATE('%E4Y %B', CURRENT_DATE) as YYYYMONTH2_SP | 2024 January |
FORMAT_DATE('%y %B', CURRENT_DATE) as YYMONTH_SP | 24 January |
FORMAT_DATE('%G %B', CURRENT_DATE) as IYYYMONTH_SP | 2024 January |
FORMAT_DATE('%g %B', CURRENT_DATE) as IYMONTH_SP | 24 January |
FORMAT_DATE('%Y %b', CURRENT_DATE) as YYYYMON_SP | 2024 Jan |
FORMAT_DATE('%E4Y %b', CURRENT_DATE) as YYYYMON2_SP | 2024 Jan |
FORMAT_DATE('%y %b', CURRENT_DATE) as YYMON_SP | 24 Jan |
FORMAT_DATE('%G %b', CURRENT_DATE) as IYYYMON_SP | 2024 Jan |
FORMAT_DATE('%g %b', CURRENT_DATE) as IYMON_SP | 24 Jan |
FORMAT_DATE('%Y %h', CURRENT_DATE) as YYYYMON2_SP | 2024 Jan |
FORMAT_DATE('%E4Y %h', CURRENT_DATE) as YYYYMON3_SP | 2024 Jan |
FORMAT_DATE('%y %h', CURRENT_DATE) as YYMON2_SP | 24 Jan |
FORMAT_DATE('%G %h', CURRENT_DATE) as IYYYMON2_SP | 2024 Jan |
FORMAT_DATE('%g %h', CURRENT_DATE) as IYMON2_SP | 24 Jan |
FORMAT_DATE('%m %Y', CURRENT_DATE) as MMYYYY_SP | 01 2024 |
FORMAT_DATE('%m %E4Y', CURRENT_DATE) as MM2YYYY_SP | 01 2024 |
FORMAT_DATE('%m %y', CURRENT_DATE) as MMYY_SP | 01 24 |
FORMAT_DATE('%m %G', CURRENT_DATE) as MMIYYY_SP | 01 2024 |
FORMAT_DATE('%m %g', CURRENT_DATE) as MMIY_SP | 01 24 |
FORMAT_DATE('%B %Y', CURRENT_DATE) as MONTHYYYY_SP | January 2024 |
FORMAT_DATE('%B %E4Y', CURRENT_DATE) as MONTH2YYYY_SP | January 2024 |
FORMAT_DATE('%B %y', CURRENT_DATE) as MONTHYY_SP | January 24 |
FORMAT_DATE('%B %G', CURRENT_DATE) as MONTHIYYY_SP | January 2024 |
FORMAT_DATE('%B %g', CURRENT_DATE) as MONTHIY_SP | January 24 |
FORMAT_DATE('%b %Y', CURRENT_DATE) as MONYYYY_SP | Jan 2024 |
FORMAT_DATE('%b %E4Y', CURRENT_DATE) as MON2YYYY_SP | Jan 2024 |
FORMAT_DATE('%b %y', CURRENT_DATE) as MONYY_SP | Jan 24 |
FORMAT_DATE('%b %G', CURRENT_DATE) as MONIYYY_SP | Jan 2024 |
FORMAT_DATE('%b %g', CURRENT_DATE) as MONIY_SP | Jan 24 |
FORMAT_DATE('%h %Y', CURRENT_DATE) as MON2YYYY_SP | Jan 2024 |
FORMAT_DATE('%h %E4Y', CURRENT_DATE) as MON3YYYY_SP | Jan 2024 |
FORMAT_DATE('%h %y', CURRENT_DATE) as MON2YY_SP | Jan 24 |
FORMAT_DATE('%h %G', CURRENT_DATE) as MON2IYYY_SP | Jan 2024 |
FORMAT_DATE('%h %g', CURRENT_DATE) as MON2IY_SP | Jan 24 |
FORMAT_DATE('%m %d', CURRENT_DATE) as MM_DD_01_31_SP | 01 11 |
FORMAT_DATE('%m %e', CURRENT_DATE) as MM_D_1_31_SP | 01 11 |
FORMAT_DATE('%B %d', CURRENT_DATE) as MONTH_DD_01_31_SP | January 11 |
FORMAT_DATE('%B %e', CURRENT_DATE) as MONTH_D_1_31_SP | January 11 |
FORMAT_DATE('%b %d', CURRENT_DATE) as MON_DD_01_31_SP | Jan 11 |
FORMAT_DATE('%b %e', CURRENT_DATE) as MON_D_1_31_SP | Jan 11 |
FORMAT_DATE('%h %d', CURRENT_DATE) as MON2_DD_01_31_SP | Jan 11 |
FORMAT_DATE('%h %e', CURRENT_DATE) as MON2_D_1_31_SP | Jan 11 |
FORMAT_DATE('%d %m', CURRENT_DATE) as DD_01_31_MM_SP | 11 01 |
FORMAT_DATE('%e %m', CURRENT_DATE) as D_1_31_MM_SP | 11 01 |
FORMAT_DATE('%d %B', CURRENT_DATE) as DD_01_31_MONTH_SP | 11 January |
FORMAT_DATE('%e %B', CURRENT_DATE) as D_1_31_MONTH_SP | 11 January |
FORMAT_DATE('%d %b', CURRENT_DATE) as DD_01_31_MON_SP | 11 Jan |
FORMAT_DATE('%e %b', CURRENT_DATE) as D_1_31_MON_SP | 11 Jan |
FORMAT_DATE('%d %h', CURRENT_DATE) as DD_01_31_MON2_SP | 11 Jan |
FORMAT_DATE('%e %h', CURRENT_DATE) as D_1_31_MON2_SP | 11 Jan |
FORMAT_DATE('%Y%m', CURRENT_DATE) as YYYYMM_NO_SP | 202401 |
FORMAT_DATE('%E4Y%m', CURRENT_DATE) as YYYYMM2_NO_SP | 202401 |
FORMAT_DATE('%y%m', CURRENT_DATE) as YYMM_NO_SP | 2401 |
FORMAT_DATE('%G%m', CURRENT_DATE) as IYYYMM_NO_SP | 202401 |
FORMAT_DATE('%g%m', CURRENT_DATE) as IYMM_NO_SP | 2401 |
FORMAT_DATE('%Y%B', CURRENT_DATE) as YYYYMONTH_NO_SP | 2024January |
FORMAT_DATE('%E4Y%B', CURRENT_DATE) as YYYYMONTH2_NO_SP | 2024January |
FORMAT_DATE('%y%B', CURRENT_DATE) as YYMONTH_NO_SP | 24January |
FORMAT_DATE('%G%B', CURRENT_DATE) as IYYYMONTH_NO_SP | 2024January |
FORMAT_DATE('%g%B', CURRENT_DATE) as IYMONTH_NO_SP | 24January |
FORMAT_DATE('%Y%b', CURRENT_DATE) as YYYYMON_NO_SP | 2024Jan |
FORMAT_DATE('%E4Y%b', CURRENT_DATE) as YYYYMON2_NO_SP | 2024Jan |
FORMAT_DATE('%y%b', CURRENT_DATE) as YYMON_NO_SP | 24Jan |
FORMAT_DATE('%G%b', CURRENT_DATE) as IYYYMON_NO_SP | 2024Jan |
FORMAT_DATE('%g%b', CURRENT_DATE) as IYMON_NO_SP | 24Jan |
FORMAT_DATE('%Y%h', CURRENT_DATE) as YYYYMON2_NO_SP | 2024Jan |
FORMAT_DATE('%E4Y%h', CURRENT_DATE) as YYYYMON3_NO_SP | 2024Jan |
FORMAT_DATE('%y%h', CURRENT_DATE) as YYMON2_NO_SP | 24Jan |
FORMAT_DATE('%G%h', CURRENT_DATE) as IYYYMON2_NO_SP | 2024Jan |
FORMAT_DATE('%g%h', CURRENT_DATE) as IYMON2_NO_SP | 24Jan |
FORMAT_DATE('%m%Y', CURRENT_DATE) as MMYYYY_NO_SP | 012024 |
FORMAT_DATE('%m%E4Y', CURRENT_DATE) as MM2YYYY_NO_SP | 012024 |
FORMAT_DATE('%m%y', CURRENT_DATE) as MMYY_NO_SP | 0124 |
FORMAT_DATE('%m%G', CURRENT_DATE) as MMIYYY_NO_SP | 012024 |
FORMAT_DATE('%m%g', CURRENT_DATE) as MMIY_NO_SP | 0124 |
FORMAT_DATE('%B%Y', CURRENT_DATE) as MONTHYYYY_NO_SP | January2024 |
FORMAT_DATE('%B%E4Y', CURRENT_DATE) as MONTH2YYYY_NO_SP | January2024 |
FORMAT_DATE('%B%y', CURRENT_DATE) as MONTHYY_NO_SP | January24 |
FORMAT_DATE('%B%G', CURRENT_DATE) as MONTHIYYY_NO_SP | January2024 |
FORMAT_DATE('%B%g', CURRENT_DATE) as MONTHIY_NO_SP | January24 |
FORMAT_DATE('%b%Y', CURRENT_DATE) as MONYYYY_NO_SP | Jan2024 |
FORMAT_DATE('%b%E4Y', CURRENT_DATE) as MON2YYYY_NO_SP | Jan2024 |
FORMAT_DATE('%b%y', CURRENT_DATE) as MONYY_NO_SP | Jan24 |
FORMAT_DATE('%b%G', CURRENT_DATE) as MONIYYY_NO_SP | Jan2024 |
FORMAT_DATE('%b%g', CURRENT_DATE) as MONIY_NO_SP | Jan24 |
FORMAT_DATE('%h%Y', CURRENT_DATE) as MON2YYYY_NO_SP | Jan2024 |
FORMAT_DATE('%h%E4Y', CURRENT_DATE) as MON3YYYY_NO_SP | Jan2024 |
FORMAT_DATE('%h%y', CURRENT_DATE) as MON2YY_NO_SP | Jan24 |
FORMAT_DATE('%h%G', CURRENT_DATE) as MON2IYYY_NO_SP | Jan2024 |
FORMAT_DATE('%h%g', CURRENT_DATE) as MON2IY_NO_SP | Jan24 |
FORMAT_DATE('%m%d', CURRENT_DATE) as MM_DD_01_31_NO_SP | 0111 |
FORMAT_DATE('%m%e', CURRENT_DATE) as MM_D_1_31_NO_SP | 0111 |
FORMAT_DATE('%B%d', CURRENT_DATE) as MONTH_DD_01_31_NO_SP | January11 |
FORMAT_DATE('%B%e', CURRENT_DATE) as MONTH_D_1_31_NO_SP | January11 |
FORMAT_DATE('%b%d', CURRENT_DATE) as MON_DD_01_31_NO_SP | Jan11 |
FORMAT_DATE('%b%e', CURRENT_DATE) as MON_D_1_31_NO_SP | Jan11 |
FORMAT_DATE('%h%d', CURRENT_DATE) as MON2_DD_01_31_NO_SP | Jan11 |
FORMAT_DATE('%h%e', CURRENT_DATE) as MON2_D_1_31_NO_SP | Jan11 |
FORMAT_DATE('%d%m', CURRENT_DATE) as DD_01_31_MM_NO_SP | 1101 |
FORMAT_DATE('%e%m', CURRENT_DATE) as D_1_31_MM_NO_SP | 1101 |
FORMAT_DATE('%d%B', CURRENT_DATE) as DD_01_31_MONTH_NO_SP | 11January |
FORMAT_DATE('%e%B', CURRENT_DATE) as D_1_31_MONTH_NO_SP | 11January |
FORMAT_DATE('%d%b', CURRENT_DATE) as DD_01_31_MON_NO_SP | 11Jan |
FORMAT_DATE('%e%b', CURRENT_DATE) as D_1_31_MON_NO_SP | 11Jan |
FORMAT_DATE('%d%h', CURRENT_DATE) as DD_01_31_MON2_NO_SP | 11Jan |
FORMAT_DATE('%e%h', CURRENT_DATE) as D_1_31_MON2_NO_SP | 11Jan |
FORMAT_DATE('%Y-%m-%d', CURRENT_DATE) -- yyyy-mm-dd The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 2024-01-11 |
FORMAT_DATE('%Y-%m-%e', CURRENT_DATE) -- yyyy-mm- d The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 2024-01-11 |
FORMAT_DATE('%E4Y-%m-%d', CURRENT_DATE) -- yyyy-mm-dd Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 2024-01-11 |
FORMAT_DATE('%E4Y-%m-%e', CURRENT_DATE) -- yyyy-mm- d Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 2024-01-11 |
FORMAT_DATE('%y-%m-%d', CURRENT_DATE) -- yy-mm-dd The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 24-01-11 |
FORMAT_DATE('%y-%m-%e', CURRENT_DATE) -- yy-mm- d The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 24-01-11 |
FORMAT_DATE('%G-%m-%d', CURRENT_DATE) -- Iyyy-mm-dd The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 2024-01-11 |
FORMAT_DATE('%G-%m-%e', CURRENT_DATE) -- Iyyy-mm- d The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 2024-01-11 |
FORMAT_DATE('%g-%m-%d', CURRENT_DATE) -- Iy-mm-dd The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 24-01-11 |
FORMAT_DATE('%g-%m-%e', CURRENT_DATE) -- Iy-mm- d The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 24-01-11 |
FORMAT_DATE('%Y-%B-%d', CURRENT_DATE) -- yyyy-month-dd The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) | 2024-January-11 |
FORMAT_DATE('%Y-%B-%e', CURRENT_DATE) -- yyyy-month- d The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024-January-11 |
FORMAT_DATE('%Y-%b-%d', CURRENT_DATE) -- yyyy-mon-dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024-Jan-11 |
FORMAT_DATE('%Y-%b-%e', CURRENT_DATE) -- yyyy-mon- d The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024-Jan-11 |
FORMAT_DATE('%Y-%h-%d', CURRENT_DATE) -- yyyy-mon-dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024-Jan-11 |
FORMAT_DATE('%Y-%h-%e', CURRENT_DATE) -- yyyy-mon-dd The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024-Jan-11 |
FORMAT_DATE('%E4Y-%B-%d', CURRENT_DATE) -- yyyy-month-dd Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) | 2024-January-11 |
FORMAT_DATE('%E4Y-%B-%e', CURRENT_DATE) -- yyyy-month- d Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024-January-11 |
FORMAT_DATE('%E4Y-%b-%d', CURRENT_DATE) -- yyyy-mon-dd Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024-Jan-11 |
FORMAT_DATE('%E4Y-%b-%e', CURRENT_DATE) -- yyyy-mon- d Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024-Jan-11 |
FORMAT_DATE('%E4Y-%h-%d', CURRENT_DATE) -- yyyy-mon-dd Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024-Jan-11 |
FORMAT_DATE('%E4Y-%h-%e', CURRENT_DATE) -- yyyy-mon- d Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024-Jan-11 |
FORMAT_DATE('%y-%B-%d', CURRENT_DATE) -- yy-month-dd The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) | 24-January-11 |
FORMAT_DATE('%y-%B-%e', CURRENT_DATE) -- yy-month- d The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24-January-11 |
FORMAT_DATE('%y-%b-%d', CURRENT_DATE) -- yy-mon-dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24-Jan-11 |
FORMAT_DATE('%y-%b-%e', CURRENT_DATE) -- yy-mon- d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24-Jan-11 |
FORMAT_DATE('%y-%h-%d', CURRENT_DATE) -- yy-mon-dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24-Jan-11 |
FORMAT_DATE('%y-%h-%e', CURRENT_DATE) -- yy-mon- d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24-Jan-11 |
FORMAT_DATE('%G-%B-%d', CURRENT_DATE) -- Iy-month-dd The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) | 2024-January-11 |
FORMAT_DATE('%G-%B-%e', CURRENT_DATE) -- Iy-month- d The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024-January-11 |
FORMAT_DATE('%G-%b-%d', CURRENT_DATE) -- Iy-mon-dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024-Jan-11 |
FORMAT_DATE('%G-%b-%e', CURRENT_DATE) -- Iy-mon- d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024-Jan-11 |
FORMAT_DATE('%G-%h-%d', CURRENT_DATE) -- Iy-mon-dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024-Jan-11 |
FORMAT_DATE('%G-%h-%e', CURRENT_DATE) -- Iy-mon- d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024-Jan-11 |
FORMAT_DATE('%g-%B-%d', CURRENT_DATE) -- Iyyy-month-dd The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) | 24-January-11 |
FORMAT_DATE('%g-%B-%e', CURRENT_DATE) -- Iyyy-month- d The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24-January-11 |
FORMAT_DATE('%g-%b-%d', CURRENT_DATE) -- Iyyy-mon-dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24-Jan-11 |
FORMAT_DATE('%g-%b-%e', CURRENT_DATE) -- Iyyy-mon- d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24-Jan-11 |
FORMAT_DATE('%g-%h-%d', CURRENT_DATE) -- Iyyy-mon-dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24-Jan-11 |
FORMAT_DATE('%g-%h-%e', CURRENT_DATE) -- Iyyy-mon- d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24-Jan-11 |
FORMAT_DATE('%Y-%m-%d Day %j', CURRENT_DATE) -- yyyy-mm-dd The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 2024-01-11 Day 011 |
FORMAT_DATE('%Y-%m-%e Day %j', CURRENT_DATE) -- yyyy-mm- d The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024-01-11 Day 011 |
FORMAT_DATE('%E4Y-%m-%d Day %j', CURRENT_DATE) -- yyyy-mm-dd Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 2024-01-11 Day 011 |
FORMAT_DATE('%E4Y-%m-%e Day %j', CURRENT_DATE) -- yyyy-mm- d Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024-01-11 Day 011 |
FORMAT_DATE('%y-%m-%d Day %j', CURRENT_DATE) -- yy-mm-dd The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 24-01-11 Day 011 |
FORMAT_DATE('%y-%m-%e Day %j', CURRENT_DATE) -- yy-mm- d The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24-01-11 Day 011 |
FORMAT_DATE('%G-%m-%d Day %j', CURRENT_DATE) -- Iyyy-mm-dd The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 2024-01-11 Day 011 |
FORMAT_DATE('%G-%m-%e Day %j', CURRENT_DATE) -- Iyyy-mm- d The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024-01-11 Day 011 |
FORMAT_DATE('%g-%m-%d Day %j', CURRENT_DATE) -- Iy-mm-dd The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 24-01-11 Day 011 |
FORMAT_DATE('%g-%m-%e Day %j', CURRENT_DATE) -- Iy-mm- d The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24-01-11 Day 011 |
FORMAT_DATE('%Y-%B-%d Day %j', CURRENT_DATE) -- yyyy-month-dd The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024-January-11 Day 011 |
FORMAT_DATE('%Y-%B-%e Day %j', CURRENT_DATE) -- yyyy-month- d The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024-January-11 Day 011 |
FORMAT_DATE('%Y-%b-%d Day %j', CURRENT_DATE) -- yyyy-mon-dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024-Jan-11 Day 011 |
FORMAT_DATE('%Y-%b-%e Day %j', CURRENT_DATE) -- yyyy-mon- d The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024-Jan-11 Day 011 |
FORMAT_DATE('%Y-%h-%d Day %j', CURRENT_DATE) -- yyyy-mon-dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024-Jan-11 Day 011 |
FORMAT_DATE('%Y-%h-%e Day %j', CURRENT_DATE) -- yyyy-mon-dd The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024-Jan-11 Day 011 |
FORMAT_DATE('%E4Y-%B-%d Day %j', CURRENT_DATE) -- yyyy-month-dd Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024-January-11 Day 011 |
FORMAT_DATE('%E4Y-%B-%e Day %j', CURRENT_DATE) -- yyyy-month- d Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024-January-11 Day 011 |
FORMAT_DATE('%E4Y-%b-%d Day %j', CURRENT_DATE) -- yyyy-mon-dd Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024-Jan-11 Day 011 |
FORMAT_DATE('%E4Y-%b-%e Day %j', CURRENT_DATE) -- yyyy-mon- d Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024-Jan-11 Day 011 |
FORMAT_DATE('%E4Y-%h-%d Day %j', CURRENT_DATE) -- yyyy-mon-dd Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024-Jan-11 Day 011 |
FORMAT_DATE('%E4Y-%h-%e Day %j', CURRENT_DATE) -- yyyy-mon- d Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024-Jan-11 Day 011 |
FORMAT_DATE('%y-%B-%d Day %j', CURRENT_DATE) -- yy-month-dd The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24-January-11 Day 011 |
FORMAT_DATE('%y-%B-%e Day %j', CURRENT_DATE) -- yy-month- d The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24-January-11 Day 011 |
FORMAT_DATE('%y-%b-%d Day %j', CURRENT_DATE) -- yy-mon-dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24-Jan-11 Day 011 |
FORMAT_DATE('%y-%b-%e Day %j', CURRENT_DATE) -- yy-mon- d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24-Jan-11 Day 011 |
FORMAT_DATE('%y-%h-%d Day %j', CURRENT_DATE) -- yy-mon-dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24-Jan-11 Day 011 |
FORMAT_DATE('%y-%h-%e Day %j', CURRENT_DATE) -- yy-mon- d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24-Jan-11 Day 011 |
FORMAT_DATE('%G-%B-%d Day %j', CURRENT_DATE) -- Iy-month-dd The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024-January-11 Day 011 |
FORMAT_DATE('%G-%B-%e Day %j', CURRENT_DATE) -- Iy-month- d The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024-January-11 Day 011 |
FORMAT_DATE('%G-%b-%d Day %j', CURRENT_DATE) -- Iy-mon-dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024-Jan-11 Day 011 |
FORMAT_DATE('%G-%b-%e Day %j', CURRENT_DATE) -- Iy-mon- d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024-Jan-11 Day 011 |
FORMAT_DATE('%G-%h-%d Day %j', CURRENT_DATE) -- Iy-mon-dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024-Jan-11 Day 011 |
FORMAT_DATE('%G-%h-%e Day %j', CURRENT_DATE) -- Iy-mon- d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024-Jan-11 Day 011 |
FORMAT_DATE('%g-%B-%d Day %j', CURRENT_DATE) -- Iyyy-month-dd The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24-January-11 Day 011 |
FORMAT_DATE('%g-%B-%e Day %j', CURRENT_DATE) -- Iyyy-month- d The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24-January-11 Day 011 |
FORMAT_DATE('%g-%b-%d Day %j', CURRENT_DATE) -- Iyyy-mon-dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24-Jan-11 Day 011 |
FORMAT_DATE('%g-%b-%e Day %j', CURRENT_DATE) -- Iyyy-mon- d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24-Jan-11 Day 011 |
FORMAT_DATE('%g-%h-%d Day %j', CURRENT_DATE) -- Iyyy-mon-dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24-Jan-11 Day 011 |
FORMAT_DATE('%g-%h-%e Day %j', CURRENT_DATE) -- Iyyy-mon- d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24-Jan-11 Day 011 |
FORMAT_DATE('%Y/%m/%d', CURRENT_DATE) -- yyyy/mm/dd The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 2024/01/11 |
FORMAT_DATE('%Y/%m/%e', CURRENT_DATE) -- yyyy/mm/ d The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 2024/01/11 |
FORMAT_DATE('%E4Y/%m/%d', CURRENT_DATE) -- yyyy/mm/dd Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 2024/01/11 |
FORMAT_DATE('%E4Y/%m/%e', CURRENT_DATE) -- yyyy/mm/ d Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 2024/01/11 |
FORMAT_DATE('%y/%m/%d', CURRENT_DATE) -- yy/mm/dd The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 24/01/11 |
FORMAT_DATE('%y/%m/%e', CURRENT_DATE) -- yy/mm/ d The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 24/01/11 |
FORMAT_DATE('%G/%m/%d', CURRENT_DATE) -- Iyyy/mm/dd The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 2024/01/11 |
FORMAT_DATE('%G/%m/%e', CURRENT_DATE) -- Iyyy/mm/ d The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 2024/01/11 |
FORMAT_DATE('%g/%m/%d', CURRENT_DATE) -- Iy/mm/dd The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 24/01/11 |
FORMAT_DATE('%g/%m/%e', CURRENT_DATE) -- Iy/mm/ d The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 24/01/11 |
FORMAT_DATE('%Y/%B/%d', CURRENT_DATE) -- yyyy/month/dd The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) | 2024/January/11 |
FORMAT_DATE('%Y/%B/%e', CURRENT_DATE) -- yyyy/month/ d The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024/January/11 |
FORMAT_DATE('%Y/%b/%d', CURRENT_DATE) -- yyyy/mon/dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024/Jan/11 |
FORMAT_DATE('%Y/%b/%e', CURRENT_DATE) -- yyyy/mon/ d The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024/Jan/11 |
FORMAT_DATE('%Y/%h/%d', CURRENT_DATE) -- yyyy/mon/dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024/Jan/11 |
FORMAT_DATE('%Y/%h/%e', CURRENT_DATE) -- yyyy/mon/dd The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024/Jan/11 |
FORMAT_DATE('%E4Y/%B/%d', CURRENT_DATE) -- yyyy/month/dd Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) | 2024/January/11 |
FORMAT_DATE('%E4Y/%B/%e', CURRENT_DATE) -- yyyy/month/ d Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024/January/11 |
FORMAT_DATE('%E4Y/%b/%d', CURRENT_DATE) -- yyyy/mon/dd Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024/Jan/11 |
FORMAT_DATE('%E4Y/%b/%e', CURRENT_DATE) -- yyyy/mon/ d Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024/Jan/11 |
FORMAT_DATE('%E4Y/%h/%d', CURRENT_DATE) -- yyyy/mon/dd Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024/Jan/11 |
FORMAT_DATE('%E4Y/%h/%e', CURRENT_DATE) -- yyyy/mon/ d Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024/Jan/11 |
FORMAT_DATE('%y/%B/%d', CURRENT_DATE) -- yy/month/dd The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) | 24/January/11 |
FORMAT_DATE('%y/%B/%e', CURRENT_DATE) -- yy/month/ d The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24/January/11 |
FORMAT_DATE('%y/%b/%d', CURRENT_DATE) -- yy/mon/dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24/Jan/11 |
FORMAT_DATE('%y/%b/%e', CURRENT_DATE) -- yy/mon/ d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24/Jan/11 |
FORMAT_DATE('%y/%h/%d', CURRENT_DATE) -- yy/mon/dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24/Jan/11 |
FORMAT_DATE('%y/%h/%e', CURRENT_DATE) -- yy/mon/ d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24/Jan/11 |
FORMAT_DATE('%G/%B/%d', CURRENT_DATE) -- Iy/month/dd The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) | 2024/January/11 |
FORMAT_DATE('%G/%B/%e', CURRENT_DATE) -- Iy/month/- d The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024/January/11 |
FORMAT_DATE('%G/%b/%d', CURRENT_DATE) -- Iy/mon/-dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024/Jan/11 |
FORMAT_DATE('%G/%b/%e', CURRENT_DATE) -- Iy/mon/- d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024/Jan/11 |
FORMAT_DATE('%G/%h/%d', CURRENT_DATE) -- Iy/mon/dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024/Jan/11 |
FORMAT_DATE('%G/%h/%e', CURRENT_DATE) -- Iy/mon/ d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024/Jan/11 |
FORMAT_DATE('%g/%B/%d', CURRENT_DATE) -- Iyyy/month/dd The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) | 24/January/11 |
FORMAT_DATE('%g/%B/%e', CURRENT_DATE) -- Iyyy/month/ d The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24/January/11 |
FORMAT_DATE('%g/%b/%d', CURRENT_DATE) -- Iyyy/mon/dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24/Jan/11 |
FORMAT_DATE('%g/%b/%e', CURRENT_DATE) -- Iyyy/mon/ d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24/Jan/11 |
FORMAT_DATE('%g/%h/%d', CURRENT_DATE) -- Iyyy/mon/dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24/Jan/11 |
FORMAT_DATE('%g/%h/%e', CURRENT_DATE) -- Iyyy/mon/ d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24/Jan/11 |
FORMAT_DATE('%Y/%m/%d Day %j', CURRENT_DATE) -- yyyy/mm/dd The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 2024/01/11 Day 011 |
FORMAT_DATE('%Y/%m/%e Day %j', CURRENT_DATE) -- yyyy/mm/ d The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024/01/11 Day 011 |
FORMAT_DATE('%E4Y/%m/%d Day %j', CURRENT_DATE) -- yyyy/mm/-dd Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 2024/01/11 Day 011 |
FORMAT_DATE('%E4Y/%m/%e Day %j', CURRENT_DATE) -- yyyy/mm/ d Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024/01/11 Day 011 |
FORMAT_DATE('%y/%m/%d Day %j', CURRENT_DATE) -- yy/mm/dd The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 24/01/11 Day 011 |
FORMAT_DATE('%y/%m/%e Day %j', CURRENT_DATE) -- yy/mm/ d The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24/01/11 Day 011 |
FORMAT_DATE('%G/%m/%d Day %j', CURRENT_DATE) -- Iyyy/mm/dd The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 2024/01/11 Day 011 |
FORMAT_DATE('%G/%m/%e Day %j', CURRENT_DATE) -- Iyyy/mm/ d The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024/01/11 Day 011 |
FORMAT_DATE('%g/%m/%d Day %j', CURRENT_DATE) -- Iy/mm/dd The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 24/01/11 Day 011 |
FORMAT_DATE('%g/%m/%e Day %j', CURRENT_DATE) -- Iy/mm/ d The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24/01/11 Day 011 |
FORMAT_DATE('%Y/%B/%d Day %j', CURRENT_DATE) -- yyyy/month/dd The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024/January/11 Day 011 |
FORMAT_DATE('%Y/%B/%e Day %j', CURRENT_DATE) -- yyyy/month/ d The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024/January/11 Day 011 |
FORMAT_DATE('%Y/%b/%d Day %j', CURRENT_DATE) -- yyyy/mon/dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024/Jan/11 Day 011 |
FORMAT_DATE('%Y/%b/%e Day %j', CURRENT_DATE) -- yyyy/mon/ d The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024/Jan/11 Day 011 |
FORMAT_DATE('%Y/%h/%d Day %j', CURRENT_DATE) -- yyyy/mon/dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024/Jan/11 Day 011 |
FORMAT_DATE('%Y/%h/%e Day %j', CURRENT_DATE) -- yyyy/mon/-dd The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024/Jan/11 Day 011 |
FORMAT_DATE('%E4Y/%B/%d Day %j', CURRENT_DATE) -- yyyy/month/dd Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024/January/11 Day 011 |
FORMAT_DATE('%E4Y/%B/%e Day %j', CURRENT_DATE) -- yyyy/month/ d Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024/January/11 Day 011 |
FORMAT_DATE('%E4Y/%b/%d Day %j', CURRENT_DATE) -- yyyy/mon/dd Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024/Jan/11 Day 011 |
FORMAT_DATE('%E4Y/%b/%e Day %j', CURRENT_DATE) -- yyyy/mon/ d Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024/Jan/11 Day 011 |
FORMAT_DATE('%E4Y/%h/%d Day %j', CURRENT_DATE) -- yyyy/mon/dd Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024/Jan/11 Day 011 |
FORMAT_DATE('%E4Y/%h/%e Day %j', CURRENT_DATE) -- yyyy/mon/ d Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024/Jan/11 Day 011 |
FORMAT_DATE('%y/%B/%d Day %j', CURRENT_DATE) -- yy/month/dd The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24/January/11 Day 011 |
FORMAT_DATE('%y/%B/%e Day %j', CURRENT_DATE) -- yy/month/ d The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24/January/11 Day 011 |
FORMAT_DATE('%y/%b/%d Day %j', CURRENT_DATE) -- yy/mon/dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24/Jan/11 Day 011 |
FORMAT_DATE('%y/%b/%e Day %j', CURRENT_DATE) -- yy/mon/ d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24/Jan/11 Day 011 |
FORMAT_DATE('%y/%h/%d Day %j', CURRENT_DATE) -- yy/mon/dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24/Jan/11 Day 011 |
FORMAT_DATE('%y/%h/%e Day %j', CURRENT_DATE) -- yy/mon/ d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24/Jan/11 Day 011 |
FORMAT_DATE('%G/%B/%d Day %j', CURRENT_DATE) -- Iy/month/dd The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024/January/11 Day 011 |
FORMAT_DATE('%G/%B/%e Day %j', CURRENT_DATE) -- Iy/month/ d The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024/January/11 Day 011 |
FORMAT_DATE('%G/%b/%d Day %j', CURRENT_DATE) -- Iy/mon/dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024/Jan/11 Day 011 |
FORMAT_DATE('%G/%b/%e Day %j', CURRENT_DATE) -- Iy/mon/ d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024/Jan/11 Day 011 |
FORMAT_DATE('%G/%h/%d Day %j', CURRENT_DATE) -- Iy/mon/dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024/Jan/11 Day 011 |
FORMAT_DATE('%G/%h/%e Day %j', CURRENT_DATE) -- Iy/mon/ d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024/Jan/11 Day 011 |
FORMAT_DATE('%g/%B/%d Day %j', CURRENT_DATE) -- Iyyy/month/dd The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24/January/11 Day 011 |
FORMAT_DATE('%g/%B/%e Day %j', CURRENT_DATE) -- Iyyy/month/ d The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24/January/11 Day 011 |
FORMAT_DATE('%g/%b/%d Day %j', CURRENT_DATE) -- Iyyy/mon/dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24/Jan/11 Day 011 |
FORMAT_DATE('%g/%b/%e Day %j', CURRENT_DATE) -- Iyyy/mon/ d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24/Jan/11 Day 011 |
FORMAT_DATE('%g/%h/%d Day %j', CURRENT_DATE) -- Iyyy/mon/-dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24/Jan/11 Day 011 |
FORMAT_DATE('%g/%h/%e Day %j', CURRENT_DATE) -- Iyyy/mon/ d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24/Jan/11 Day 011 |
FORMAT_DATE('%Y:%m:%d', CURRENT_DATE) -- yyyy:mm:dd The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 2024:01:11 |
FORMAT_DATE('%Y:%m:%e', CURRENT_DATE) -- yyyy:mm: d The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 2024:01:11 |
FORMAT_DATE('%E4Y:%m:%d', CURRENT_DATE) -- yyyy:mm:dd Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 2024:01:11 |
FORMAT_DATE('%E4Y:%m:%e', CURRENT_DATE) -- yyyy:mm: d Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 2024:01:11 |
FORMAT_DATE('%y:%m:%d', CURRENT_DATE) -- yy:mm:dd The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 24:01:11 |
FORMAT_DATE('%y:%m:%e', CURRENT_DATE) -- yy:mm: d The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 24:01:11 |
FORMAT_DATE('%G:%m:%d', CURRENT_DATE) -- Iyyy:mm:dd The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 2024:01:11 |
FORMAT_DATE('%G:%m:%e', CURRENT_DATE) -- Iyyy:mm: d The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 2024:01:11 |
FORMAT_DATE('%g:%m:%d', CURRENT_DATE) -- Iy:mm:dd The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 24:01:11 |
FORMAT_DATE('%g:%m:%e', CURRENT_DATE) -- Iy:mm: d The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 24:01:11 |
FORMAT_DATE('%Y:%B:%d', CURRENT_DATE) -- yyyy:month:dd The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) | 2024:January:11 |
FORMAT_DATE('%Y:%B:%e', CURRENT_DATE) -- yyyy:month: d The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024:January:11 |
FORMAT_DATE('%Y:%b:%d', CURRENT_DATE) -- yyyy:mon:dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024:Jan:11 |
FORMAT_DATE('%Y:%b:%e', CURRENT_DATE) -- yyyy:mon: d The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024:Jan:11 |
FORMAT_DATE('%Y:%h:%d', CURRENT_DATE) -- yyyy:mon:dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024:Jan:11 |
FORMAT_DATE('%Y:%h:%e', CURRENT_DATE) -- yyyy:mon:dd The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024:Jan:11 |
FORMAT_DATE('%E4Y:%B:%d', CURRENT_DATE) -- yyyy:month:dd Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) | 2024:January:11 |
FORMAT_DATE('%E4Y:%B:%e', CURRENT_DATE) -- yyyy:month: d Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024:January:11 |
FORMAT_DATE('%E4Y:%b:%d', CURRENT_DATE) -- yyyy:mon:dd Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024:Jan:11 |
FORMAT_DATE('%E4Y:%b:%e', CURRENT_DATE) -- yyyy:mon: d Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024:Jan:11 |
FORMAT_DATE('%E4Y:%h:%d', CURRENT_DATE) -- yyyy:mon:dd Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024:Jan:11 |
FORMAT_DATE('%E4Y:%h:%e', CURRENT_DATE) -- yyyy:mon: d Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024:Jan:11 |
FORMAT_DATE('%y:%B:%d', CURRENT_DATE) -- yy:month:dd The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) | 24:January:11 |
FORMAT_DATE('%y:%B:%e', CURRENT_DATE) -- yy:month: d The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24:January:11 |
FORMAT_DATE('%y:%b:%d', CURRENT_DATE) -- yy:mon:dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24:Jan:11 |
FORMAT_DATE('%y:%b:%e', CURRENT_DATE) -- yy:mon: d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24:Jan:11 |
FORMAT_DATE('%y:%h:%d', CURRENT_DATE) -- yy:mon:dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24:Jan:11 |
FORMAT_DATE('%y:%h:%e', CURRENT_DATE) -- yy:mon: d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24:Jan:11 |
FORMAT_DATE('%G:%B:%d', CURRENT_DATE) -- Iy:month:dd The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) | 2024:January:11 |
FORMAT_DATE('%G:%B:%e', CURRENT_DATE) -- Iy:month:- d The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024:January:11 |
FORMAT_DATE('%G:%b:%d', CURRENT_DATE) -- Iy:mon:-dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024:Jan:11 |
FORMAT_DATE('%G:%b:%e', CURRENT_DATE) -- Iy:mon:- d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024:Jan:11 |
FORMAT_DATE('%G:%h:%d', CURRENT_DATE) -- Iy:mon:dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024:Jan:11 |
FORMAT_DATE('%G:%h:%e', CURRENT_DATE) -- Iy:mon: d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024:Jan:11 |
FORMAT_DATE('%g:%B:%d', CURRENT_DATE) -- Iyyy:month:dd The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) | 24:January:11 |
FORMAT_DATE('%g:%B:%e', CURRENT_DATE) -- Iyyy:month: d The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24:January:11 |
FORMAT_DATE('%g:%b:%d', CURRENT_DATE) -- Iyyy:mon:dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24:Jan:11 |
FORMAT_DATE('%g:%b:%e', CURRENT_DATE) -- Iyyy:mon: d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24:Jan:11 |
FORMAT_DATE('%g:%h:%d', CURRENT_DATE) -- Iyyy:mon:dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24:Jan:11 |
FORMAT_DATE('%g:%h:%e', CURRENT_DATE) -- Iyyy:mon: d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24:Jan:11 |
FORMAT_DATE('%Y:%m:%d Day %j', CURRENT_DATE) -- yyyy:mm:dd The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 2024:01:11 Day 011 |
FORMAT_DATE('%Y:%m:%e Day %j', CURRENT_DATE) -- yyyy:mm: d The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024:01:11 Day 011 |
FORMAT_DATE('%E4Y:%m:%d Day %j', CURRENT_DATE) -- yyyy:mm:-dd Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 2024:01:11 Day 011 |
FORMAT_DATE('%E4Y:%m:%e Day %j', CURRENT_DATE) -- yyyy:mm: d Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024:01:11 Day 011 |
FORMAT_DATE('%y:%m:%d Day %j', CURRENT_DATE) -- yy:mm:dd The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 24:01:11 Day 011 |
FORMAT_DATE('%y:%m:%e Day %j', CURRENT_DATE) -- yy:mm: d The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24:01:11 Day 011 |
FORMAT_DATE('%G:%m:%d Day %j', CURRENT_DATE) -- Iyyy:mm:dd The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 2024:01:11 Day 011 |
FORMAT_DATE('%G:%m:%e Day %j', CURRENT_DATE) -- Iyyy:mm: d The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024:01:11 Day 011 |
FORMAT_DATE('%g:%m:%d Day %j', CURRENT_DATE) -- Iy:mm:dd The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 24:01:11 Day 011 |
FORMAT_DATE('%g:%m:%e Day %j', CURRENT_DATE) -- Iy:mm: d The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24:01:11 Day 011 |
FORMAT_DATE('%Y:%B:%d Day %j', CURRENT_DATE) -- yyyy:month:dd The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024:January:11 Day 011 |
FORMAT_DATE('%Y:%B:%e Day %j', CURRENT_DATE) -- yyyy:month: d The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024:January:11 Day 011 |
FORMAT_DATE('%Y:%b:%d Day %j', CURRENT_DATE) -- yyyy:mon:dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024:Jan:11 Day 011 |
FORMAT_DATE('%Y:%b:%e Day %j', CURRENT_DATE) -- yyyy:mon: d The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024:Jan:11 Day 011 |
FORMAT_DATE('%Y:%h:%d Day %j', CURRENT_DATE) -- yyyy:mon:dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024:Jan:11 Day 011 |
FORMAT_DATE('%Y:%h:%e Day %j', CURRENT_DATE) -- yyyy:mon:-dd The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024:Jan:11 Day 011 |
FORMAT_DATE('%E4Y:%B:%d Day %j', CURRENT_DATE) -- yyyy:month:dd Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024:January:11 Day 011 |
FORMAT_DATE('%E4Y:%B:%e Day %j', CURRENT_DATE) -- yyyy:month: d Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024:January:11 Day 011 |
FORMAT_DATE('%E4Y:%b:%d Day %j', CURRENT_DATE) -- yyyy:mon:dd Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024:Jan:11 Day 011 |
FORMAT_DATE('%E4Y:%b:%e Day %j', CURRENT_DATE) -- yyyy:mon: d Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024:Jan:11 Day 011 |
FORMAT_DATE('%E4Y:%h:%d Day %j', CURRENT_DATE) -- yyyy:mon:dd Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024:Jan:11 Day 011 |
FORMAT_DATE('%E4Y:%h:%e Day %j', CURRENT_DATE) -- yyyy:mon: d Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024:Jan:11 Day 011 |
FORMAT_DATE('%y:%B:%d Day %j', CURRENT_DATE) -- yy:month:dd The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24:January:11 Day 011 |
FORMAT_DATE('%y:%B:%e Day %j', CURRENT_DATE) -- yy:month: d The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24:January:11 Day 011 |
FORMAT_DATE('%y:%b:%d Day %j', CURRENT_DATE) -- yy:mon:dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24:Jan:11 Day 011 |
FORMAT_DATE('%y:%b:%e Day %j', CURRENT_DATE) -- yy:mon: d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24:Jan:11 Day 011 |
FORMAT_DATE('%y:%h:%d Day %j', CURRENT_DATE) -- yy:mon:dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24:Jan:11 Day 011 |
FORMAT_DATE('%y:%h:%e Day %j', CURRENT_DATE) -- yy:mon: d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24:Jan:11 Day 011 |
FORMAT_DATE('%G:%B:%d Day %j', CURRENT_DATE) -- Iy:month:dd The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024:January:11 Day 011 |
FORMAT_DATE('%G:%B:%e Day %j', CURRENT_DATE) -- Iy:month: d The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024:January:11 Day 011 |
FORMAT_DATE('%G:%b:%d Day %j', CURRENT_DATE) -- Iy:mon:dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024:Jan:11 Day 011 |
FORMAT_DATE('%G:%b:%e Day %j', CURRENT_DATE) -- Iy:mon: d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024:Jan:11 Day 011 |
FORMAT_DATE('%G:%h:%d Day %j', CURRENT_DATE) -- Iy:mon:dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024:Jan:11 Day 011 |
FORMAT_DATE('%G:%h:%e Day %j', CURRENT_DATE) -- Iy:mon: d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024:Jan:11 Day 011 |
FORMAT_DATE('%g:%B:%d Day %j', CURRENT_DATE) -- Iyyy:month:dd The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24:January:11 Day 011 |
FORMAT_DATE('%g:%B:%e Day %j', CURRENT_DATE) -- Iyyy:month: d The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24:January:11 Day 011 |
FORMAT_DATE('%g:%b:%d Day %j', CURRENT_DATE) -- Iyyy:mon:dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24:Jan:11 Day 011 |
FORMAT_DATE('%g:%b:%e Day %j', CURRENT_DATE) -- Iyyy:mon: d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24:Jan:11 Day 011 |
FORMAT_DATE('%g:%h:%d Day %j', CURRENT_DATE) -- Iyyy:mon:-dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24:Jan:11 Day 011 |
FORMAT_DATE('%g:%h:%e Day %j', CURRENT_DATE) -- Iyyy:mon: d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24:Jan:11 Day 011 |
FORMAT_DATE('%Y.%m.%d', CURRENT_DATE) -- yyyy.mm.dd The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 2024.01.11 |
FORMAT_DATE('%Y.%m.%e', CURRENT_DATE) -- yyyy.mm. d The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 2024.01.11 |
FORMAT_DATE('%E4Y.%m.%d', CURRENT_DATE) -- yyyy.mm.dd Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 2024.01.11 |
FORMAT_DATE('%E4Y.%m.%e', CURRENT_DATE) -- yyyy.mm. d Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 2024.01.11 |
FORMAT_DATE('%y.%m.%d', CURRENT_DATE) -- yy.mm.dd The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 24.01.11 |
FORMAT_DATE('%y.%m.%e', CURRENT_DATE) -- yy.mm. d The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 24.01.11 |
FORMAT_DATE('%G.%m.%d', CURRENT_DATE) -- Iyyy.mm.dd The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 2024.01.11 |
FORMAT_DATE('%G.%m.%e', CURRENT_DATE) -- Iyyy.mm. d The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 2024.01.11 |
FORMAT_DATE('%g.%m.%d', CURRENT_DATE) -- Iy.mm.dd The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 24.01.11 |
FORMAT_DATE('%g.%m.%e', CURRENT_DATE) -- Iy.mm. d The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 24.01.11 |
FORMAT_DATE('%Y.%B.%d', CURRENT_DATE) -- yyyy.month.dd The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) | 2024.January.11 |
FORMAT_DATE('%Y.%B.%e', CURRENT_DATE) -- yyyy.month. d The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024.January.11 |
FORMAT_DATE('%Y.%b.%d', CURRENT_DATE) -- yyyy.mon.dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024.Jan.11 |
FORMAT_DATE('%Y.%b.%e', CURRENT_DATE) -- yyyy.mon. d The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024.Jan.11 |
FORMAT_DATE('%Y.%h.%d', CURRENT_DATE) -- yyyy.mon.dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024.Jan.11 |
FORMAT_DATE('%Y.%h.%e', CURRENT_DATE) -- yyyy.mon.dd The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024.Jan.11 |
FORMAT_DATE('%E4Y.%B.%d', CURRENT_DATE) -- yyyy.month.dd Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) | 2024.January.11 |
FORMAT_DATE('%E4Y.%B.%e', CURRENT_DATE) -- yyyy.month. d Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024.January.11 |
FORMAT_DATE('%E4Y.%b.%d', CURRENT_DATE) -- yyyy.mon.dd Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024.Jan.11 |
FORMAT_DATE('%E4Y.%b.%e', CURRENT_DATE) -- yyyy.mon. d Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024.Jan.11 |
FORMAT_DATE('%E4Y.%h.%d', CURRENT_DATE) -- yyyy.mon.dd Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024.Jan.11 |
FORMAT_DATE('%E4Y.%h.%e', CURRENT_DATE) -- yyyy.mon. d Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024.Jan.11 |
FORMAT_DATE('%y.%B.%d', CURRENT_DATE) -- yy.month.dd The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) | 24.January.11 |
FORMAT_DATE('%y.%B.%e', CURRENT_DATE) -- yy.month. d The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24.January.11 |
FORMAT_DATE('%y.%b.%d', CURRENT_DATE) -- yy.mon.dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24.Jan.11 |
FORMAT_DATE('%y.%b.%e', CURRENT_DATE) -- yy.mon. d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24.Jan.11 |
FORMAT_DATE('%y.%h.%d', CURRENT_DATE) -- yy.mon.dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24.Jan.11 |
FORMAT_DATE('%y.%h.%e', CURRENT_DATE) -- yy.mon. d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24.Jan.11 |
FORMAT_DATE('%G.%B.%d', CURRENT_DATE) -- Iy.month.dd The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) | 2024.January.11 |
FORMAT_DATE('%G.%B.%e', CURRENT_DATE) -- Iy.month.- d The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024.January.11 |
FORMAT_DATE('%G.%b.%d', CURRENT_DATE) -- Iy.mon.-dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024.Jan.11 |
FORMAT_DATE('%G.%b.%e', CURRENT_DATE) -- Iy.mon.- d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024.Jan.11 |
FORMAT_DATE('%G.%h.%d', CURRENT_DATE) -- Iy.mon.dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024.Jan.11 |
FORMAT_DATE('%G.%h.%e', CURRENT_DATE) -- Iy.mon. d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024.Jan.11 |
FORMAT_DATE('%g.%B.%d', CURRENT_DATE) -- Iyyy.month.dd The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) | 24.January.11 |
FORMAT_DATE('%g.%B.%e', CURRENT_DATE) -- Iyyy.month. d The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24.January.11 |
FORMAT_DATE('%g.%b.%d', CURRENT_DATE) -- Iyyy.mon.dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24.Jan.11 |
FORMAT_DATE('%g.%b.%e', CURRENT_DATE) -- Iyyy.mon. d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24.Jan.11 |
FORMAT_DATE('%g.%h.%d', CURRENT_DATE) -- Iyyy.mon.dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24.Jan.11 |
FORMAT_DATE('%g.%h.%e', CURRENT_DATE) -- Iyyy.mon. d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24.Jan.11 |
FORMAT_DATE('%Y.%m.%d Day %j', CURRENT_DATE) -- yyyy.mm.dd The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 2024.01.11 Day 011 |
FORMAT_DATE('%Y.%m.%e Day %j', CURRENT_DATE) -- yyyy.mm. d The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024.01.11 Day 011 |
FORMAT_DATE('%E4Y.%m.%d Day %j', CURRENT_DATE) -- yyyy.mm.-dd Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 2024.01.11 Day 011 |
FORMAT_DATE('%E4Y.%m.%e Day %j', CURRENT_DATE) -- yyyy.mm. d Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024.01.11 Day 011 |
FORMAT_DATE('%y.%m.%d Day %j', CURRENT_DATE) -- yy.mm.dd The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 24.01.11 Day 011 |
FORMAT_DATE('%y.%m.%e Day %j', CURRENT_DATE) -- yy.mm. d The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24.01.11 Day 011 |
FORMAT_DATE('%G.%m.%d Day %j', CURRENT_DATE) -- Iyyy.mm.dd The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 2024.01.11 Day 011 |
FORMAT_DATE('%G.%m.%e Day %j', CURRENT_DATE) -- Iyyy.mm. d The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024.01.11 Day 011 |
FORMAT_DATE('%g.%m.%d Day %j', CURRENT_DATE) -- Iy.mm.dd The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 24.01.11 Day 011 |
FORMAT_DATE('%g.%m.%e Day %j', CURRENT_DATE) -- Iy.mm. d The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24.01.11 Day 011 |
FORMAT_DATE('%Y.%B.%d Day %j', CURRENT_DATE) -- yyyy.month.dd The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024.January.11 Day 011 |
FORMAT_DATE('%Y.%B.%e Day %j', CURRENT_DATE) -- yyyy.month. d The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024.January.11 Day 011 |
FORMAT_DATE('%Y.%b.%d Day %j', CURRENT_DATE) -- yyyy.mon.dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024.Jan.11 Day 011 |
FORMAT_DATE('%Y.%b.%e Day %j', CURRENT_DATE) -- yyyy.mon. d The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024.Jan.11 Day 011 |
FORMAT_DATE('%Y.%h.%d Day %j', CURRENT_DATE) -- yyyy.mon.dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024.Jan.11 Day 011 |
FORMAT_DATE('%Y.%h.%e Day %j', CURRENT_DATE) -- yyyy.mon.-dd The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024.Jan.11 Day 011 |
FORMAT_DATE('%E4Y.%B.%d Day %j', CURRENT_DATE) -- yyyy.month.dd Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024.January.11 Day 011 |
FORMAT_DATE('%E4Y.%B.%e Day %j', CURRENT_DATE) -- yyyy.month. d Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024.January.11 Day 011 |
FORMAT_DATE('%E4Y.%b.%d Day %j', CURRENT_DATE) -- yyyy.mon.dd Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024.Jan.11 Day 011 |
FORMAT_DATE('%E4Y.%b.%e Day %j', CURRENT_DATE) -- yyyy.mon. d Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024.Jan.11 Day 011 |
FORMAT_DATE('%E4Y.%h.%d Day %j', CURRENT_DATE) -- yyyy.mon.dd Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024.Jan.11 Day 011 |
FORMAT_DATE('%E4Y.%h.%e Day %j', CURRENT_DATE) -- yyyy.mon. d Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024.Jan.11 Day 011 |
FORMAT_DATE('%y.%B.%d Day %j', CURRENT_DATE) -- yy.month.dd The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24.January.11 Day 011 |
FORMAT_DATE('%y.%B.%e Day %j', CURRENT_DATE) -- yy.month. d The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24.January.11 Day 011 |
FORMAT_DATE('%y.%b.%d Day %j', CURRENT_DATE) -- yy.mon.dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24.Jan.11 Day 011 |
FORMAT_DATE('%y.%b.%e Day %j', CURRENT_DATE) -- yy.mon. d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24.Jan.11 Day 011 |
FORMAT_DATE('%y.%h.%d Day %j', CURRENT_DATE) -- yy.mon.dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24.Jan.11 Day 011 |
FORMAT_DATE('%y.%h.%e Day %j', CURRENT_DATE) -- yy.mon. d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24.Jan.11 Day 011 |
FORMAT_DATE('%G.%B.%d Day %j', CURRENT_DATE) -- Iy.month.dd The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024.January.11 Day 011 |
FORMAT_DATE('%G.%B.%e Day %j', CURRENT_DATE) -- Iy.month. d The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024.January.11 Day 011 |
FORMAT_DATE('%G.%b.%d Day %j', CURRENT_DATE) -- Iy.mon.dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024.Jan.11 Day 011 |
FORMAT_DATE('%G.%b.%e Day %j', CURRENT_DATE) -- Iy.mon. d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024.Jan.11 Day 011 |
FORMAT_DATE('%G.%h.%d Day %j', CURRENT_DATE) -- Iy.mon.dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024.Jan.11 Day 011 |
FORMAT_DATE('%G.%h.%e Day %j', CURRENT_DATE) -- Iy.mon. d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024.Jan.11 Day 011 |
FORMAT_DATE('%g.%B.%d Day %j', CURRENT_DATE) -- Iyyy.month.dd The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24.January.11 Day 011 |
FORMAT_DATE('%g.%B.%e Day %j', CURRENT_DATE) -- Iyyy.month. d The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24.January.11 Day 011 |
FORMAT_DATE('%g.%b.%d Day %j', CURRENT_DATE) -- Iyyy.mon.dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24.Jan.11 Day 011 |
FORMAT_DATE('%g.%b.%e Day %j', CURRENT_DATE) -- Iyyy.mon. d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24.Jan.11 Day 011 |
FORMAT_DATE('%g.%h.%d Day %j', CURRENT_DATE) -- Iyyy.mon.-dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24.Jan.11 Day 011 |
FORMAT_DATE('%g.%h.%e Day %j', CURRENT_DATE) -- Iyyy.mon. d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24.Jan.11 Day 011 |
FORMAT_DATE('%Y %m %d', CURRENT_DATE) -- yyyy mm dd The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 2024 01 11 |
FORMAT_DATE('%Y %m %e', CURRENT_DATE) -- yyyy mm d The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 2024 01 11 |
FORMAT_DATE('%E4Y %m %d', CURRENT_DATE) -- yyyy mm dd Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 2024 01 11 |
FORMAT_DATE('%E4Y %m %e', CURRENT_DATE) -- yyyy mm d Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 2024 01 11 |
FORMAT_DATE('%y %m %d', CURRENT_DATE) -- yy mm dd The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 24 01 11 |
FORMAT_DATE('%y %m %e', CURRENT_DATE) -- yy mm d The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 24 01 11 |
FORMAT_DATE('%G %m %d', CURRENT_DATE) -- Iyyy mm dd The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 2024 01 11 |
FORMAT_DATE('%G %m %e', CURRENT_DATE) -- Iyyy mm d The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 2024 01 11 |
FORMAT_DATE('%g %m %d', CURRENT_DATE) -- Iy mm dd The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 24 01 11 |
FORMAT_DATE('%g %m %e', CURRENT_DATE) -- Iy mm d The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 24 01 11 |
FORMAT_DATE('%Y %B %d', CURRENT_DATE) -- yyyy month dd The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) | 2024 January 11 |
FORMAT_DATE('%Y %B %e', CURRENT_DATE) -- yyyy month d The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024 January 11 |
FORMAT_DATE('%Y %b %d', CURRENT_DATE) -- yyyy mon dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024 Jan 11 |
FORMAT_DATE('%Y %b %e', CURRENT_DATE) -- yyyy mon d The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024 Jan 11 |
FORMAT_DATE('%Y %h %d', CURRENT_DATE) -- yyyy mon dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024 Jan 11 |
FORMAT_DATE('%Y %h %e', CURRENT_DATE) -- yyyy mon dd The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024 Jan 11 |
FORMAT_DATE('%E4Y %B %d', CURRENT_DATE) -- yyyy month dd Four-character years (0001 9999) - The full month name - The day of the month as a decimal number (01-31) | 2024 January 11 |
FORMAT_DATE('%E4Y %B %e', CURRENT_DATE) -- yyyy month d Four-character years (0001 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024 January 11 |
FORMAT_DATE('%E4Y %b %d', CURRENT_DATE) -- yyyy mon dd Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024 Jan 11 |
FORMAT_DATE('%E4Y %b %e', CURRENT_DATE) -- yyyy mon d Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024 Jan 11 |
FORMAT_DATE('%E4Y %h %d', CURRENT_DATE) -- yyyy mon dd Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024 Jan 11 |
FORMAT_DATE('%E4Y %h %e', CURRENT_DATE) -- yyyy mon d Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024 Jan 11 |
FORMAT_DATE('%y %B %d', CURRENT_DATE) -- yy month dd The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) | 24 January 11 |
FORMAT_DATE('%y %B %e', CURRENT_DATE) -- yy month d The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24 January 11 |
FORMAT_DATE('%y %b %d', CURRENT_DATE) -- yy mon dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24 Jan 11 |
FORMAT_DATE('%y %b %e', CURRENT_DATE) -- yy mon d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24 Jan 11 |
FORMAT_DATE('%y %h %d', CURRENT_DATE) -- yy mon dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24 Jan 11 |
FORMAT_DATE('%y %h %e', CURRENT_DATE) -- yy mon d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24 Jan 11 |
FORMAT_DATE('%G %B %d', CURRENT_DATE) -- Iy month dd The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) | 2024 January 11 |
FORMAT_DATE('%G %B %e', CURRENT_DATE) -- Iy month - d The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024 January 11 |
FORMAT_DATE('%G %b %d', CURRENT_DATE) -- Iy mon -dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024 Jan 11 |
FORMAT_DATE('%G %b %e', CURRENT_DATE) -- Iy mon - d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024 Jan 11 |
FORMAT_DATE('%G %h %d', CURRENT_DATE) -- Iy mon dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024 Jan 11 |
FORMAT_DATE('%G %h %e', CURRENT_DATE) -- Iy mon d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024 Jan 11 |
FORMAT_DATE('%g %B %d', CURRENT_DATE) -- Iyyy month dd The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) | 24 January 11 |
FORMAT_DATE('%g %B %e', CURRENT_DATE) -- Iyyy month d The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24 January 11 |
FORMAT_DATE('%g %b %d', CURRENT_DATE) -- Iyyy mon dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24 Jan 11 |
FORMAT_DATE('%g %b %e', CURRENT_DATE) -- Iyyy mon d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24 Jan 11 |
FORMAT_DATE('%g %h %d', CURRENT_DATE) -- Iyyy mon dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24 Jan 11 |
FORMAT_DATE('%g %h %e', CURRENT_DATE) -- Iyyy mon d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24 Jan 11 |
FORMAT_DATE('%Y %m %d Day %j', CURRENT_DATE) -- yyyy mm dd doy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 2024 01 11 Day 011 |
FORMAT_DATE('%Y %m %e Day %j', CURRENT_DATE) -- yyyy mm d doy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024 01 11 Day 011 |
FORMAT_DATE('%E4Y %m %d Day %j', CURRENT_DATE) -- yyyy mm -dd doy Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 2024 01 11 Day 011 |
FORMAT_DATE('%E4Y %m %e Day %j', CURRENT_DATE) -- yyyy mm d doy Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024 01 11 Day 011 |
FORMAT_DATE('%y %m %d Day %j', CURRENT_DATE) -- yy mm dd doy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 24 01 11 Day 011 |
FORMAT_DATE('%y %m %e Day %j', CURRENT_DATE) -- yy mm d doy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24 01 11 Day 011 |
FORMAT_DATE('%G %m %d Day %j', CURRENT_DATE) -- Iyyy mm dd doy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 2024 01 11 Day 011 |
FORMAT_DATE('%G %m %e Day %j', CURRENT_DATE) -- Iyyy mm d doy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024 01 11 Day 011 |
FORMAT_DATE('%g %m %d Day %j', CURRENT_DATE) -- Iy mm dd doy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 24 01 11 Day 011 |
FORMAT_DATE('%g %m %e Day %j', CURRENT_DATE) -- Iy mm d doy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24 01 11 Day 011 |
FORMAT_DATE('%Y %B %d Day %j', CURRENT_DATE) -- yyyy month dd doy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024 January 11 Day 011 |
FORMAT_DATE('%Y %B %e Day %j', CURRENT_DATE) -- yyyy month d doy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024 January 11 Day 011 |
FORMAT_DATE('%Y %b %d Day %j', CURRENT_DATE) -- yyyy mon dd doy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024 Jan 11 Day 011 |
FORMAT_DATE('%Y %b %e Day %j', CURRENT_DATE) -- yyyy mon d doy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024 Jan 11 Day 011 |
FORMAT_DATE('%Y %h %d Day %j', CURRENT_DATE) -- yyyy mon dd doy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024 Jan 11 Day 011 |
FORMAT_DATE('%Y %h %e Day %j', CURRENT_DATE) -- yyyy mon -dd doy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024 Jan 11 Day 011 |
FORMAT_DATE('%E4Y %B %d Day %j', CURRENT_DATE) -- yyyy month dd doy Four-character years (0001 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024 January 11 Day 011 |
FORMAT_DATE('%E4Y %B %e Day %j', CURRENT_DATE) -- yyyy month d doy Four-character years (0001 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024 January 11 Day 011 |
FORMAT_DATE('%E4Y %b %d Day %j', CURRENT_DATE) -- yyyy mon dd doy Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024 Jan 11 Day 011 |
FORMAT_DATE('%E4Y %b %e Day %j', CURRENT_DATE) -- yyyy mon d doy Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024 Jan 11 Day 011 |
FORMAT_DATE('%E4Y %h %d Day %j', CURRENT_DATE) -- yyyy mon dd doy Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024 Jan 11 Day 011 |
FORMAT_DATE('%E4Y %h %e Day %j', CURRENT_DATE) -- yyyy mon d doy Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024 Jan 11 Day 011 |
FORMAT_DATE('%y %B %d Day %j', CURRENT_DATE) -- yy month dd doy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24 January 11 Day 011 |
FORMAT_DATE('%y %B %e Day %j', CURRENT_DATE) -- yy month d doy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24 January 11 Day 011 |
FORMAT_DATE('%y %b %d Day %j', CURRENT_DATE) -- yy mon dd doy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24 Jan 11 Day 011 |
FORMAT_DATE('%y %b %e Day %j', CURRENT_DATE) -- yy mon d doy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24 Jan 11 Day 011 |
FORMAT_DATE('%y %h %d Day %j', CURRENT_DATE) -- yy mon dd doy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24 Jan 11 Day 011 |
FORMAT_DATE('%y %h %e Day %j', CURRENT_DATE) -- yy mon d doy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24 Jan 11 Day 011 |
FORMAT_DATE('%G %B %d Day %j', CURRENT_DATE) -- Iy month dd doy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024 January 11 Day 011 |
FORMAT_DATE('%G %B %e Day %j', CURRENT_DATE) -- Iy month d doy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024 January 11 Day 011 |
FORMAT_DATE('%G %b %d Day %j', CURRENT_DATE) -- Iy mon dd doy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024 Jan 11 Day 011 |
FORMAT_DATE('%G %b %e Day %j', CURRENT_DATE) -- Iy mon d doy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024 Jan 11 Day 011 |
FORMAT_DATE('%G %h %d Day %j', CURRENT_DATE) -- Iy mon dd doy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024 Jan 11 Day 011 |
FORMAT_DATE('%G %h %e Day %j', CURRENT_DATE) -- Iy mon d doy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024 Jan 11 Day 011 |
FORMAT_DATE('%g %B %d Day %j', CURRENT_DATE) -- Iyyy month doy dd The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24 January 11 Day 011 |
FORMAT_DATE('%g %B %e Day %j', CURRENT_DATE) -- Iyyy month doy d The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24 January 11 Day 011 |
FORMAT_DATE('%g %b %d Day %j', CURRENT_DATE) -- Iyyy mon dd doy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24 Jan 11 Day 011 |
FORMAT_DATE('%g %b %e Day %j', CURRENT_DATE) -- Iyyy mon d doy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24 Jan 11 Day 011 |
FORMAT_DATE('%g %h %d Day %j', CURRENT_DATE) -- Iyyy mon -dd doy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24 Jan 11 Day 011 |
FORMAT_DATE('%g %h %e Day %j', CURRENT_DATE) -- Iyyy mon d doy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24 Jan 11 Day 011 |
FORMAT_DATE('%Y%m%d', CURRENT_DATE) -- yyyymmdd The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 20240111 |
FORMAT_DATE('%Y%m%e', CURRENT_DATE) -- yyyymm d The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 20240111 |
FORMAT_DATE('%E4Y%m%d', CURRENT_DATE) -- yyyymmdd Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 20240111 |
FORMAT_DATE('%E4Y%m%e', CURRENT_DATE) -- yyyymm d Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 20240111 |
FORMAT_DATE('%y%m%d', CURRENT_DATE) -- yymmdd The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 240111 |
FORMAT_DATE('%y%m%e', CURRENT_DATE) -- yymm d The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 240111 |
FORMAT_DATE('%G%m%d', CURRENT_DATE) -- Iyyymmdd The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 20240111 |
FORMAT_DATE('%G%m%e', CURRENT_DATE) -- Iyyymm d The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 20240111 |
FORMAT_DATE('%g%m%d', CURRENT_DATE) -- Iymmdd The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 240111 |
FORMAT_DATE('%g%m%e', CURRENT_DATE) -- Iymm d The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 240111 |
FORMAT_DATE('%Y%B%d', CURRENT_DATE) -- yyyymonthdd The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) | 2024January11 |
FORMAT_DATE('%Y%B%e', CURRENT_DATE) -- yyyymonth d The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024January11 |
FORMAT_DATE('%Y%b%d', CURRENT_DATE) -- yyyymondd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024Jan11 |
FORMAT_DATE('%Y%b%e', CURRENT_DATE) -- yyyymon d The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024Jan11 |
FORMAT_DATE('%Y%h%d', CURRENT_DATE) -- yyyymondd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024Jan11 |
FORMAT_DATE('%Y%h%e', CURRENT_DATE) -- yyyymondd The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024Jan11 |
FORMAT_DATE('%E4Y%B%d', CURRENT_DATE) -- yyyymonthdd Four-character years (0001 9999) - The full month name - The day of the month as a decimal number (01-31) | 2024January11 |
FORMAT_DATE('%E4Y%B%e', CURRENT_DATE) -- yyyymonth d Four-character years (0001 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024January11 |
FORMAT_DATE('%E4Y%b%d', CURRENT_DATE) -- yyyymondd Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024Jan11 |
FORMAT_DATE('%E4Y%b%e', CURRENT_DATE) -- yyyymon d Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024Jan11 |
FORMAT_DATE('%E4Y%h%d', CURRENT_DATE) -- yyyymondd Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024Jan11 |
FORMAT_DATE('%E4Y%h%e', CURRENT_DATE) -- yyyymon d Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024Jan11 |
FORMAT_DATE('%y%B%d', CURRENT_DATE) -- yymonthdd The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) | 24January11 |
FORMAT_DATE('%y%B%e', CURRENT_DATE) -- yymonth d The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24January11 |
FORMAT_DATE('%y%b%d', CURRENT_DATE) -- yymondd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24Jan11 |
FORMAT_DATE('%y%b%e', CURRENT_DATE) -- yymon d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24Jan11 |
FORMAT_DATE('%y%h%d', CURRENT_DATE) -- yymondd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24Jan11 |
FORMAT_DATE('%y%h%e', CURRENT_DATE) -- yymon d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24Jan11 |
FORMAT_DATE('%G%B%d', CURRENT_DATE) -- Iymonthdd The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) | 2024January11 |
FORMAT_DATE('%G%B%e', CURRENT_DATE) -- Iymonth- d The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024January11 |
FORMAT_DATE('%G%b%d', CURRENT_DATE) -- Iymon-dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024Jan11 |
FORMAT_DATE('%G%b%e', CURRENT_DATE) -- Iymon- d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024Jan11 |
FORMAT_DATE('%G%h%d', CURRENT_DATE) -- Iymondd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024Jan11 |
FORMAT_DATE('%G%h%e', CURRENT_DATE) -- Iymon d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024Jan11 |
FORMAT_DATE('%g%B%d', CURRENT_DATE) -- Iyyymonthdd The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) | 24January11 |
FORMAT_DATE('%g%B%e', CURRENT_DATE) -- Iyyymonth d The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24January11 |
FORMAT_DATE('%g%b%d', CURRENT_DATE) -- Iyyymondd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24Jan11 |
FORMAT_DATE('%g%b%e', CURRENT_DATE) -- Iyyymon d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24Jan11 |
FORMAT_DATE('%g%h%d', CURRENT_DATE) -- Iyyymondd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24Jan11 |
FORMAT_DATE('%g%h%e', CURRENT_DATE) -- Iyyymon d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24Jan11 |
FORMAT_DATE('%Y%m%d Day %j', CURRENT_DATE) -- yyyymmdd doy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 20240111 Day 011 |
FORMAT_DATE('%Y%m%e Day %j', CURRENT_DATE) -- yyyymm d doy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 20240111 Day 011 |
FORMAT_DATE('%E4Y%m%d Day %j', CURRENT_DATE) -- yyyymm-dd doy Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 20240111 Day 011 |
FORMAT_DATE('%E4Y%m%e Day %j', CURRENT_DATE) -- yyyymm d doy Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 20240111 Day 011 |
FORMAT_DATE('%y%m%d Day %j', CURRENT_DATE) -- yymmdd doy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 240111 Day 011 |
FORMAT_DATE('%y%m%e Day %j', CURRENT_DATE) -- yymm d doy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 240111 Day 011 |
FORMAT_DATE('%G%m%d Day %j', CURRENT_DATE) -- Iyyymmdd doy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 20240111 Day 011 |
FORMAT_DATE('%G%m%e Day %j', CURRENT_DATE) -- Iyyymm d doy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 20240111 Day 011 |
FORMAT_DATE('%g%m%d Day %j', CURRENT_DATE) -- Iymmdd doy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 240111 Day 011 |
FORMAT_DATE('%g%m%e Day %j', CURRENT_DATE) -- Iymm d doy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 240111 Day 011 |
FORMAT_DATE('%Y%B%d Day %j', CURRENT_DATE) -- yyyymonthdd doy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024January11 Day 011 |
FORMAT_DATE('%Y%B%e Day %j', CURRENT_DATE) -- yyyymonth d doy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024January11 Day 011 |
FORMAT_DATE('%Y%b%d Day %j', CURRENT_DATE) -- yyyymondd doy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024Jan11 Day 011 |
FORMAT_DATE('%Y%b%e Day %j', CURRENT_DATE) -- yyyymon d doy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024Jan11 Day 011 |
FORMAT_DATE('%Y%h%d Day %j', CURRENT_DATE) -- yyyymondd doy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024Jan11 Day 011 |
FORMAT_DATE('%Y%h%e Day %j', CURRENT_DATE) -- yyyymon-dd doy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024Jan11 Day 011 |
FORMAT_DATE('%E4Y%B%d Day %j', CURRENT_DATE) -- yyyymonthdd doy Four-character years (0001 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024January11 Day 011 |
FORMAT_DATE('%E4Y%B%e Day %j', CURRENT_DATE) -- yyyymonth d doy Four-character years (0001 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024January11 Day 011 |
FORMAT_DATE('%E4Y%b%d Day %j', CURRENT_DATE) -- yyyymondd doy Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024Jan11 Day 011 |
FORMAT_DATE('%E4Y%b%e Day %j', CURRENT_DATE) -- yyyymon d doy Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024Jan11 Day 011 |
FORMAT_DATE('%E4Y%h%d Day %j', CURRENT_DATE) -- yyyymondd doy Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024Jan11 Day 011 |
FORMAT_DATE('%E4Y%h%e Day %j', CURRENT_DATE) -- yyyymon d doy Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024Jan11 Day 011 |
FORMAT_DATE('%y%B%d Day %j', CURRENT_DATE) -- yymonthdd doy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24January11 Day 011 |
FORMAT_DATE('%y%B%e Day %j', CURRENT_DATE) -- yymonth d doy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24January11 Day 011 |
FORMAT_DATE('%y%b%d Day %j', CURRENT_DATE) -- yymondd doy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24Jan11 Day 011 |
FORMAT_DATE('%y%b%e Day %j', CURRENT_DATE) -- yymon d doy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24Jan11 Day 011 |
FORMAT_DATE('%y%h%d Day %j', CURRENT_DATE) -- yymondd doy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24Jan11 Day 011 |
FORMAT_DATE('%y%h%e Day %j', CURRENT_DATE) -- yymon d doy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24Jan11 Day 011 |
FORMAT_DATE('%G%B%d Day %j', CURRENT_DATE) -- Iymonthdd doy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024January11 Day 011 |
FORMAT_DATE('%G%B%e Day %j', CURRENT_DATE) -- Iymonth d doy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024January11 Day 011 |
FORMAT_DATE('%G%b%d Day %j', CURRENT_DATE) -- Iymondd doy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024Jan11 Day 011 |
FORMAT_DATE('%G%b%e Day %j', CURRENT_DATE) -- Iymon d doy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024Jan11 Day 011 |
FORMAT_DATE('%G%h%d Day %j', CURRENT_DATE) -- Iymondd doy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024Jan11 Day 011 |
FORMAT_DATE('%G%h%e Day %j', CURRENT_DATE) -- Iymon d doy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024Jan11 Day 011 |
FORMAT_DATE('%g%B%d Day %j', CURRENT_DATE) -- Iyyymonthdd doy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24January11 Day 011 |
FORMAT_DATE('%g%B%e Day %j', CURRENT_DATE) -- Iyyymonth d doy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24January11 Day 011 |
FORMAT_DATE('%g%b%d Day %j', CURRENT_DATE) -- Iyyymondd doy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24Jan11 Day 011 |
FORMAT_DATE('%g%b%e Day %j', CURRENT_DATE) -- Iyyymon d doy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24Jan11 Day 011 |
FORMAT_DATE('%g%h%d Day %j', CURRENT_DATE) -- Iyyymon-dd doy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24Jan11 Day 011 |
FORMAT_DATE('%g%h%e Day %j', CURRENT_DATE) -- Iyyymon d doy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24Jan11 Day 011 |
FORMAT_DATE('%Y-%m-%d %A', CURRENT_DATE) -- yyyy-mm-dd DOW The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024-01-11 Thursday |
FORMAT_DATE('%Y-%m-%e %A', CURRENT_DATE) -- yyyy-mm- d DOW The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024-01-11 Thursday |
FORMAT_DATE('%E4Y-%m-%d %A', CURRENT_DATE) -- yyyy-mm-dd DOW Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024-01-11 Thursday |
FORMAT_DATE('%E4Y-%m-%e %A', CURRENT_DATE) -- yyyy-mm- d DOW Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024-01-11 Thursday |
FORMAT_DATE('%y-%m-%d %A', CURRENT_DATE) -- yy-mm-dd DOW The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 24-01-11 Thursday |
FORMAT_DATE('%y-%m-%e %A', CURRENT_DATE) -- yy-mm- d DOW The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24-01-11 Thursday |
FORMAT_DATE('%G-%m-%d %A', CURRENT_DATE) -- Iyyy-mm-dd DOW The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024-01-11 Thursday |
FORMAT_DATE('%G-%m-%e %A', CURRENT_DATE) -- Iyyy-mm- d DOW The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024-01-11 Thursday |
FORMAT_DATE('%g-%m-%d %A', CURRENT_DATE) -- Iy-mm-dd DOW The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 24-01-11 Thursday |
FORMAT_DATE('%g-%m-%e %A', CURRENT_DATE) -- Iy-mm- d DOW The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24-01-11 Thursday |
FORMAT_DATE('%Y-%B-%d %A', CURRENT_DATE) -- yyyy-month-dd DOW The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024-January-11 Thursday |
FORMAT_DATE('%Y-%B-%e %A', CURRENT_DATE) -- yyyy-month- d DOW The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024-January-11 Thursday |
FORMAT_DATE('%Y-%b-%d %A', CURRENT_DATE) -- yyyy-mon-dd DOW The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024-Jan-11 Thursday |
FORMAT_DATE('%Y-%b-%e %A', CURRENT_DATE) -- yyyy-mon- d DOW The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024-Jan-11 Thursday |
FORMAT_DATE('%Y-%h-%d %A', CURRENT_DATE) -- yyyy-mon-dd DOW The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024-Jan-11 Thursday |
FORMAT_DATE('%Y-%h-%e %A', CURRENT_DATE) -- yyyy-mon-dd DOW The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024-Jan-11 Thursday |
FORMAT_DATE('%E4Y-%B-%d %A', CURRENT_DATE) -- yyyy-month-dd DOW Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024-January-11 Thursday |
FORMAT_DATE('%E4Y-%B-%e %A', CURRENT_DATE) -- yyyy-month- d DOW Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024-January-11 Thursday |
FORMAT_DATE('%E4Y-%b-%d %A', CURRENT_DATE) -- yyyy-mon-dd DOW Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024-Jan-11 Thursday |
FORMAT_DATE('%E4Y-%b-%e %A', CURRENT_DATE) -- yyyy-mon- d DOW Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024-Jan-11 Thursday |
FORMAT_DATE('%E4Y-%h-%d %A', CURRENT_DATE) -- yyyy-mon-dd DOW Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024-Jan-11 Thursday |
FORMAT_DATE('%E4Y-%h-%e %A', CURRENT_DATE) -- yyyy-mon- d DOW Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024-Jan-11 Thursday |
FORMAT_DATE('%y-%B-%d %A', CURRENT_DATE) -- yy-month-dd DOW The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24-January-11 Thursday |
FORMAT_DATE('%y-%B-%e %A', CURRENT_DATE) -- yy-month- d DOW The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24-January-11 Thursday |
FORMAT_DATE('%y-%b-%d %A', CURRENT_DATE) -- yy-mon-dd DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24-Jan-11 Thursday |
FORMAT_DATE('%y-%b-%e %A', CURRENT_DATE) -- yy-mon- d DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24-Jan-11 Thursday |
FORMAT_DATE('%y-%h-%d %A', CURRENT_DATE) -- yy-mon-dd DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24-Jan-11 Thursday |
FORMAT_DATE('%y-%h-%e %A', CURRENT_DATE) -- yy-mon- d DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24-Jan-11 Thursday |
FORMAT_DATE('%G-%B-%d %A', CURRENT_DATE) -- Iy-month-dd DOW The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024-January-11 Thursday |
FORMAT_DATE('%G-%B-%e %A', CURRENT_DATE) -- Iy-month- d DOW The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024-January-11 Thursday |
FORMAT_DATE('%G-%b-%d %A', CURRENT_DATE) -- Iy-mon-dd DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024-Jan-11 Thursday |
FORMAT_DATE('%G-%b-%e %A', CURRENT_DATE) -- Iy-mon- d DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024-Jan-11 Thursday |
FORMAT_DATE('%G-%h-%d %A', CURRENT_DATE) -- Iy-mon-dd DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024-Jan-11 Thursday |
FORMAT_DATE('%G-%h-%e %A', CURRENT_DATE) -- Iy-mon- d DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024-Jan-11 Thursday |
FORMAT_DATE('%g-%B-%d %A', CURRENT_DATE) -- Iyyy-month-dd DOW The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24-January-11 Thursday |
FORMAT_DATE('%g-%B-%e %A', CURRENT_DATE) -- Iyyy-month- d DOW The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24-January-11 Thursday |
FORMAT_DATE('%g-%b-%d %A', CURRENT_DATE) -- Iyyy-mon-dd DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24-Jan-11 Thursday |
FORMAT_DATE('%g-%b-%e %A', CURRENT_DATE) -- Iyyy-mon- d DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24-Jan-11 Thursday |
FORMAT_DATE('%g-%h-%d %A', CURRENT_DATE) -- Iyyy-mon-dd DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24-Jan-11 Thursday |
FORMAT_DATE('%g-%h-%e %A', CURRENT_DATE) -- Iyyy-mon- d DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24-Jan-11 Thursday |
FORMAT_DATE('%Y/%m/%d %A', CURRENT_DATE) -- yyyy/mm/dd DOW The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024/01/11 Thursday |
FORMAT_DATE('%Y/%m/%e %A', CURRENT_DATE) -- yyyy/mm/ d DOW The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024/01/11 Thursday |
FORMAT_DATE('%E4Y/%m/%d %A', CURRENT_DATE) -- yyyy/mm/-dd DOW Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024/01/11 Thursday |
FORMAT_DATE('%E4Y/%m/%e %A', CURRENT_DATE) -- yyyy/mm/ d DOW Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024/01/11 Thursday |
FORMAT_DATE('%y/%m/%d %A', CURRENT_DATE) -- yy/mm/dd DOW The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 24/01/11 Thursday |
FORMAT_DATE('%y/%m/%e %A', CURRENT_DATE) -- yy/mm/ d DOW The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24/01/11 Thursday |
FORMAT_DATE('%G/%m/%d %A', CURRENT_DATE) -- Iyyy/mm/dd DOW The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024/01/11 Thursday |
FORMAT_DATE('%G/%m/%e %A', CURRENT_DATE) -- Iyyy/mm/ d DOW The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024/01/11 Thursday |
FORMAT_DATE('%g/%m/%d %A', CURRENT_DATE) -- Iy/mm/dd DOW The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 24/01/11 Thursday |
FORMAT_DATE('%g/%m/%e %A', CURRENT_DATE) -- Iy/mm/ d DOW The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24/01/11 Thursday |
FORMAT_DATE('%Y/%B/%d %A', CURRENT_DATE) -- yyyy/month/dd DOW The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024/January/11 Thursday |
FORMAT_DATE('%Y/%B/%e %A', CURRENT_DATE) -- yyyy/month/ d DOW The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024/January/11 Thursday |
FORMAT_DATE('%Y/%b/%d %A', CURRENT_DATE) -- yyyy/mon/dd DOW The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024/Jan/11 Thursday |
FORMAT_DATE('%Y/%b/%e %A', CURRENT_DATE) -- yyyy/mon/ d DOW The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024/Jan/11 Thursday |
FORMAT_DATE('%Y/%h/%d %A', CURRENT_DATE) -- yyyy/mon/dd DOW The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024/Jan/11 Thursday |
FORMAT_DATE('%Y/%h/%e %A', CURRENT_DATE) -- yyyy/mon/-dd DOW The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024/Jan/11 Thursday |
FORMAT_DATE('%E4Y/%B/%d %A', CURRENT_DATE) -- yyyy/month/dd DOW Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024/January/11 Thursday |
FORMAT_DATE('%E4Y/%B/%e %A', CURRENT_DATE) -- yyyy/month/ d DOW Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024/January/11 Thursday |
FORMAT_DATE('%E4Y/%b/%d %A', CURRENT_DATE) -- yyyy/mon/dd DOW Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024/Jan/11 Thursday |
FORMAT_DATE('%E4Y/%b/%e %A', CURRENT_DATE) -- yyyy/mon/ d DOW Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024/Jan/11 Thursday |
FORMAT_DATE('%E4Y/%h/%d %A', CURRENT_DATE) -- yyyy/mon/dd DOW Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024/Jan/11 Thursday |
FORMAT_DATE('%E4Y/%h/%e %A', CURRENT_DATE) -- yyyy/mon/ d DOW Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024/Jan/11 Thursday |
FORMAT_DATE('%y/%B/%d %A', CURRENT_DATE) -- yy/month/dd DOW The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24/January/11 Thursday |
FORMAT_DATE('%y/%B/%e %A', CURRENT_DATE) -- yy/month/ d DOW The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24/January/11 Thursday |
FORMAT_DATE('%y/%b/%d %A', CURRENT_DATE) -- yy/mon/dd DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24/Jan/11 Thursday |
FORMAT_DATE('%y/%b/%e %A', CURRENT_DATE) -- yy/mon/ d DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24/Jan/11 Thursday |
FORMAT_DATE('%y/%h/%d %A', CURRENT_DATE) -- yy/mon/dd DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24/Jan/11 Thursday |
FORMAT_DATE('%y/%h/%e %A', CURRENT_DATE) -- yy/mon/ d DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24/Jan/11 Thursday |
FORMAT_DATE('%G/%B/%d %A', CURRENT_DATE) -- Iy/month/dd DOW The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024/January/11 Thursday |
FORMAT_DATE('%G/%B/%e %A', CURRENT_DATE) -- Iy/month/ d DOW The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024/January/11 Thursday |
FORMAT_DATE('%G/%b/%d %A', CURRENT_DATE) -- Iy/mon/dd DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024/Jan/11 Thursday |
FORMAT_DATE('%G/%b/%e %A', CURRENT_DATE) -- Iy/mon/ d DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024/Jan/11 Thursday |
FORMAT_DATE('%G/%h/%d %A', CURRENT_DATE) -- Iy/mon/dd DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024/Jan/11 Thursday |
FORMAT_DATE('%G/%h/%e %A', CURRENT_DATE) -- Iy/mon/ d DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024/Jan/11 Thursday |
FORMAT_DATE('%g/%B/%d %A', CURRENT_DATE) -- Iyyy/month/dd DOW The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24/January/11 Thursday |
FORMAT_DATE('%g/%B/%e %A', CURRENT_DATE) -- Iyyy/month/ d DOW The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24/January/11 Thursday |
FORMAT_DATE('%g/%b/%d %A', CURRENT_DATE) -- Iyyy/mon/dd DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24/Jan/11 Thursday |
FORMAT_DATE('%g/%b/%e %A', CURRENT_DATE) -- Iyyy/mon/ d DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24/Jan/11 Thursday |
FORMAT_DATE('%g/%h/%d %A', CURRENT_DATE) -- Iyyy/mon/-dd DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24/Jan/11 Thursday |
FORMAT_DATE('%g/%h/%e %A', CURRENT_DATE) -- Iyyy/mon/ d DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24/Jan/11 Thursday |
FORMAT_DATE('%Y:%m:%d %A', CURRENT_DATE) -- yyyy:mm:dd DOW The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024:01:11 Thursday |
FORMAT_DATE('%Y:%m:%e %A', CURRENT_DATE) -- yyyy:mm: d DOW The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024:01:11 Thursday |
FORMAT_DATE('%E4Y:%m:%d %A', CURRENT_DATE) -- yyyy:mm:-dd DOW Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024:01:11 Thursday |
FORMAT_DATE('%E4Y:%m:%e %A', CURRENT_DATE) -- yyyy:mm: d DOW Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024:01:11 Thursday |
FORMAT_DATE('%y:%m:%d %A', CURRENT_DATE) -- yy:mm:dd DOW The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 24:01:11 Thursday |
FORMAT_DATE('%y:%m:%e %A', CURRENT_DATE) -- yy:mm: d DOW The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24:01:11 Thursday |
FORMAT_DATE('%G:%m:%d %A', CURRENT_DATE) -- Iyyy:mm:dd DOW The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024:01:11 Thursday |
FORMAT_DATE('%G:%m:%e %A', CURRENT_DATE) -- Iyyy:mm: d DOW The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024:01:11 Thursday |
FORMAT_DATE('%g:%m:%d %A', CURRENT_DATE) -- Iy:mm:dd DOW The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 24:01:11 Thursday |
FORMAT_DATE('%g:%m:%e %A', CURRENT_DATE) -- Iy:mm: d DOW The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24:01:11 Thursday |
FORMAT_DATE('%Y:%B:%d %A', CURRENT_DATE) -- yyyy:month:dd DOW The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024:January:11 Thursday |
FORMAT_DATE('%Y:%B:%e %A', CURRENT_DATE) -- yyyy:month: d DOW The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024:January:11 Thursday |
FORMAT_DATE('%Y:%b:%d %A', CURRENT_DATE) -- yyyy:mon:dd DOW The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024:Jan:11 Thursday |
FORMAT_DATE('%Y:%b:%e %A', CURRENT_DATE) -- yyyy:mon: d DOW The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024:Jan:11 Thursday |
FORMAT_DATE('%Y:%h:%d %A', CURRENT_DATE) -- yyyy:mon:dd DOW The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024:Jan:11 Thursday |
FORMAT_DATE('%Y:%h:%e %A', CURRENT_DATE) -- yyyy:mon:-dd DOW The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024:Jan:11 Thursday |
FORMAT_DATE('%E4Y:%B:%d %A', CURRENT_DATE) -- yyyy:month:dd DOW Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024:January:11 Thursday |
FORMAT_DATE('%E4Y:%B:%e %A', CURRENT_DATE) -- yyyy:month: d DOW Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024:January:11 Thursday |
FORMAT_DATE('%E4Y:%b:%d %A', CURRENT_DATE) -- yyyy:mon:dd DOW Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024:Jan:11 Thursday |
FORMAT_DATE('%E4Y:%b:%e %A', CURRENT_DATE) -- yyyy:mon: d DOW Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024:Jan:11 Thursday |
FORMAT_DATE('%E4Y:%h:%d %A', CURRENT_DATE) -- yyyy:mon:dd DOW Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024:Jan:11 Thursday |
FORMAT_DATE('%E4Y:%h:%e %A', CURRENT_DATE) -- yyyy:mon: d DOW Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024:Jan:11 Thursday |
FORMAT_DATE('%y:%B:%d %A', CURRENT_DATE) -- yy:month:dd DOW The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24:January:11 Thursday |
FORMAT_DATE('%y:%B:%e %A', CURRENT_DATE) -- yy:month: d DOW The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24:January:11 Thursday |
FORMAT_DATE('%y:%b:%d %A', CURRENT_DATE) -- yy:mon:dd DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24:Jan:11 Thursday |
FORMAT_DATE('%y:%b:%e %A', CURRENT_DATE) -- yy:mon: d DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24:Jan:11 Thursday |
FORMAT_DATE('%y:%h:%d %A', CURRENT_DATE) -- yy:mon:dd DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24:Jan:11 Thursday |
FORMAT_DATE('%y:%h:%e %A', CURRENT_DATE) -- yy:mon: d DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24:Jan:11 Thursday |
FORMAT_DATE('%G:%B:%d %A', CURRENT_DATE) -- Iy:month:dd DOW The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024:January:11 Thursday |
FORMAT_DATE('%G:%B:%e %A', CURRENT_DATE) -- Iy:month: d DOW The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024:January:11 Thursday |
FORMAT_DATE('%G:%b:%d %A', CURRENT_DATE) -- Iy:mon:dd DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024:Jan:11 Thursday |
FORMAT_DATE('%G:%b:%e %A', CURRENT_DATE) -- Iy:mon: d DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024:Jan:11 Thursday |
FORMAT_DATE('%G:%h:%d %A', CURRENT_DATE) -- Iy:mon:dd DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024:Jan:11 Thursday |
FORMAT_DATE('%G:%h:%e %A', CURRENT_DATE) -- Iy:mon: d DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024:Jan:11 Thursday |
FORMAT_DATE('%g:%B:%d %A', CURRENT_DATE) -- Iyyy:month:dd DOW The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24:January:11 Thursday |
FORMAT_DATE('%g:%B:%e %A', CURRENT_DATE) -- Iyyy:month: d DOW The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24:January:11 Thursday |
FORMAT_DATE('%g:%b:%d %A', CURRENT_DATE) -- Iyyy:mon:dd DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24:Jan:11 Thursday |
FORMAT_DATE('%g:%b:%e %A', CURRENT_DATE) -- Iyyy:mon: d DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24:Jan:11 Thursday |
FORMAT_DATE('%g:%h:%d %A', CURRENT_DATE) -- Iyyy:mon:-dd DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24:Jan:11 Thursday |
FORMAT_DATE('%g:%h:%e %A', CURRENT_DATE) -- Iyyy:mon: d DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24:Jan:11 Thursday |
FORMAT_DATE('%Y.%m.%d %A', CURRENT_DATE) -- yyyy.mm.dd DOW The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024.01.11 Thursday |
FORMAT_DATE('%Y.%m.%e %A', CURRENT_DATE) -- yyyy.mm. d DOW The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024.01.11 Thursday |
FORMAT_DATE('%E4Y.%m.%d %A', CURRENT_DATE) -- yyyy.mm.-dd DOW Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024.01.11 Thursday |
FORMAT_DATE('%E4Y.%m.%e %A', CURRENT_DATE) -- yyyy.mm. d DOW Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024.01.11 Thursday |
FORMAT_DATE('%y.%m.%d %A', CURRENT_DATE) -- yy.mm.dd DOW The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 24.01.11 Thursday |
FORMAT_DATE('%y.%m.%e %A', CURRENT_DATE) -- yy.mm. d DOW The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24.01.11 Thursday |
FORMAT_DATE('%G.%m.%d %A', CURRENT_DATE) -- Iyyy.mm.dd DOW The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024.01.11 Thursday |
FORMAT_DATE('%G.%m.%e %A', CURRENT_DATE) -- Iyyy.mm. d DOW The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024.01.11 Thursday |
FORMAT_DATE('%g.%m.%d %A', CURRENT_DATE) -- Iy.mm.dd DOW The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 24.01.11 Thursday |
FORMAT_DATE('%g.%m.%e %A', CURRENT_DATE) -- Iy.mm. d DOW The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24.01.11 Thursday |
FORMAT_DATE('%Y.%B.%d %A', CURRENT_DATE) -- yyyy.month.dd DOW The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024.January.11 Thursday |
FORMAT_DATE('%Y.%B.%e %A', CURRENT_DATE) -- yyyy.month. d DOW The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024.January.11 Thursday |
FORMAT_DATE('%Y.%b.%d %A', CURRENT_DATE) -- yyyy.mon.dd DOW The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024.Jan.11 Thursday |
FORMAT_DATE('%Y.%b.%e %A', CURRENT_DATE) -- yyyy.mon. d DOW The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024.Jan.11 Thursday |
FORMAT_DATE('%Y.%h.%d %A', CURRENT_DATE) -- yyyy.mon.dd DOW The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024.Jan.11 Thursday |
FORMAT_DATE('%Y.%h.%e %A', CURRENT_DATE) -- yyyy.mon.-dd DOW The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024.Jan.11 Thursday |
FORMAT_DATE('%E4Y.%B.%d %A', CURRENT_DATE) -- yyyy.month.dd DOW Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024.January.11 Thursday |
FORMAT_DATE('%E4Y.%B.%e %A', CURRENT_DATE) -- yyyy.month. d DOW Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024.January.11 Thursday |
FORMAT_DATE('%E4Y.%b.%d %A', CURRENT_DATE) -- yyyy.mon.dd DOW Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024.Jan.11 Thursday |
FORMAT_DATE('%E4Y.%b.%e %A', CURRENT_DATE) -- yyyy.mon. d DOW Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024.Jan.11 Thursday |
FORMAT_DATE('%E4Y.%h.%d %A', CURRENT_DATE) -- yyyy.mon.dd DOW Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024.Jan.11 Thursday |
FORMAT_DATE('%E4Y.%h.%e %A', CURRENT_DATE) -- yyyy.mon. d DOW Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024.Jan.11 Thursday |
FORMAT_DATE('%y.%B.%d %A', CURRENT_DATE) -- yy.month.dd DOW The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24.January.11 Thursday |
FORMAT_DATE('%y.%B.%e %A', CURRENT_DATE) -- yy.month. d DOW The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24.January.11 Thursday |
FORMAT_DATE('%y.%b.%d %A', CURRENT_DATE) -- yy.mon.dd DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24.Jan.11 Thursday |
FORMAT_DATE('%y.%b.%e %A', CURRENT_DATE) -- yy.mon. d DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24.Jan.11 Thursday |
FORMAT_DATE('%y.%h.%d %A', CURRENT_DATE) -- yy.mon.dd DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24.Jan.11 Thursday |
FORMAT_DATE('%y.%h.%e %A', CURRENT_DATE) -- yy.mon. d DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24.Jan.11 Thursday |
FORMAT_DATE('%G.%B.%d %A', CURRENT_DATE) -- Iy.month.dd DOW The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024.January.11 Thursday |
FORMAT_DATE('%G.%B.%e %A', CURRENT_DATE) -- Iy.month. d DOW The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024.January.11 Thursday |
FORMAT_DATE('%G.%b.%d %A', CURRENT_DATE) -- Iy.mon.dd DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024.Jan.11 Thursday |
FORMAT_DATE('%G.%b.%e %A', CURRENT_DATE) -- Iy.mon. d DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024.Jan.11 Thursday |
FORMAT_DATE('%G.%h.%d %A', CURRENT_DATE) -- Iy.mon.dd DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024.Jan.11 Thursday |
FORMAT_DATE('%G.%h.%e %A', CURRENT_DATE) -- Iy.mon. d DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024.Jan.11 Thursday |
FORMAT_DATE('%g.%B.%d %A', CURRENT_DATE) -- Iyyy.month.dd DOW The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24.January.11 Thursday |
FORMAT_DATE('%g.%B.%e %A', CURRENT_DATE) -- Iyyy.month. d DOW The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24.January.11 Thursday |
FORMAT_DATE('%g.%b.%d %A', CURRENT_DATE) -- Iyyy.mon.dd DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24.Jan.11 Thursday |
FORMAT_DATE('%g.%b.%e %A', CURRENT_DATE) -- Iyyy.mon. d DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24.Jan.11 Thursday |
FORMAT_DATE('%g.%h.%d %A', CURRENT_DATE) -- Iyyy.mon.-dd DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24.Jan.11 Thursday |
FORMAT_DATE('%g.%h.%e %A', CURRENT_DATE) -- Iyyy.mon. d DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24.Jan.11 Thursday |
FORMAT_DATE('%Y %m %d %A', CURRENT_DATE) -- yyyy mm dd DOW The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024 01 11 Thursday |
FORMAT_DATE('%Y %m %e %A', CURRENT_DATE) -- yyyy mm d DOW The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024 01 11 Thursday |
FORMAT_DATE('%E4Y %m %d %A', CURRENT_DATE) -- yyyy mm dd DOW Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024 01 11 Thursday |
FORMAT_DATE('%E4Y %m %e %A', CURRENT_DATE) -- yyyy mm d DOW Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024 01 11 Thursday |
FORMAT_DATE('%y %m %d %A', CURRENT_DATE) -- yy mm dd DOW The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 24 01 11 Thursday |
FORMAT_DATE('%y %m %e %A', CURRENT_DATE) -- yy mm d DOW The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24 01 11 Thursday |
FORMAT_DATE('%G %m %d %A', CURRENT_DATE) -- Iyyy mm dd DOW The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024 01 11 Thursday |
FORMAT_DATE('%G %m %e %A', CURRENT_DATE) -- Iyyy mm d DOW The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024 01 11 Thursday |
FORMAT_DATE('%g %m %d %A', CURRENT_DATE) -- Iy mm dd DOW The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 24 01 11 Thursday |
FORMAT_DATE('%g %m %e %A', CURRENT_DATE) -- Iy mm d DOW The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24 01 11 Thursday |
FORMAT_DATE('%Y %B %d %A', CURRENT_DATE) -- yyyy month dd DOW The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024 January 11 Thursday |
FORMAT_DATE('%Y %B %e %A', CURRENT_DATE) -- yyyy month d DOW The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024 January 11 Thursday |
FORMAT_DATE('%Y %b %d %A', CURRENT_DATE) -- yyyy mon dd DOW The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024 Jan 11 Thursday |
FORMAT_DATE('%Y %b %e %A', CURRENT_DATE) -- yyyy mon d DOW The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024 Jan 11 Thursday |
FORMAT_DATE('%Y %h %d %A', CURRENT_DATE) -- yyyy mon dd DOW The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024 Jan 11 Thursday |
FORMAT_DATE('%Y %h %e %A', CURRENT_DATE) -- yyyy mon -dd DOW The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024 Jan 11 Thursday |
FORMAT_DATE('%E4Y %B %d %A', CURRENT_DATE) -- yyyy month dd DOW Four-character years (0001 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024 January 11 Thursday |
FORMAT_DATE('%E4Y %B %e %A', CURRENT_DATE) -- yyyy month d DOW Four-character years (0001 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024 January 11 Thursday |
FORMAT_DATE('%E4Y %b %d %A', CURRENT_DATE) -- yyyy mon dd DOW Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024 Jan 11 Thursday |
FORMAT_DATE('%E4Y %b %e %A', CURRENT_DATE) -- yyyy mon d DOW Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024 Jan 11 Thursday |
FORMAT_DATE('%E4Y %h %d %A', CURRENT_DATE) -- yyyy mon dd DOW Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024 Jan 11 Thursday |
FORMAT_DATE('%E4Y %h %e %A', CURRENT_DATE) -- yyyy mon d DOW Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024 Jan 11 Thursday |
FORMAT_DATE('%y %B %d %A', CURRENT_DATE) -- yy month dd DOW The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24 January 11 Thursday |
FORMAT_DATE('%y %B %e %A', CURRENT_DATE) -- yy month d DOW The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24 January 11 Thursday |
FORMAT_DATE('%y %b %d %A', CURRENT_DATE) -- yy mon dd DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24 Jan 11 Thursday |
FORMAT_DATE('%y %b %e %A', CURRENT_DATE) -- yy mon d DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24 Jan 11 Thursday |
FORMAT_DATE('%y %h %d %A', CURRENT_DATE) -- yy mon dd DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24 Jan 11 Thursday |
FORMAT_DATE('%y %h %e %A', CURRENT_DATE) -- yy mon d DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24 Jan 11 Thursday |
FORMAT_DATE('%G %B %d %A', CURRENT_DATE) -- Iy month dd DOW The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024 January 11 Thursday |
FORMAT_DATE('%G %B %e %A', CURRENT_DATE) -- Iy month d DOW The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024 January 11 Thursday |
FORMAT_DATE('%G %b %d %A', CURRENT_DATE) -- Iy mon dd DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024 Jan 11 Thursday |
FORMAT_DATE('%G %b %e %A', CURRENT_DATE) -- Iy mon d DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024 Jan 11 Thursday |
FORMAT_DATE('%G %h %d %A', CURRENT_DATE) -- Iy mon dd DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024 Jan 11 Thursday |
FORMAT_DATE('%G %h %e %A', CURRENT_DATE) -- Iy mon d DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024 Jan 11 Thursday |
FORMAT_DATE('%g %B %d %A', CURRENT_DATE) -- Iyyy month dd DOW The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24 January 11 Thursday |
FORMAT_DATE('%g %B %e %A', CURRENT_DATE) -- Iyyy month d DOW The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24 January 11 Thursday |
FORMAT_DATE('%g %b %d %A', CURRENT_DATE) -- Iyyy mon dd DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24 Jan 11 Thursday |
FORMAT_DATE('%g %b %e %A', CURRENT_DATE) -- Iyyy mon d DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24 Jan 11 Thursday |
FORMAT_DATE('%g %h %d %A', CURRENT_DATE) -- Iyyy mon dd DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24 Jan 11 Thursday |
FORMAT_DATE('%g %h %e %A', CURRENT_DATE) -- Iyyy mon d DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24 Jan 11 Thursday |
FORMAT_DATE('%Y%m%d %A', CURRENT_DATE) -- yyyymmdd DOW The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 20240111 Thursday |
FORMAT_DATE('%Y%m%e %A', CURRENT_DATE) -- yyyymm d DOW The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 20240111 Thursday |
FORMAT_DATE('%E4Y%m%d %A', CURRENT_DATE) -- yyyymmdd DOW Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 20240111 Thursday |
FORMAT_DATE('%E4Y%m%e %A', CURRENT_DATE) -- yyyymm d DOW Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 20240111 Thursday |
FORMAT_DATE('%y%m%d %A', CURRENT_DATE) -- yymmdd DOW The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 240111 Thursday |
FORMAT_DATE('%y%m%e %A', CURRENT_DATE) -- yymm d DOW The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 240111 Thursday |
FORMAT_DATE('%G%m%d %A', CURRENT_DATE) -- Iyyymmdd DOW The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 20240111 Thursday |
FORMAT_DATE('%G%m%e %A', CURRENT_DATE) -- Iyyymm d DOW The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 20240111 Thursday |
FORMAT_DATE('%g%m%d %A', CURRENT_DATE) -- Iymmdd DOW The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 240111 Thursday |
FORMAT_DATE('%g%m%e %A', CURRENT_DATE) -- Iymm d DOW The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 240111 Thursday |
FORMAT_DATE('%Y%B%d %A', CURRENT_DATE) -- yyyymonthdd DOW The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024January11 Thursday |
FORMAT_DATE('%Y%B%e %A', CURRENT_DATE) -- yyyymonth d DOW The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024January11 Thursday |
FORMAT_DATE('%Y%b%d %A', CURRENT_DATE) -- yyyymondd DOW The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024Jan11 Thursday |
FORMAT_DATE('%Y%b%e %A', CURRENT_DATE) -- yyyymon d DOW The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024Jan11 Thursday |
FORMAT_DATE('%Y%h%d %A', CURRENT_DATE) -- yyyymondd DOW The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024Jan11 Thursday |
FORMAT_DATE('%Y%h%e %A', CURRENT_DATE) -- yyyymon-dd DOW The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024Jan11 Thursday |
FORMAT_DATE('%E4Y%B%d %A', CURRENT_DATE) -- yyyymonthdd DOW Four-character years (0001 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024January11 Thursday |
FORMAT_DATE('%E4Y%B%e %A', CURRENT_DATE) -- yyyymonth d DOW Four-character years (0001 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024January11 Thursday |
FORMAT_DATE('%E4Y%b%d %A', CURRENT_DATE) -- yyyymondd DOW Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024Jan11 Thursday |
FORMAT_DATE('%E4Y%b%e %A', CURRENT_DATE) -- yyyymon d DOW Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024Jan11 Thursday |
FORMAT_DATE('%E4Y%h%d %A', CURRENT_DATE) -- yyyymondd DOW Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024Jan11 Thursday |
FORMAT_DATE('%E4Y%h%e %A', CURRENT_DATE) -- yyyymon d DOW Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024Jan11 Thursday |
FORMAT_DATE('%y%B%d %A', CURRENT_DATE) -- yymonthdd DOW The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24January11 Thursday |
FORMAT_DATE('%y%B%e %A', CURRENT_DATE) -- yymonth d DOW The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24January11 Thursday |
FORMAT_DATE('%y%b%d %A', CURRENT_DATE) -- yymondd DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24Jan11 Thursday |
FORMAT_DATE('%y%b%e %A', CURRENT_DATE) -- yymon d DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24Jan11 Thursday |
FORMAT_DATE('%y%h%d %A', CURRENT_DATE) -- yymondd DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24Jan11 Thursday |
FORMAT_DATE('%y%h%e %A', CURRENT_DATE) -- yymon d DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24Jan11 Thursday |
FORMAT_DATE('%G%B%d %A', CURRENT_DATE) -- Iymonthdd DOW The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024January11 Thursday |
FORMAT_DATE('%G%B%e %A', CURRENT_DATE) -- Iymonth d DOW The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024January11 Thursday |
FORMAT_DATE('%G%b%d %A', CURRENT_DATE) -- Iymondd DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024Jan11 Thursday |
FORMAT_DATE('%G%b%e %A', CURRENT_DATE) -- Iymon d DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024Jan11 Thursday |
FORMAT_DATE('%G%h%d %A', CURRENT_DATE) -- Iymondd DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024Jan11 Thursday |
FORMAT_DATE('%G%h%e %A', CURRENT_DATE) -- Iymon d DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024Jan11 Thursday |
FORMAT_DATE('%g%B%d %A', CURRENT_DATE) -- Iyyymonthdd DOW The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24January11 Thursday |
FORMAT_DATE('%g%B%e %A', CURRENT_DATE) -- Iyyymonth d DOW The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24January11 Thursday |
FORMAT_DATE('%g%b%d %A', CURRENT_DATE) -- Iyyymondd DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24Jan11 Thursday |
FORMAT_DATE('%g%b%e %A', CURRENT_DATE) -- Iyyymon d DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24Jan11 Thursday |
FORMAT_DATE('%g%h%d %A', CURRENT_DATE) -- Iyyymon-dd DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24Jan11 Thursday |
FORMAT_DATE('%g%h%e %A', CURRENT_DATE) -- Iyyymon d DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24Jan11 Thursday |
FORMAT_DATE('%Y-%m-%d %a', CURRENT_DATE) -- yyyy-mm-dd dow abbrev The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024-01-11 Thu |
FORMAT_DATE('%Y-%m-%e %a', CURRENT_DATE) -- yyyy-mm- d dow abbrev The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024-01-11 Thu |
FORMAT_DATE('%E4Y-%m-%d %a', CURRENT_DATE) -- yyyy-mm-dd dow abbrev Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024-01-11 Thu |
FORMAT_DATE('%E4Y-%m-%e %a', CURRENT_DATE) -- yyyy-mm- d dow abbrev Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024-01-11 Thu |
FORMAT_DATE('%y-%m-%d %a', CURRENT_DATE) -- yy-mm-dd dow abbrev The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24-01-11 Thu |
FORMAT_DATE('%y-%m-%e %a', CURRENT_DATE) -- yy-mm- d dow abbrev The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24-01-11 Thu |
FORMAT_DATE('%G-%m-%d %a', CURRENT_DATE) -- Iyyy-mm-dd dow abbrev The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024-01-11 Thu |
FORMAT_DATE('%G-%m-%e %a', CURRENT_DATE) -- Iyyy-mm- d dow abbrev The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024-01-11 Thu |
FORMAT_DATE('%g-%m-%d %a', CURRENT_DATE) -- Iy-mm-dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24-01-11 Thu |
FORMAT_DATE('%g-%m-%e %a', CURRENT_DATE) -- Iy-mm- d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24-01-11 Thu |
FORMAT_DATE('%Y-%B-%d %a', CURRENT_DATE) -- yyyy-month-dd dow abbrev The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024-January-11 Thu |
FORMAT_DATE('%Y-%B-%e %a', CURRENT_DATE) -- yyyy-month- d dow abbrev The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024-January-11 Thu |
FORMAT_DATE('%Y-%b-%d %a', CURRENT_DATE) -- yyyy-mon-dd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024-Jan-11 Thu |
FORMAT_DATE('%Y-%b-%e %a', CURRENT_DATE) -- yyyy-mon- d dow abbrev The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024-Jan-11 Thu |
FORMAT_DATE('%Y-%h-%d %a', CURRENT_DATE) -- yyyy-mon-dd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024-Jan-11 Thu |
FORMAT_DATE('%Y-%h-%e %a', CURRENT_DATE) -- yyyy-mon-dd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024-Jan-11 Thu |
FORMAT_DATE('%E4Y-%B-%d %a', CURRENT_DATE) -- yyyy-month-dd dow abbrev Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024-January-11 Thu |
FORMAT_DATE('%E4Y-%B-%e %a', CURRENT_DATE) -- yyyy-month- d dow abbrev Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024-January-11 Thu |
FORMAT_DATE('%E4Y-%b-%d %a', CURRENT_DATE) -- yyyy-mon-dd dow abbrev Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024-Jan-11 Thu |
FORMAT_DATE('%E4Y-%b-%e %a', CURRENT_DATE) -- yyyy-mon- d dow abbrev Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024-Jan-11 Thu |
FORMAT_DATE('%E4Y-%h-%d %a', CURRENT_DATE) -- yyyy-mon-dd dow abbrev Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024-Jan-11 Thu |
FORMAT_DATE('%E4Y-%h-%e %a', CURRENT_DATE) -- yyyy-mon- d dow abbrev Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024-Jan-11 Thu |
FORMAT_DATE('%y-%B-%d %a', CURRENT_DATE) -- yy-month-dd dow abbrev The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24-January-11 Thu |
FORMAT_DATE('%y-%B-%e %a', CURRENT_DATE) -- yy-month- d dow abbrev The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24-January-11 Thu |
FORMAT_DATE('%y-%b-%d %a', CURRENT_DATE) -- yy-mon-dd dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24-Jan-11 Thu |
FORMAT_DATE('%y-%b-%e %a', CURRENT_DATE) -- yy-mon- d dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24-Jan-11 Thu |
FORMAT_DATE('%y-%h-%d %a', CURRENT_DATE) -- yy-mon-dd dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24-Jan-11 Thu |
FORMAT_DATE('%y-%h-%e %a', CURRENT_DATE) -- yy-mon- d dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24-Jan-11 Thu |
FORMAT_DATE('%G-%B-%d %a', CURRENT_DATE) -- Iy-month-dd dow abbrev The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024-January-11 Thu |
FORMAT_DATE('%G-%B-%e %a', CURRENT_DATE) -- Iy-month- d dow abbrev The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024-January-11 Thu |
FORMAT_DATE('%G-%b-%d %a', CURRENT_DATE) -- Iy-mon-dd dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024-Jan-11 Thu |
FORMAT_DATE('%G-%b-%e %a', CURRENT_DATE) -- Iy-mon- d dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024-Jan-11 Thu |
FORMAT_DATE('%G-%h-%d %a', CURRENT_DATE) -- Iy-mon-dd dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024-Jan-11 Thu |
FORMAT_DATE('%G-%h-%e %a', CURRENT_DATE) -- Iy-mon- d dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024-Jan-11 Thu |
FORMAT_DATE('%g-%B-%d %a', CURRENT_DATE) -- Iyyy-month-dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24-January-11 Thu |
FORMAT_DATE('%g-%B-%e %a', CURRENT_DATE) -- Iyyy-month- d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24-January-11 Thu |
FORMAT_DATE('%g-%b-%d %a', CURRENT_DATE) -- Iyyy-mon-dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24-Jan-11 Thu |
FORMAT_DATE('%g-%b-%e %a', CURRENT_DATE) -- Iyyy-mon- d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24-Jan-11 Thu |
FORMAT_DATE('%g-%h-%d %a', CURRENT_DATE) -- Iyyy-mon-dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24-Jan-11 Thu |
FORMAT_DATE('%g-%h-%e %a', CURRENT_DATE) -- Iyyy-mon- d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24-Jan-11 Thu |
FORMAT_DATE('%Y/%m/%d %a', CURRENT_DATE) -- yyyy/mm/dd dow abbrev The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024/01/11 Thu |
FORMAT_DATE('%Y/%m/%e %a', CURRENT_DATE) -- yyyy/mm/ d dow abbrev The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024/01/11 Thu |
FORMAT_DATE('%E4Y/%m/%d %a', CURRENT_DATE) -- yyyy/mm/-dd dow abbrev Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024/01/11 Thu |
FORMAT_DATE('%E4Y/%m/%e %a', CURRENT_DATE) -- yyyy/mm/ d dow abbrev Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024/01/11 Thu |
FORMAT_DATE('%y/%m/%d %a', CURRENT_DATE) -- yy/mm/dd dow abbrev The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24/01/11 Thu |
FORMAT_DATE('%y/%m/%e %a', CURRENT_DATE) -- yy/mm/ d dow abbrev The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24/01/11 Thu |
FORMAT_DATE('%G/%m/%d %a', CURRENT_DATE) -- Iyyy/mm/dd dow abbrev The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024/01/11 Thu |
FORMAT_DATE('%G/%m/%e %a', CURRENT_DATE) -- Iyyy/mm/ d dow abbrev The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024/01/11 Thu |
FORMAT_DATE('%g/%m/%d %a', CURRENT_DATE) -- Iy/mm/dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24/01/11 Thu |
FORMAT_DATE('%g/%m/%e %a', CURRENT_DATE) -- Iy/mm/ d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24/01/11 Thu |
FORMAT_DATE('%Y/%B/%d %a', CURRENT_DATE) -- yyyy/month/dd dow abbrev The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024/January/11 Thu |
FORMAT_DATE('%Y/%B/%e %a', CURRENT_DATE) -- yyyy/month/ d dow abbrev The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024/January/11 Thu |
FORMAT_DATE('%Y/%b/%d %a', CURRENT_DATE) -- yyyy/mon/dd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024/Jan/11 Thu |
FORMAT_DATE('%Y/%b/%e %a', CURRENT_DATE) -- yyyy/mon/ d dow abbrev The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024/Jan/11 Thu |
FORMAT_DATE('%Y/%h/%d %a', CURRENT_DATE) -- yyyy/mon/dd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024/Jan/11 Thu |
FORMAT_DATE('%Y/%h/%e %a', CURRENT_DATE) -- yyyy/mon/-dd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024/Jan/11 Thu |
FORMAT_DATE('%E4Y/%B/%d %a', CURRENT_DATE) -- yyyy/month/dd dow abbrev Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024/January/11 Thu |
FORMAT_DATE('%E4Y/%B/%e %a', CURRENT_DATE) -- yyyy/month/ d dow abbrev Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024/January/11 Thu |
FORMAT_DATE('%E4Y/%b/%d %a', CURRENT_DATE) -- yyyy/mon/dd dow abbrev Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024/Jan/11 Thu |
FORMAT_DATE('%E4Y/%b/%e %a', CURRENT_DATE) -- yyyy/mon/ d dow abbrev Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024/Jan/11 Thu |
FORMAT_DATE('%E4Y/%h/%d %a', CURRENT_DATE) -- yyyy/mon/dd dow abbrev Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024/Jan/11 Thu |
FORMAT_DATE('%E4Y/%h/%e %a', CURRENT_DATE) -- yyyy/mon/ d dow abbrev Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024/Jan/11 Thu |
FORMAT_DATE('%y/%B/%d %a', CURRENT_DATE) -- yy/month/dd dow abbrev The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24/January/11 Thu |
FORMAT_DATE('%y/%B/%e %a', CURRENT_DATE) -- yy/month/ d dow abbrev The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24/January/11 Thu |
FORMAT_DATE('%y/%b/%d %a', CURRENT_DATE) -- yy/mon/dd dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24/Jan/11 Thu |
FORMAT_DATE('%y/%b/%e %a', CURRENT_DATE) -- yy/mon/ d dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24/Jan/11 Thu |
FORMAT_DATE('%y/%h/%d %a', CURRENT_DATE) -- yy/mon/dd dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24/Jan/11 Thu |
FORMAT_DATE('%y/%h/%e %a', CURRENT_DATE) -- yy/mon/ d dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24/Jan/11 Thu |
FORMAT_DATE('%G/%B/%d %a', CURRENT_DATE) -- Iy/month/dd dow abbrev The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024/January/11 Thu |
FORMAT_DATE('%G/%B/%e %a', CURRENT_DATE) -- Iy/month/ d dow abbrev The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024/January/11 Thu |
FORMAT_DATE('%G/%b/%d %a', CURRENT_DATE) -- Iy/mon/dd dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024/Jan/11 Thu |
FORMAT_DATE('%G/%b/%e %a', CURRENT_DATE) -- Iy/mon/ d dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024/Jan/11 Thu |
FORMAT_DATE('%G/%h/%d %a', CURRENT_DATE) -- Iy/mon/dd dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024/Jan/11 Thu |
FORMAT_DATE('%G/%h/%e %a', CURRENT_DATE) -- Iy/mon/ d dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024/Jan/11 Thu |
FORMAT_DATE('%g/%B/%d %a', CURRENT_DATE) -- Iyyy/month/dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24/January/11 Thu |
FORMAT_DATE('%g/%B/%e %a', CURRENT_DATE) -- Iyyy/month/ d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24/January/11 Thu |
FORMAT_DATE('%g/%b/%d %a', CURRENT_DATE) -- Iyyy/mon/dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24/Jan/11 Thu |
FORMAT_DATE('%g/%b/%e %a', CURRENT_DATE) -- Iyyy/mon/ d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24/Jan/11 Thu |
FORMAT_DATE('%g/%h/%d %a', CURRENT_DATE) -- Iyyy/mon/-dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24/Jan/11 Thu |
FORMAT_DATE('%g/%h/%e %a', CURRENT_DATE) -- Iyyy/mon/ d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24/Jan/11 Thu |
FORMAT_DATE('%Y:%m:%d %a', CURRENT_DATE) -- yyyy:mm:dd dow abbrev The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024:01:11 Thu |
FORMAT_DATE('%Y:%m:%e %a', CURRENT_DATE) -- yyyy:mm: d dow abbrev The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024:01:11 Thu |
FORMAT_DATE('%E4Y:%m:%d %a', CURRENT_DATE) -- yyyy:mm:-dd dow abbrev Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024:01:11 Thu |
FORMAT_DATE('%E4Y:%m:%e %a', CURRENT_DATE) -- yyyy:mm: d dow abbrev Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024:01:11 Thu |
FORMAT_DATE('%y:%m:%d %a', CURRENT_DATE) -- yy:mm:dd dow abbrev The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24:01:11 Thu |
FORMAT_DATE('%y:%m:%e %a', CURRENT_DATE) -- yy:mm: d dow abbrev The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24:01:11 Thu |
FORMAT_DATE('%G:%m:%d %a', CURRENT_DATE) -- Iyyy:mm:dd dow abbrev The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024:01:11 Thu |
FORMAT_DATE('%G:%m:%e %a', CURRENT_DATE) -- Iyyy:mm: d dow abbrev The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024:01:11 Thu |
FORMAT_DATE('%g:%m:%d %a', CURRENT_DATE) -- Iy:mm:dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24:01:11 Thu |
FORMAT_DATE('%g:%m:%e %a', CURRENT_DATE) -- Iy:mm: d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24:01:11 Thu |
FORMAT_DATE('%Y:%B:%d %a', CURRENT_DATE) -- yyyy:month:dd dow abbrev The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024:January:11 Thu |
FORMAT_DATE('%Y:%B:%e %a', CURRENT_DATE) -- yyyy:month: d dow abbrev The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024:January:11 Thu |
FORMAT_DATE('%Y:%b:%d %a', CURRENT_DATE) -- yyyy:mon:dd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024:Jan:11 Thu |
FORMAT_DATE('%Y:%b:%e %a', CURRENT_DATE) -- yyyy:mon: d dow abbrev The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024:Jan:11 Thu |
FORMAT_DATE('%Y:%h:%d %a', CURRENT_DATE) -- yyyy:mon:dd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024:Jan:11 Thu |
FORMAT_DATE('%Y:%h:%e %a', CURRENT_DATE) -- yyyy:mon:-dd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024:Jan:11 Thu |
FORMAT_DATE('%E4Y:%B:%d %a', CURRENT_DATE) -- yyyy:month:dd dow abbrev Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024:January:11 Thu |
FORMAT_DATE('%E4Y:%B:%e %a', CURRENT_DATE) -- yyyy:month: d dow abbrev Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024:January:11 Thu |
FORMAT_DATE('%E4Y:%b:%d %a', CURRENT_DATE) -- yyyy:mon:dd dow abbrev Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024:Jan:11 Thu |
FORMAT_DATE('%E4Y:%b:%e %a', CURRENT_DATE) -- yyyy:mon: d dow abbrev Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024:Jan:11 Thu |
FORMAT_DATE('%E4Y:%h:%d %a', CURRENT_DATE) -- yyyy:mon:dd dow abbrev Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024:Jan:11 Thu |
FORMAT_DATE('%E4Y:%h:%e %a', CURRENT_DATE) -- yyyy:mon: d dow abbrev Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024:Jan:11 Thu |
FORMAT_DATE('%y:%B:%d %a', CURRENT_DATE) -- yy:month:dd dow abbrev The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24:January:11 Thu |
FORMAT_DATE('%y:%B:%e %a', CURRENT_DATE) -- yy:month: d dow abbrev The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24:January:11 Thu |
FORMAT_DATE('%y:%b:%d %a', CURRENT_DATE) -- yy:mon:dd dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24:Jan:11 Thu |
FORMAT_DATE('%y:%b:%e %a', CURRENT_DATE) -- yy:mon: d dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24:Jan:11 Thu |
FORMAT_DATE('%y:%h:%d %a', CURRENT_DATE) -- yy:mon:dd dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24:Jan:11 Thu |
FORMAT_DATE('%y:%h:%e %a', CURRENT_DATE) -- yy:mon: d dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24:Jan:11 Thu |
FORMAT_DATE('%G:%B:%d %a', CURRENT_DATE) -- Iy:month:dd dow abbrev The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024:January:11 Thu |
FORMAT_DATE('%G:%B:%e %a', CURRENT_DATE) -- Iy:month: d dow abbrev The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024:January:11 Thu |
FORMAT_DATE('%G:%b:%d %a', CURRENT_DATE) -- Iy:mon:dd dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024:Jan:11 Thu |
FORMAT_DATE('%G:%b:%e %a', CURRENT_DATE) -- Iy:mon: d dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024:Jan:11 Thu |
FORMAT_DATE('%G:%h:%d %a', CURRENT_DATE) -- Iy:mon:dd dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024:Jan:11 Thu |
FORMAT_DATE('%G:%h:%e %a', CURRENT_DATE) -- Iy:mon: d dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024:Jan:11 Thu |
FORMAT_DATE('%g:%B:%d %a', CURRENT_DATE) -- Iyyy:month:dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24:January:11 Thu |
FORMAT_DATE('%g:%B:%e %a', CURRENT_DATE) -- Iyyy:month: d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24:January:11 Thu |
FORMAT_DATE('%g:%b:%d %a', CURRENT_DATE) -- Iyyy:mon:dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24:Jan:11 Thu |
FORMAT_DATE('%g:%b:%e %a', CURRENT_DATE) -- Iyyy:mon: d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24:Jan:11 Thu |
FORMAT_DATE('%g:%h:%d %a', CURRENT_DATE) -- Iyyy:mon:-dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24:Jan:11 Thu |
FORMAT_DATE('%g:%h:%e %a', CURRENT_DATE) -- Iyyy:mon: d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24:Jan:11 Thu |
FORMAT_DATE('%Y.%m.%d %a', CURRENT_DATE) -- yyyy.mm.dd dow abbrev The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024.01.11 Thu |
FORMAT_DATE('%Y.%m.%e %a', CURRENT_DATE) -- yyyy.mm. d dow abbrev The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024.01.11 Thu |
FORMAT_DATE('%E4Y.%m.%d %a', CURRENT_DATE) -- yyyy.mm.-dd dow abbrev Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024.01.11 Thu |
FORMAT_DATE('%E4Y.%m.%e %a', CURRENT_DATE) -- yyyy.mm. d dow abbrev Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024.01.11 Thu |
FORMAT_DATE('%y.%m.%d %a', CURRENT_DATE) -- yy.mm.dd dow abbrev The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24.01.11 Thu |
FORMAT_DATE('%y.%m.%e %a', CURRENT_DATE) -- yy.mm. d dow abbrev The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24.01.11 Thu |
FORMAT_DATE('%G.%m.%d %a', CURRENT_DATE) -- Iyyy.mm.dd dow abbrev The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024.01.11 Thu |
FORMAT_DATE('%G.%m.%e %a', CURRENT_DATE) -- Iyyy.mm. d dow abbrev The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024.01.11 Thu |
FORMAT_DATE('%g.%m.%d %a', CURRENT_DATE) -- Iy.mm.dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24.01.11 Thu |
FORMAT_DATE('%g.%m.%e %a', CURRENT_DATE) -- Iy.mm. d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24.01.11 Thu |
FORMAT_DATE('%Y.%B.%d %a', CURRENT_DATE) -- yyyy.month.dd dow abbrev The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024.January.11 Thu |
FORMAT_DATE('%Y.%B.%e %a', CURRENT_DATE) -- yyyy.month. d dow abbrev The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024.January.11 Thu |
FORMAT_DATE('%Y.%b.%d %a', CURRENT_DATE) -- yyyy.mon.dd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024.Jan.11 Thu |
FORMAT_DATE('%Y.%b.%e %a', CURRENT_DATE) -- yyyy.mon. d dow abbrev The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024.Jan.11 Thu |
FORMAT_DATE('%Y.%h.%d %a', CURRENT_DATE) -- yyyy.mon.dd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024.Jan.11 Thu |
FORMAT_DATE('%Y.%h.%e %a', CURRENT_DATE) -- yyyy.mon.-dd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024.Jan.11 Thu |
FORMAT_DATE('%E4Y.%B.%d %a', CURRENT_DATE) -- yyyy.month.dd dow abbrev Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024.January.11 Thu |
FORMAT_DATE('%E4Y.%B.%e %a', CURRENT_DATE) -- yyyy.month. d dow abbrev Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024.January.11 Thu |
FORMAT_DATE('%E4Y.%b.%d %a', CURRENT_DATE) -- yyyy.mon.dd dow abbrev Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024.Jan.11 Thu |
FORMAT_DATE('%E4Y.%b.%e %a', CURRENT_DATE) -- yyyy.mon. d dow abbrev Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024.Jan.11 Thu |
FORMAT_DATE('%E4Y.%h.%d %a', CURRENT_DATE) -- yyyy.mon.dd dow abbrev Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024.Jan.11 Thu |
FORMAT_DATE('%E4Y.%h.%e %a', CURRENT_DATE) -- yyyy.mon. d dow abbrev Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024.Jan.11 Thu |
FORMAT_DATE('%y.%B.%d %a', CURRENT_DATE) -- yy.month.dd dow abbrev The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24.January.11 Thu |
FORMAT_DATE('%y.%B.%e %a', CURRENT_DATE) -- yy.month. d dow abbrev The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24.January.11 Thu |
FORMAT_DATE('%y.%b.%d %a', CURRENT_DATE) -- yy.mon.dd dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24.Jan.11 Thu |
FORMAT_DATE('%y.%b.%e %a', CURRENT_DATE) -- yy.mon. d dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24.Jan.11 Thu |
FORMAT_DATE('%y.%h.%d %a', CURRENT_DATE) -- yy.mon.dd dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24.Jan.11 Thu |
FORMAT_DATE('%y.%h.%e %a', CURRENT_DATE) -- yy.mon. d dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24.Jan.11 Thu |
FORMAT_DATE('%G.%B.%d %a', CURRENT_DATE) -- Iy.month.dd dow abbrev The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024.January.11 Thu |
FORMAT_DATE('%G.%B.%e %a', CURRENT_DATE) -- Iy.month. d dow abbrev The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024.January.11 Thu |
FORMAT_DATE('%G.%b.%d %a', CURRENT_DATE) -- Iy.mon.dd dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024.Jan.11 Thu |
FORMAT_DATE('%G.%b.%e %a', CURRENT_DATE) -- Iy.mon. d dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024.Jan.11 Thu |
FORMAT_DATE('%G.%h.%d %a', CURRENT_DATE) -- Iy.mon.dd dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024.Jan.11 Thu |
FORMAT_DATE('%G.%h.%e %a', CURRENT_DATE) -- Iy.mon. d dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024.Jan.11 Thu |
FORMAT_DATE('%g.%B.%d %a', CURRENT_DATE) -- Iyyy.month.dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24.January.11 Thu |
FORMAT_DATE('%g.%B.%e %a', CURRENT_DATE) -- Iyyy.month. d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24.January.11 Thu |
FORMAT_DATE('%g.%b.%d %a', CURRENT_DATE) -- Iyyy.mon.dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24.Jan.11 Thu |
FORMAT_DATE('%g.%b.%e %a', CURRENT_DATE) -- Iyyy.mon. d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24.Jan.11 Thu |
FORMAT_DATE('%g.%h.%d %a', CURRENT_DATE) -- Iyyy.mon.-dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24.Jan.11 Thu |
FORMAT_DATE('%g.%h.%e %a', CURRENT_DATE) -- Iyyy.mon. d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24.Jan.11 Thu |
FORMAT_DATE('%Y %m %d %a', CURRENT_DATE) -- yyyy mm dd dow abbrev The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024 01 11 Thu |
FORMAT_DATE('%Y %m %e %a', CURRENT_DATE) -- yyyy mm d dow abbrev The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024 01 11 Thu |
FORMAT_DATE('%E4Y %m %d %a', CURRENT_DATE) -- yyyy mm dd dow abbrev Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024 01 11 Thu |
FORMAT_DATE('%E4Y %m %e %a', CURRENT_DATE) -- yyyy mm d dow abbrev Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024 01 11 Thu |
FORMAT_DATE('%y %m %d %a', CURRENT_DATE) -- yy mm dd dow abbrev The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24 01 11 Thu |
FORMAT_DATE('%y %m %e %a', CURRENT_DATE) -- yy mm d dow abbrev The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24 01 11 Thu |
FORMAT_DATE('%G %m %d %a', CURRENT_DATE) -- Iyyy mm dd dow abbrev The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024 01 11 Thu |
FORMAT_DATE('%G %m %e %a', CURRENT_DATE) -- Iyyy mm d dow abbrev The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024 01 11 Thu |
FORMAT_DATE('%g %m %d %a', CURRENT_DATE) -- Iy mm dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24 01 11 Thu |
FORMAT_DATE('%g %m %e %a', CURRENT_DATE) -- Iy mm d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24 01 11 Thu |
FORMAT_DATE('%Y %B %d %a', CURRENT_DATE) -- yyyy month dd dow abbrev The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024 January 11 Thu |
FORMAT_DATE('%Y %B %e %a', CURRENT_DATE) -- yyyy month d dow abbrev The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024 January 11 Thu |
FORMAT_DATE('%Y %b %d %a', CURRENT_DATE) -- yyyy mon dd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024 Jan 11 Thu |
FORMAT_DATE('%Y %b %e %a', CURRENT_DATE) -- yyyy mon d dow abbrev The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024 Jan 11 Thu |
FORMAT_DATE('%Y %h %d %a', CURRENT_DATE) -- yyyy mon dd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024 Jan 11 Thu |
FORMAT_DATE('%Y %h %e %a', CURRENT_DATE) -- yyyy mon -dd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024 Jan 11 Thu |
FORMAT_DATE('%E4Y %B %d %a', CURRENT_DATE) -- yyyy month dd dow abbrev Four-character years (0001 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024 January 11 Thu |
FORMAT_DATE('%E4Y %B %e %a', CURRENT_DATE) -- yyyy month d dow abbrev Four-character years (0001 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024 January 11 Thu |
FORMAT_DATE('%E4Y %b %d %a', CURRENT_DATE) -- yyyy mon dd dow abbrev Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024 Jan 11 Thu |
FORMAT_DATE('%E4Y %b %e %a', CURRENT_DATE) -- yyyy mon d dow abbrev Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024 Jan 11 Thu |
FORMAT_DATE('%E4Y %h %d %a', CURRENT_DATE) -- yyyy mon dd dow abbrev Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024 Jan 11 Thu |
FORMAT_DATE('%E4Y %h %e %a', CURRENT_DATE) -- yyyy mon d dow abbrev Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024 Jan 11 Thu |
FORMAT_DATE('%y %B %d %a', CURRENT_DATE) -- yy month dd dow abbrev The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24 January 11 Thu |
FORMAT_DATE('%y %B %e %a', CURRENT_DATE) -- yy month d dow abbrev The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24 January 11 Thu |
FORMAT_DATE('%y %b %d %a', CURRENT_DATE) -- yy mon dd dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24 Jan 11 Thu |
FORMAT_DATE('%y %b %e %a', CURRENT_DATE) -- yy mon d dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24 Jan 11 Thu |
FORMAT_DATE('%y %h %d %a', CURRENT_DATE) -- yy mon dd dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24 Jan 11 Thu |
FORMAT_DATE('%y %h %e %a', CURRENT_DATE) -- yy mon d dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24 Jan 11 Thu |
FORMAT_DATE('%G %B %d %a', CURRENT_DATE) -- Iy month dd dow abbrev The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024 January 11 Thu |
FORMAT_DATE('%G %B %e %a', CURRENT_DATE) -- Iy month d dow abbrev The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024 January 11 Thu |
FORMAT_DATE('%G %b %d %a', CURRENT_DATE) -- Iy mon dd dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024 Jan 11 Thu |
FORMAT_DATE('%G %b %e %a', CURRENT_DATE) -- Iy mon d dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024 Jan 11 Thu |
FORMAT_DATE('%G %h %d %a', CURRENT_DATE) -- Iy mon dd dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024 Jan 11 Thu |
FORMAT_DATE('%G %h %e %a', CURRENT_DATE) -- Iy mon d dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024 Jan 11 Thu |
FORMAT_DATE('%g %B %d %a', CURRENT_DATE) -- Iyyy month dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24 January 11 Thu |
FORMAT_DATE('%g %B %e %a', CURRENT_DATE) -- Iyyy month d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24 January 11 Thu |
FORMAT_DATE('%g %b %d %a', CURRENT_DATE) -- Iyyy mon dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24 Jan 11 Thu |
FORMAT_DATE('%g %b %e %a', CURRENT_DATE) -- Iyyy mon d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24 Jan 11 Thu |
FORMAT_DATE('%g %h %d %a', CURRENT_DATE) -- Iyyy mon dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24 Jan 11 Thu |
FORMAT_DATE('%g %h %e %a', CURRENT_DATE) -- Iyyy mon d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24 Jan 11 Thu |
FORMAT_DATE('%Y%m%d %a', CURRENT_DATE) -- yyyymmdd dow abbrev The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 20240111 Thu |
FORMAT_DATE('%Y%m%e %a', CURRENT_DATE) -- yyyymm d dow abbrev The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 20240111 Thu |
FORMAT_DATE('%E4Y%m%d %a', CURRENT_DATE) -- yyyymmdd dow abbrev Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 20240111 Thu |
FORMAT_DATE('%E4Y%m%e %a', CURRENT_DATE) -- yyyymm d dow abbrev Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 20240111 Thu |
FORMAT_DATE('%y%m%d %a', CURRENT_DATE) -- yymmdd dow abbrev The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 240111 Thu |
FORMAT_DATE('%y%m%e %a', CURRENT_DATE) -- yymm d dow abbrev The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 240111 Thu |
FORMAT_DATE('%G%m%d %a', CURRENT_DATE) -- Iyyymmdd dow abbrev The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 20240111 Thu |
FORMAT_DATE('%G%m%e %a', CURRENT_DATE) -- Iyyymm d dow abbrev The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 20240111 Thu |
FORMAT_DATE('%g%m%d %a', CURRENT_DATE) -- Iymmdd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 240111 Thu |
FORMAT_DATE('%g%m%e %a', CURRENT_DATE) -- Iymm d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 240111 Thu |
FORMAT_DATE('%Y%B%d %a', CURRENT_DATE) -- yyyymonthdd dow abbrev The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024January11 Thu |
FORMAT_DATE('%Y%B%e %a', CURRENT_DATE) -- yyyymonth d dow abbrev The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024January11 Thu |
FORMAT_DATE('%Y%b%d %a', CURRENT_DATE) -- yyyymondd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024Jan11 Thu |
FORMAT_DATE('%Y%b%e %a', CURRENT_DATE) -- yyyymon d dow abbrev The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024Jan11 Thu |
FORMAT_DATE('%Y%h%d %a', CURRENT_DATE) -- yyyymondd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024Jan11 Thu |
FORMAT_DATE('%Y%h%e %a', CURRENT_DATE) -- yyyymon-dd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024Jan11 Thu |
FORMAT_DATE('%E4Y%B%d %a', CURRENT_DATE) -- yyyymonthdd dow abbrev Four-character years (0001 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024January11 Thu |
FORMAT_DATE('%E4Y%B%e %a', CURRENT_DATE) -- yyyymonth d dow abbrev Four-character years (0001 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024January11 Thu |
FORMAT_DATE('%E4Y%b%d %a', CURRENT_DATE) -- yyyymondd dow abbrev Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024Jan11 Thu |
FORMAT_DATE('%E4Y%b%e %a', CURRENT_DATE) -- yyyymon d dow abbrev Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024Jan11 Thu |
FORMAT_DATE('%E4Y%h%d %a', CURRENT_DATE) -- yyyymondd dow abbrev Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024Jan11 Thu |
FORMAT_DATE('%E4Y%h%e %a', CURRENT_DATE) -- yyyymon d dow abbrev Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024Jan11 Thu |
FORMAT_DATE('%y%B%d %a', CURRENT_DATE) -- yymonthdd dow abbrev The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24January11 Thu |
FORMAT_DATE('%y%B%e %a', CURRENT_DATE) -- yymonth d dow abbrev The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24January11 Thu |
FORMAT_DATE('%y%b%d %a', CURRENT_DATE) -- yymondd dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24Jan11 Thu |
FORMAT_DATE('%y%b%e %a', CURRENT_DATE) -- yymon d dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24Jan11 Thu |
FORMAT_DATE('%y%h%d %a', CURRENT_DATE) -- yymondd dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24Jan11 Thu |
FORMAT_DATE('%y%h%e %a', CURRENT_DATE) -- yymon d dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24Jan11 Thu |
FORMAT_DATE('%G%B%d %a', CURRENT_DATE) -- Iymonthdd dow abbrev The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024January11 Thu |
FORMAT_DATE('%G%B%e %a', CURRENT_DATE) -- Iymonth d dow abbrev The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024January11 Thu |
FORMAT_DATE('%G%b%d %a', CURRENT_DATE) -- Iymondd dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024Jan11 Thu |
FORMAT_DATE('%G%b%e %a', CURRENT_DATE) -- Iymon d dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024Jan11 Thu |
FORMAT_DATE('%G%h%d %a', CURRENT_DATE) -- Iymondd dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024Jan11 Thu |
FORMAT_DATE('%G%h%e %a', CURRENT_DATE) -- Iymon d dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024Jan11 Thu |
FORMAT_DATE('%g%B%d %a', CURRENT_DATE) -- Iyyymonthdd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24January11 Thu |
FORMAT_DATE('%g%B%e %a', CURRENT_DATE) -- Iyyymonth d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24January11 Thu |
FORMAT_DATE('%g%b%d %a', CURRENT_DATE) -- Iyyymondd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24Jan11 Thu |
FORMAT_DATE('%g%b%e %a', CURRENT_DATE) -- Iyyymon d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24Jan11 Thu |
FORMAT_DATE('%g%h%d %a', CURRENT_DATE) -- Iyyymon-dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24Jan11 Thu |
FORMAT_DATE('%g%h%e %a', CURRENT_DATE) -- Iyyymon d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24Jan11 Thu |
FORMAT_DATE('%Y-%m-%d Quarter %Q', CURRENT_DATE) -- yyyy-mm-dd qtr The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024-01-11 Quarter 1 |
FORMAT_DATE('%Y-%m-%e Quarter %Q', CURRENT_DATE) -- yyyy-mm- d qtr The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024-01-11 Quarter 1 |
FORMAT_DATE('%E4Y-%m-%d Quarter %Q', CURRENT_DATE) -- yyyy-mm-dd qtr Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024-01-11 Quarter 1 |
FORMAT_DATE('%E4Y-%m-%e Quarter %Q', CURRENT_DATE) -- yyyy-mm- d qtr Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024-01-11 Quarter 1 |
FORMAT_DATE('%y-%m-%d Quarter %Q', CURRENT_DATE) -- yy-mm-dd qtr The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 24-01-11 Quarter 1 |
FORMAT_DATE('%y-%m-%e Quarter %Q', CURRENT_DATE) -- yy-mm- d qtr The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24-01-11 Quarter 1 |
FORMAT_DATE('%G-%m-%d Quarter %Q', CURRENT_DATE) -- Iyyy-mm-dd qtr The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024-01-11 Quarter 1 |
FORMAT_DATE('%G-%m-%e Quarter %Q', CURRENT_DATE) -- Iyyy-mm- d qtr The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024-01-11 Quarter 1 |
FORMAT_DATE('%g-%m-%d Quarter %Q', CURRENT_DATE) -- Iy-mm-dd qtr The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 24-01-11 Quarter 1 |
FORMAT_DATE('%g-%m-%e Quarter %Q', CURRENT_DATE) -- Iy-mm- d qtr The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24-01-11 Quarter 1 |
FORMAT_DATE('%Y-%B-%d Quarter %Q', CURRENT_DATE) -- yyyy-month-dd qtr The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024-January-11 Quarter 1 |
FORMAT_DATE('%Y-%B-%e Quarter %Q', CURRENT_DATE) -- yyyy-month- d qtr The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024-January-11 Quarter 1 |
FORMAT_DATE('%Y-%b-%d Quarter %Q', CURRENT_DATE) -- yyyy-mon-dd qtr The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024-Jan-11 Quarter 1 |
FORMAT_DATE('%Y-%b-%e Quarter %Q', CURRENT_DATE) -- yyyy-mon- d qtr The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024-Jan-11 Quarter 1 |
FORMAT_DATE('%Y-%h-%d Quarter %Q', CURRENT_DATE) -- yyyy-mon-dd qtr The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024-Jan-11 Quarter 1 |
FORMAT_DATE('%Y-%h-%e Quarter %Q', CURRENT_DATE) -- yyyy-mon-dd qtr The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024-Jan-11 Quarter 1 |
FORMAT_DATE('%E4Y-%B-%d Quarter %Q', CURRENT_DATE) -- yyyy-month-dd qtr Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024-January-11 Quarter 1 |
FORMAT_DATE('%E4Y-%B-%e Quarter %Q', CURRENT_DATE) -- yyyy-month- d qtr Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024-January-11 Quarter 1 |
FORMAT_DATE('%E4Y-%b-%d Quarter %Q', CURRENT_DATE) -- yyyy-mon-dd qtr Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024-Jan-11 Quarter 1 |
FORMAT_DATE('%E4Y-%b-%e Quarter %Q', CURRENT_DATE) -- yyyy-mon- d qtr Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024-Jan-11 Quarter 1 |
FORMAT_DATE('%E4Y-%h-%d Quarter %Q', CURRENT_DATE) -- yyyy-mon-dd qtr Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024-Jan-11 Quarter 1 |
FORMAT_DATE('%E4Y-%h-%e Quarter %Q', CURRENT_DATE) -- yyyy-mon- d qtr Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024-Jan-11 Quarter 1 |
FORMAT_DATE('%y-%B-%d Quarter %Q', CURRENT_DATE) -- yy-month-dd qtr The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24-January-11 Quarter 1 |
FORMAT_DATE('%y-%B-%e Quarter %Q', CURRENT_DATE) -- yy-month- d qtr The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24-January-11 Quarter 1 |
FORMAT_DATE('%y-%b-%d Quarter %Q', CURRENT_DATE) -- yy-mon-dd qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24-Jan-11 Quarter 1 |
FORMAT_DATE('%y-%b-%e Quarter %Q', CURRENT_DATE) -- yy-mon- d qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24-Jan-11 Quarter 1 |
FORMAT_DATE('%y-%h-%d Quarter %Q', CURRENT_DATE) -- yy-mon-dd qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24-Jan-11 Quarter 1 |
FORMAT_DATE('%y-%h-%e Quarter %Q', CURRENT_DATE) -- yy-mon- d qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24-Jan-11 Quarter 1 |
FORMAT_DATE('%G-%B-%d Quarter %Q', CURRENT_DATE) -- Iy-month-dd qtr The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024-January-11 Quarter 1 |
FORMAT_DATE('%G-%B-%e Quarter %Q', CURRENT_DATE) -- Iy-month- d qtr The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024-January-11 Quarter 1 |
FORMAT_DATE('%G-%b-%d Quarter %Q', CURRENT_DATE) -- Iy-mon-dd qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024-Jan-11 Quarter 1 |
FORMAT_DATE('%G-%b-%e Quarter %Q', CURRENT_DATE) -- Iy-mon- d qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024-Jan-11 Quarter 1 |
FORMAT_DATE('%G-%h-%d Quarter %Q', CURRENT_DATE) -- Iy-mon-dd qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024-Jan-11 Quarter 1 |
FORMAT_DATE('%G-%h-%e Quarter %Q', CURRENT_DATE) -- Iy-mon- d qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024-Jan-11 Quarter 1 |
FORMAT_DATE('%g-%B-%d Quarter %Q', CURRENT_DATE) -- Iyyy-month-dd qtr The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24-January-11 Quarter 1 |
FORMAT_DATE('%g-%B-%e Quarter %Q', CURRENT_DATE) -- Iyyy-month- d qtr The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24-January-11 Quarter 1 |
FORMAT_DATE('%g-%b-%d Quarter %Q', CURRENT_DATE) -- Iyyy-mon-dd qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24-Jan-11 Quarter 1 |
FORMAT_DATE('%g-%b-%e Quarter %Q', CURRENT_DATE) -- Iyyy-mon- d qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24-Jan-11 Quarter 1 |
FORMAT_DATE('%g-%h-%d Quarter %Q', CURRENT_DATE) -- Iyyy-mon-dd qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24-Jan-11 Quarter 1 |
FORMAT_DATE('%g-%h-%e Quarter %Q', CURRENT_DATE) -- Iyyy-mon- d qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24-Jan-11 Quarter 1 |
FORMAT_DATE('%Y/%m/%d Quarter %Q', CURRENT_DATE) -- yyyy/mm/dd qtr The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024/01/11 Quarter 1 |
FORMAT_DATE('%Y/%m/%e Quarter %Q', CURRENT_DATE) -- yyyy/mm/ d qtr The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024/01/11 Quarter 1 |
FORMAT_DATE('%E4Y/%m/%d Quarter %Q', CURRENT_DATE) -- yyyy/mm/-dd qtr Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024/01/11 Quarter 1 |
FORMAT_DATE('%E4Y/%m/%e Quarter %Q', CURRENT_DATE) -- yyyy/mm/ d qtr Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024/01/11 Quarter 1 |
FORMAT_DATE('%y/%m/%d Quarter %Q', CURRENT_DATE) -- yy/mm/dd qtr The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 24/01/11 Quarter 1 |
FORMAT_DATE('%y/%m/%e Quarter %Q', CURRENT_DATE) -- yy/mm/ d qtr The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24/01/11 Quarter 1 |
FORMAT_DATE('%G/%m/%d Quarter %Q', CURRENT_DATE) -- Iyyy/mm/dd qtr The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024/01/11 Quarter 1 |
FORMAT_DATE('%G/%m/%e Quarter %Q', CURRENT_DATE) -- Iyyy/mm/ d qtr The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024/01/11 Quarter 1 |
FORMAT_DATE('%g/%m/%d Quarter %Q', CURRENT_DATE) -- Iy/mm/dd qtr The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 24/01/11 Quarter 1 |
FORMAT_DATE('%g/%m/%e Quarter %Q', CURRENT_DATE) -- Iy/mm/ d qtr The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24/01/11 Quarter 1 |
FORMAT_DATE('%Y/%B/%d Quarter %Q', CURRENT_DATE) -- yyyy/month/dd qtr The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024/January/11 Quarter 1 |
FORMAT_DATE('%Y/%B/%e Quarter %Q', CURRENT_DATE) -- yyyy/month/ d qtr The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024/January/11 Quarter 1 |
FORMAT_DATE('%Y/%b/%d Quarter %Q', CURRENT_DATE) -- yyyy/mon/dd qtr The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024/Jan/11 Quarter 1 |
FORMAT_DATE('%Y/%b/%e Quarter %Q', CURRENT_DATE) -- yyyy/mon/ d qtr The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024/Jan/11 Quarter 1 |
FORMAT_DATE('%Y/%h/%d Quarter %Q', CURRENT_DATE) -- yyyy/mon/dd qtr The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024/Jan/11 Quarter 1 |
FORMAT_DATE('%Y/%h/%e Quarter %Q', CURRENT_DATE) -- yyyy/mon/-dd qtr The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024/Jan/11 Quarter 1 |
FORMAT_DATE('%E4Y/%B/%d Quarter %Q', CURRENT_DATE) -- yyyy/month/dd qtr Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024/January/11 Quarter 1 |
FORMAT_DATE('%E4Y/%B/%e Quarter %Q', CURRENT_DATE) -- yyyy/month/ d qtr Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024/January/11 Quarter 1 |
FORMAT_DATE('%E4Y/%b/%d Quarter %Q', CURRENT_DATE) -- yyyy/mon/dd qtr Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024/Jan/11 Quarter 1 |
FORMAT_DATE('%E4Y/%b/%e Quarter %Q', CURRENT_DATE) -- yyyy/mon/ d qtr Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024/Jan/11 Quarter 1 |
FORMAT_DATE('%E4Y/%h/%d Quarter %Q', CURRENT_DATE) -- yyyy/mon/dd qtr Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024/Jan/11 Quarter 1 |
FORMAT_DATE('%E4Y/%h/%e Quarter %Q', CURRENT_DATE) -- yyyy/mon/ d qtr Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024/Jan/11 Quarter 1 |
FORMAT_DATE('%y/%B/%d Quarter %Q', CURRENT_DATE) -- yy/month/dd qtr The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24/January/11 Quarter 1 |
FORMAT_DATE('%y/%B/%e Quarter %Q', CURRENT_DATE) -- yy/month/ d qtr The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24/January/11 Quarter 1 |
FORMAT_DATE('%y/%b/%d Quarter %Q', CURRENT_DATE) -- yy/mon/dd qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24/Jan/11 Quarter 1 |
FORMAT_DATE('%y/%b/%e Quarter %Q', CURRENT_DATE) -- yy/mon/ d qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24/Jan/11 Quarter 1 |
FORMAT_DATE('%y/%h/%d Quarter %Q', CURRENT_DATE) -- yy/mon/dd qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24/Jan/11 Quarter 1 |
FORMAT_DATE('%y/%h/%e Quarter %Q', CURRENT_DATE) -- yy/mon/ d qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24/Jan/11 Quarter 1 |
FORMAT_DATE('%G/%B/%d Quarter %Q', CURRENT_DATE) -- Iy/month/dd qtr The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024/January/11 Quarter 1 |
FORMAT_DATE('%G/%B/%e Quarter %Q', CURRENT_DATE) -- Iy/month/ d qtr The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024/January/11 Quarter 1 |
FORMAT_DATE('%G/%b/%d Quarter %Q', CURRENT_DATE) -- Iy/mon/dd qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024/Jan/11 Quarter 1 |
FORMAT_DATE('%G/%b/%e Quarter %Q', CURRENT_DATE) -- Iy/mon/ d qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024/Jan/11 Quarter 1 |
FORMAT_DATE('%G/%h/%d Quarter %Q', CURRENT_DATE) -- Iy/mon/dd qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024/Jan/11 Quarter 1 |
FORMAT_DATE('%G/%h/%e Quarter %Q', CURRENT_DATE) -- Iy/mon/ d qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024/Jan/11 Quarter 1 |
FORMAT_DATE('%g/%B/%d Quarter %Q', CURRENT_DATE) -- Iyyy/month/dd qtr The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24/January/11 Quarter 1 |
FORMAT_DATE('%g/%B/%e Quarter %Q', CURRENT_DATE) -- Iyyy/month/ d qtr The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24/January/11 Quarter 1 |
FORMAT_DATE('%g/%b/%d Quarter %Q', CURRENT_DATE) -- Iyyy/mon/dd qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24/Jan/11 Quarter 1 |
FORMAT_DATE('%g/%b/%e Quarter %Q', CURRENT_DATE) -- Iyyy/mon/ d qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24/Jan/11 Quarter 1 |
FORMAT_DATE('%g/%h/%d Quarter %Q', CURRENT_DATE) -- Iyyy/mon/-dd qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24/Jan/11 Quarter 1 |
FORMAT_DATE('%g/%h/%e Quarter %Q', CURRENT_DATE) -- Iyyy/mon/ d qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24/Jan/11 Quarter 1 |
FORMAT_DATE('%Y:%m:%d Quarter %Q', CURRENT_DATE) -- yyyy:mm:dd qtr The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024:01:11 Quarter 1 |
FORMAT_DATE('%Y:%m:%e Quarter %Q', CURRENT_DATE) -- yyyy:mm: d qtr The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024:01:11 Quarter 1 |
FORMAT_DATE('%E4Y:%m:%d Quarter %Q', CURRENT_DATE) -- yyyy:mm:-dd qtr Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024:01:11 Quarter 1 |
FORMAT_DATE('%E4Y:%m:%e Quarter %Q', CURRENT_DATE) -- yyyy:mm: d qtr Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024:01:11 Quarter 1 |
FORMAT_DATE('%y:%m:%d Quarter %Q', CURRENT_DATE) -- yy:mm:dd qtr The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 24:01:11 Quarter 1 |
FORMAT_DATE('%y:%m:%e Quarter %Q', CURRENT_DATE) -- yy:mm: d qtr The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24:01:11 Quarter 1 |
FORMAT_DATE('%G:%m:%d Quarter %Q', CURRENT_DATE) -- Iyyy:mm:dd qtr The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024:01:11 Quarter 1 |
FORMAT_DATE('%G:%m:%e Quarter %Q', CURRENT_DATE) -- Iyyy:mm: d qtr The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024:01:11 Quarter 1 |
FORMAT_DATE('%g:%m:%d Quarter %Q', CURRENT_DATE) -- Iy:mm:dd qtr The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 24:01:11 Quarter 1 |
FORMAT_DATE('%g:%m:%e Quarter %Q', CURRENT_DATE) -- Iy:mm: d qtr The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24:01:11 Quarter 1 |
FORMAT_DATE('%Y:%B:%d Quarter %Q', CURRENT_DATE) -- yyyy:month:dd qtr The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024:January:11 Quarter 1 |
FORMAT_DATE('%Y:%B:%e Quarter %Q', CURRENT_DATE) -- yyyy:month: d qtr The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024:January:11 Quarter 1 |
FORMAT_DATE('%Y:%b:%d Quarter %Q', CURRENT_DATE) -- yyyy:mon:dd qtr The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024:Jan:11 Quarter 1 |
FORMAT_DATE('%Y:%b:%e Quarter %Q', CURRENT_DATE) -- yyyy:mon: d qtr The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024:Jan:11 Quarter 1 |
FORMAT_DATE('%Y:%h:%d Quarter %Q', CURRENT_DATE) -- yyyy:mon:dd qtr The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024:Jan:11 Quarter 1 |
FORMAT_DATE('%Y:%h:%e Quarter %Q', CURRENT_DATE) -- yyyy:mon:-dd qtr The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024:Jan:11 Quarter 1 |
FORMAT_DATE('%E4Y:%B:%d Quarter %Q', CURRENT_DATE) -- yyyy:month:dd qtr Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024:January:11 Quarter 1 |
FORMAT_DATE('%E4Y:%B:%e Quarter %Q', CURRENT_DATE) -- yyyy:month: d qtr Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024:January:11 Quarter 1 |
FORMAT_DATE('%E4Y:%b:%d Quarter %Q', CURRENT_DATE) -- yyyy:mon:dd qtr Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024:Jan:11 Quarter 1 |
FORMAT_DATE('%E4Y:%b:%e Quarter %Q', CURRENT_DATE) -- yyyy:mon: d qtr Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024:Jan:11 Quarter 1 |
FORMAT_DATE('%E4Y:%h:%d Quarter %Q', CURRENT_DATE) -- yyyy:mon:dd qtr Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024:Jan:11 Quarter 1 |
FORMAT_DATE('%E4Y:%h:%e Quarter %Q', CURRENT_DATE) -- yyyy:mon: d qtr Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024:Jan:11 Quarter 1 |
FORMAT_DATE('%y:%B:%d Quarter %Q', CURRENT_DATE) -- yy:month:dd qtr The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24:January:11 Quarter 1 |
FORMAT_DATE('%y:%B:%e Quarter %Q', CURRENT_DATE) -- yy:month: d qtr The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24:January:11 Quarter 1 |
FORMAT_DATE('%y:%b:%d Quarter %Q', CURRENT_DATE) -- yy:mon:dd qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24:Jan:11 Quarter 1 |
FORMAT_DATE('%y:%b:%e Quarter %Q', CURRENT_DATE) -- yy:mon: d qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24:Jan:11 Quarter 1 |
FORMAT_DATE('%y:%h:%d Quarter %Q', CURRENT_DATE) -- yy:mon:dd qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24:Jan:11 Quarter 1 |
FORMAT_DATE('%y:%h:%e Quarter %Q', CURRENT_DATE) -- yy:mon: d qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24:Jan:11 Quarter 1 |
FORMAT_DATE('%G:%B:%d Quarter %Q', CURRENT_DATE) -- Iy:month:dd qtr The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024:January:11 Quarter 1 |
FORMAT_DATE('%G:%B:%e Quarter %Q', CURRENT_DATE) -- Iy:month: d qtr The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024:January:11 Quarter 1 |
FORMAT_DATE('%G:%b:%d Quarter %Q', CURRENT_DATE) -- Iy:mon:dd qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024:Jan:11 Quarter 1 |
FORMAT_DATE('%G:%b:%e Quarter %Q', CURRENT_DATE) -- Iy:mon: d qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024:Jan:11 Quarter 1 |
FORMAT_DATE('%G:%h:%d Quarter %Q', CURRENT_DATE) -- Iy:mon:dd qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024:Jan:11 Quarter 1 |
FORMAT_DATE('%G:%h:%e Quarter %Q', CURRENT_DATE) -- Iy:mon: d qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024:Jan:11 Quarter 1 |
FORMAT_DATE('%g:%B:%d Quarter %Q', CURRENT_DATE) -- Iyyy:month:dd qtr The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24:January:11 Quarter 1 |
FORMAT_DATE('%g:%B:%e Quarter %Q', CURRENT_DATE) -- Iyyy:month: d qtr The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24:January:11 Quarter 1 |
FORMAT_DATE('%g:%b:%d Quarter %Q', CURRENT_DATE) -- Iyyy:mon:dd qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24:Jan:11 Quarter 1 |
FORMAT_DATE('%g:%b:%e Quarter %Q', CURRENT_DATE) -- Iyyy:mon: d qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24:Jan:11 Quarter 1 |
FORMAT_DATE('%g:%h:%d Quarter %Q', CURRENT_DATE) -- Iyyy:mon:-dd qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24:Jan:11 Quarter 1 |
FORMAT_DATE('%g:%h:%e Quarter %Q', CURRENT_DATE) -- Iyyy:mon: d qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24:Jan:11 Quarter 1 |
FORMAT_DATE('%Y.%m.%d Quarter %Q', CURRENT_DATE) -- yyyy.mm.dd qtr The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024.01.11 Quarter 1 |
FORMAT_DATE('%Y.%m.%e Quarter %Q', CURRENT_DATE) -- yyyy.mm. d qtr The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024.01.11 Quarter 1 |
FORMAT_DATE('%E4Y.%m.%d Quarter %Q', CURRENT_DATE) -- yyyy.mm.-dd qtr Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024.01.11 Quarter 1 |
FORMAT_DATE('%E4Y.%m.%e Quarter %Q', CURRENT_DATE) -- yyyy.mm. d qtr Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024.01.11 Quarter 1 |
FORMAT_DATE('%y.%m.%d Quarter %Q', CURRENT_DATE) -- yy.mm.dd qtr The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 24.01.11 Quarter 1 |
FORMAT_DATE('%y.%m.%e Quarter %Q', CURRENT_DATE) -- yy.mm. d qtr The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24.01.11 Quarter 1 |
FORMAT_DATE('%G.%m.%d Quarter %Q', CURRENT_DATE) -- Iyyy.mm.dd qtr The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024.01.11 Quarter 1 |
FORMAT_DATE('%G.%m.%e Quarter %Q', CURRENT_DATE) -- Iyyy.mm. d qtr The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024.01.11 Quarter 1 |
FORMAT_DATE('%g.%m.%d Quarter %Q', CURRENT_DATE) -- Iy.mm.dd qtr The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 24.01.11 Quarter 1 |
FORMAT_DATE('%g.%m.%e Quarter %Q', CURRENT_DATE) -- Iy.mm. d qtr The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24.01.11 Quarter 1 |
FORMAT_DATE('%Y.%B.%d Quarter %Q', CURRENT_DATE) -- yyyy.month.dd qtr The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024.January.11 Quarter 1 |
FORMAT_DATE('%Y.%B.%e Quarter %Q', CURRENT_DATE) -- yyyy.month. d qtr The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024.January.11 Quarter 1 |
FORMAT_DATE('%Y.%b.%d Quarter %Q', CURRENT_DATE) -- yyyy.mon.dd qtr The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024.Jan.11 Quarter 1 |
FORMAT_DATE('%Y.%b.%e Quarter %Q', CURRENT_DATE) -- yyyy.mon. d qtr The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024.Jan.11 Quarter 1 |
FORMAT_DATE('%Y.%h.%d Quarter %Q', CURRENT_DATE) -- yyyy.mon.dd qtr The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024.Jan.11 Quarter 1 |
FORMAT_DATE('%Y.%h.%e Quarter %Q', CURRENT_DATE) -- yyyy.mon.-dd qtr The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024.Jan.11 Quarter 1 |
FORMAT_DATE('%E4Y.%B.%d Quarter %Q', CURRENT_DATE) -- yyyy.month.dd qtr Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024.January.11 Quarter 1 |
FORMAT_DATE('%E4Y.%B.%e Quarter %Q', CURRENT_DATE) -- yyyy.month. d qtr Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024.January.11 Quarter 1 |
FORMAT_DATE('%E4Y.%b.%d Quarter %Q', CURRENT_DATE) -- yyyy.mon.dd qtr Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024.Jan.11 Quarter 1 |
FORMAT_DATE('%E4Y.%b.%e Quarter %Q', CURRENT_DATE) -- yyyy.mon. d qtr Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024.Jan.11 Quarter 1 |
FORMAT_DATE('%E4Y.%h.%d Quarter %Q', CURRENT_DATE) -- yyyy.mon.dd qtr Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024.Jan.11 Quarter 1 |
FORMAT_DATE('%E4Y.%h.%e Quarter %Q', CURRENT_DATE) -- yyyy.mon. d qtr Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024.Jan.11 Quarter 1 |
FORMAT_DATE('%y.%B.%d Quarter %Q', CURRENT_DATE) -- yy.month.dd qtr The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24.January.11 Quarter 1 |
FORMAT_DATE('%y.%B.%e Quarter %Q', CURRENT_DATE) -- yy.month. d qtr The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24.January.11 Quarter 1 |
FORMAT_DATE('%y.%b.%d Quarter %Q', CURRENT_DATE) -- yy.mon.dd qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24.Jan.11 Quarter 1 |
FORMAT_DATE('%y.%b.%e Quarter %Q', CURRENT_DATE) -- yy.mon. d qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24.Jan.11 Quarter 1 |
FORMAT_DATE('%y.%h.%d Quarter %Q', CURRENT_DATE) -- yy.mon.dd qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24.Jan.11 Quarter 1 |
FORMAT_DATE('%y.%h.%e Quarter %Q', CURRENT_DATE) -- yy.mon. d qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24.Jan.11 Quarter 1 |
FORMAT_DATE('%G.%B.%d Quarter %Q', CURRENT_DATE) -- Iy.month.dd qtr The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024.January.11 Quarter 1 |
FORMAT_DATE('%G.%B.%e Quarter %Q', CURRENT_DATE) -- Iy.month. d qtr The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024.January.11 Quarter 1 |
FORMAT_DATE('%G.%b.%d Quarter %Q', CURRENT_DATE) -- Iy.mon.dd qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024.Jan.11 Quarter 1 |
FORMAT_DATE('%G.%b.%e Quarter %Q', CURRENT_DATE) -- Iy.mon. d qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024.Jan.11 Quarter 1 |
FORMAT_DATE('%G.%h.%d Quarter %Q', CURRENT_DATE) -- Iy.mon.dd qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024.Jan.11 Quarter 1 |
FORMAT_DATE('%G.%h.%e Quarter %Q', CURRENT_DATE) -- Iy.mon. d qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024.Jan.11 Quarter 1 |
FORMAT_DATE('%g.%B.%d Quarter %Q', CURRENT_DATE) -- Iyyy.month.dd qtr The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24.January.11 Quarter 1 |
FORMAT_DATE('%g.%B.%e Quarter %Q', CURRENT_DATE) -- Iyyy.month. d qtr The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24.January.11 Quarter 1 |
FORMAT_DATE('%g.%b.%d Quarter %Q', CURRENT_DATE) -- Iyyy.mon.dd qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24.Jan.11 Quarter 1 |
FORMAT_DATE('%g.%b.%e Quarter %Q', CURRENT_DATE) -- Iyyy.mon. d qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24.Jan.11 Quarter 1 |
FORMAT_DATE('%g.%h.%d Quarter %Q', CURRENT_DATE) -- Iyyy.mon.-dd qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24.Jan.11 Quarter 1 |
FORMAT_DATE('%g.%h.%e Quarter %Q', CURRENT_DATE) -- Iyyy.mon. d qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24.Jan.11 Quarter 1 |
FORMAT_DATE('%Y %m %d Quarter %Q', CURRENT_DATE) -- yyyy mm dd qtr The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024 01 11 Quarter 1 |
FORMAT_DATE('%Y %m %e Quarter %Q', CURRENT_DATE) -- yyyy mm d qtr The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024 01 11 Quarter 1 |
FORMAT_DATE('%E4Y %m %d Quarter %Q', CURRENT_DATE) -- yyyy mm dd qtr Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024 01 11 Quarter 1 |
FORMAT_DATE('%E4Y %m %e Quarter %Q', CURRENT_DATE) -- yyyy mm d qtr Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024 01 11 Quarter 1 |
FORMAT_DATE('%y %m %d Quarter %Q', CURRENT_DATE) -- yy mm dd qtr The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 24 01 11 Quarter 1 |
FORMAT_DATE('%y %m %e Quarter %Q', CURRENT_DATE) -- yy mm d qtr The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24 01 11 Quarter 1 |
FORMAT_DATE('%G %m %d Quarter %Q', CURRENT_DATE) -- Iyyy mm dd qtr The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024 01 11 Quarter 1 |
FORMAT_DATE('%G %m %e Quarter %Q', CURRENT_DATE) -- Iyyy mm d qtr The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024 01 11 Quarter 1 |
FORMAT_DATE('%g %m %d Quarter %Q', CURRENT_DATE) -- Iy mm dd qtr The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 24 01 11 Quarter 1 |
FORMAT_DATE('%g %m %e Quarter %Q', CURRENT_DATE) -- Iy mm d qtr The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24 01 11 Quarter 1 |
FORMAT_DATE('%Y %B %d Quarter %Q', CURRENT_DATE) -- yyyy month dd qtr The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024 January 11 Quarter 1 |
FORMAT_DATE('%Y %B %e Quarter %Q', CURRENT_DATE) -- yyyy month d qtr The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024 January 11 Quarter 1 |
FORMAT_DATE('%Y %b %d Quarter %Q', CURRENT_DATE) -- yyyy mon dd qtr The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024 Jan 11 Quarter 1 |
FORMAT_DATE('%Y %b %e Quarter %Q', CURRENT_DATE) -- yyyy mon d qtr The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024 Jan 11 Quarter 1 |
FORMAT_DATE('%Y %h %d Quarter %Q', CURRENT_DATE) -- yyyy mon dd qtr The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024 Jan 11 Quarter 1 |
FORMAT_DATE('%Y %h %e Quarter %Q', CURRENT_DATE) -- yyyy mon -dd qtr The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024 Jan 11 Quarter 1 |
FORMAT_DATE('%E4Y %B %d Quarter %Q', CURRENT_DATE) -- yyyy month dd qtr Four-character years (0001 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024 January 11 Quarter 1 |
FORMAT_DATE('%E4Y %B %e Quarter %Q', CURRENT_DATE) -- yyyy month d qtr Four-character years (0001 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024 January 11 Quarter 1 |
FORMAT_DATE('%E4Y %b %d Quarter %Q', CURRENT_DATE) -- yyyy mon dd qtr Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024 Jan 11 Quarter 1 |
FORMAT_DATE('%E4Y %b %e Quarter %Q', CURRENT_DATE) -- yyyy mon d qtr Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024 Jan 11 Quarter 1 |
FORMAT_DATE('%E4Y %h %d Quarter %Q', CURRENT_DATE) -- yyyy mon dd qtr Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024 Jan 11 Quarter 1 |
FORMAT_DATE('%E4Y %h %e Quarter %Q', CURRENT_DATE) -- yyyy mon d qtr Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024 Jan 11 Quarter 1 |
FORMAT_DATE('%y %B %d Quarter %Q', CURRENT_DATE) -- yy month dd qtr The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24 January 11 Quarter 1 |
FORMAT_DATE('%y %B %e Quarter %Q', CURRENT_DATE) -- yy month d qtr The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24 January 11 Quarter 1 |
FORMAT_DATE('%y %b %d Quarter %Q', CURRENT_DATE) -- yy mon dd qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24 Jan 11 Quarter 1 |
FORMAT_DATE('%y %b %e Quarter %Q', CURRENT_DATE) -- yy mon d qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24 Jan 11 Quarter 1 |
FORMAT_DATE('%y %h %d Quarter %Q', CURRENT_DATE) -- yy mon dd qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24 Jan 11 Quarter 1 |
FORMAT_DATE('%y %h %e Quarter %Q', CURRENT_DATE) -- yy mon d qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24 Jan 11 Quarter 1 |
FORMAT_DATE('%G %B %d Quarter %Q', CURRENT_DATE) -- Iy month dd qtr The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024 January 11 Quarter 1 |
FORMAT_DATE('%G %B %e Quarter %Q', CURRENT_DATE) -- Iy month d qtr The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024 January 11 Quarter 1 |
FORMAT_DATE('%G %b %d Quarter %Q', CURRENT_DATE) -- Iy mon dd qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024 Jan 11 Quarter 1 |
FORMAT_DATE('%G %b %e Quarter %Q', CURRENT_DATE) -- Iy mon d qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024 Jan 11 Quarter 1 |
FORMAT_DATE('%G %h %d Quarter %Q', CURRENT_DATE) -- Iy mon dd qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024 Jan 11 Quarter 1 |
FORMAT_DATE('%G %h %e Quarter %Q', CURRENT_DATE) -- Iy mon d qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024 Jan 11 Quarter 1 |
FORMAT_DATE('%g %B %d Quarter %Q', CURRENT_DATE) -- Iyyy month dd qtr The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24 January 11 Quarter 1 |
FORMAT_DATE('%g %B %e Quarter %Q', CURRENT_DATE) -- Iyyy month d qtr The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24 January 11 Quarter 1 |
FORMAT_DATE('%g %b %d Quarter %Q', CURRENT_DATE) -- Iyyy mon dd qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24 Jan 11 Quarter 1 |
FORMAT_DATE('%g %b %e Quarter %Q', CURRENT_DATE) -- Iyyy mon d qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24 Jan 11 Quarter 1 |
FORMAT_DATE('%g %h %d Quarter %Q', CURRENT_DATE) -- Iyyy mon dd qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24 Jan 11 Quarter 1 |
FORMAT_DATE('%g %h %e Quarter %Q', CURRENT_DATE) -- Iyyy mon d qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24 Jan 11 Quarter 1 |
FORMAT_DATE('%Y%m%d Quarter %Q', CURRENT_DATE) -- yyyymmdd qtr The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 20240111 Quarter 1 |
FORMAT_DATE('%Y%m%e Quarter %Q', CURRENT_DATE) -- yyyymm d qtr The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 20240111 Quarter 1 |
FORMAT_DATE('%E4Y%m%d Quarter %Q', CURRENT_DATE) -- yyyymmdd qtr Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 20240111 Quarter 1 |
FORMAT_DATE('%E4Y%m%e Quarter %Q', CURRENT_DATE) -- yyyymm d qtr Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 20240111 Quarter 1 |
FORMAT_DATE('%y%m%d Quarter %Q', CURRENT_DATE) -- yymmdd qtr The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 240111 Quarter 1 |
FORMAT_DATE('%y%m%e Quarter %Q', CURRENT_DATE) -- yymm d qtr The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 240111 Quarter 1 |
FORMAT_DATE('%G%m%d Quarter %Q', CURRENT_DATE) -- Iyyymmdd qtr The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 20240111 Quarter 1 |
FORMAT_DATE('%G%m%e Quarter %Q', CURRENT_DATE) -- Iyyymm d qtr The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 20240111 Quarter 1 |
FORMAT_DATE('%g%m%d Quarter %Q', CURRENT_DATE) -- Iymmdd qtr The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 240111 Quarter 1 |
FORMAT_DATE('%g%m%e Quarter %Q', CURRENT_DATE) -- Iymm d qtr The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 240111 Quarter 1 |
FORMAT_DATE('%Y%B%d Quarter %Q', CURRENT_DATE) -- yyyymonthdd qtr The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024January11 Quarter 1 |
FORMAT_DATE('%Y%B%e Quarter %Q', CURRENT_DATE) -- yyyymonth d qtr The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024January11 Quarter 1 |
FORMAT_DATE('%Y%b%d Quarter %Q', CURRENT_DATE) -- yyyymondd qtr The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024Jan11 Quarter 1 |
FORMAT_DATE('%Y%b%e Quarter %Q', CURRENT_DATE) -- yyyymon d qtr The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024Jan11 Quarter 1 |
FORMAT_DATE('%Y%h%d Quarter %Q', CURRENT_DATE) -- yyyymondd qtr The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024Jan11 Quarter 1 |
FORMAT_DATE('%Y%h%e Quarter %Q', CURRENT_DATE) -- yyyymon-dd qtr The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024Jan11 Quarter 1 |
FORMAT_DATE('%E4Y%B%d Quarter %Q', CURRENT_DATE) -- yyyymonthdd qtr Four-character years (0001 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024January11 Quarter 1 |
FORMAT_DATE('%E4Y%B%e Quarter %Q', CURRENT_DATE) -- yyyymonth d qtr Four-character years (0001 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024January11 Quarter 1 |
FORMAT_DATE('%E4Y%b%d Quarter %Q', CURRENT_DATE) -- yyyymondd qtr Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024Jan11 Quarter 1 |
FORMAT_DATE('%E4Y%b%e Quarter %Q', CURRENT_DATE) -- yyyymon d qtr Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024Jan11 Quarter 1 |
FORMAT_DATE('%E4Y%h%d Quarter %Q', CURRENT_DATE) -- yyyymondd qtr Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024Jan11 Quarter 1 |
FORMAT_DATE('%E4Y%h%e Quarter %Q', CURRENT_DATE) -- yyyymon d qtr Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024Jan11 Quarter 1 |
FORMAT_DATE('%y%B%d Quarter %Q', CURRENT_DATE) -- yymonthdd qtr The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24January11 Quarter 1 |
FORMAT_DATE('%y%B%e Quarter %Q', CURRENT_DATE) -- yymonth d qtr The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24January11 Quarter 1 |
FORMAT_DATE('%y%b%d Quarter %Q', CURRENT_DATE) -- yymondd qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24Jan11 Quarter 1 |
FORMAT_DATE('%y%b%e Quarter %Q', CURRENT_DATE) -- yymon d qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24Jan11 Quarter 1 |
FORMAT_DATE('%y%h%d Quarter %Q', CURRENT_DATE) -- yymondd qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24Jan11 Quarter 1 |
FORMAT_DATE('%y%h%e Quarter %Q', CURRENT_DATE) -- yymon d qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24Jan11 Quarter 1 |
FORMAT_DATE('%G%B%d Quarter %Q', CURRENT_DATE) -- Iymonthdd qtr The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024January11 Quarter 1 |
FORMAT_DATE('%G%B%e Quarter %Q', CURRENT_DATE) -- Iymonth d qtr The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024January11 Quarter 1 |
FORMAT_DATE('%G%b%d Quarter %Q', CURRENT_DATE) -- Iymondd qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024Jan11 Quarter 1 |
FORMAT_DATE('%G%b%e Quarter %Q', CURRENT_DATE) -- Iymon d qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024Jan11 Quarter 1 |
FORMAT_DATE('%G%h%d Quarter %Q', CURRENT_DATE) -- Iymondd qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024Jan11 Quarter 1 |
FORMAT_DATE('%G%h%e Quarter %Q', CURRENT_DATE) -- Iymon d qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024Jan11 Quarter 1 |
FORMAT_DATE('%g%B%d Quarter %Q', CURRENT_DATE) -- Iyyymonthdd qtr The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24January11 Quarter 1 |
FORMAT_DATE('%g%B%e Quarter %Q', CURRENT_DATE) -- Iyyymonth d qtr The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24January11 Quarter 1 |
FORMAT_DATE('%g%b%d Quarter %Q', CURRENT_DATE) -- Iyyymondd qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24Jan11 Quarter 1 |
FORMAT_DATE('%g%b%e Quarter %Q', CURRENT_DATE) -- Iyyymon d qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24Jan11 Quarter 1 |
FORMAT_DATE('%g%h%d Quarter %Q', CURRENT_DATE) -- Iyyymon-dd qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24Jan11 Quarter 1 |
FORMAT_DATE('%g%h%e Quarter %Q', CURRENT_DATE) -- Iyyymon d qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24Jan11 Quarter 1 |
FORMAT_DATE('%Y-%m-%d Week %U', CURRENT_DATE) -- yyyy-mm-dd woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024-01-11 Week 01 |
FORMAT_DATE('%Y-%m-%e Week %U', CURRENT_DATE) -- yyyy-mm- d woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024-01-11 Week 01 |
FORMAT_DATE('%E4Y-%m-%d Week %U', CURRENT_DATE) -- yyyy-mm-dd woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024-01-11 Week 01 |
FORMAT_DATE('%E4Y-%m-%e Week %U', CURRENT_DATE) -- yyyy-mm- d woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024-01-11 Week 01 |
FORMAT_DATE('%y-%m-%d Week %U', CURRENT_DATE) -- yy-mm-dd woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24-01-11 Week 01 |
FORMAT_DATE('%y-%m-%e Week %U', CURRENT_DATE) -- yy-mm- d woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24-01-11 Week 01 |
FORMAT_DATE('%G-%m-%d Week %U', CURRENT_DATE) -- Iyyy-mm-dd woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024-01-11 Week 01 |
FORMAT_DATE('%G-%m-%e Week %U', CURRENT_DATE) -- Iyyy-mm- d woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024-01-11 Week 01 |
FORMAT_DATE('%g-%m-%d Week %U', CURRENT_DATE) -- Iy-mm-dd woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24-01-11 Week 01 |
FORMAT_DATE('%g-%m-%e Week %U', CURRENT_DATE) -- Iy-mm- d woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24-01-11 Week 01 |
FORMAT_DATE('%Y-%B-%d Week %U', CURRENT_DATE) -- yyyy-month-dd woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024-January-11 Week 01 |
FORMAT_DATE('%Y-%B-%e Week %U', CURRENT_DATE) -- yyyy-month- d woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024-January-11 Week 01 |
FORMAT_DATE('%Y-%b-%d Week %U', CURRENT_DATE) -- yyyy-mon-dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024-Jan-11 Week 01 |
FORMAT_DATE('%Y-%b-%e Week %U', CURRENT_DATE) -- yyyy-mon- d woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024-Jan-11 Week 01 |
FORMAT_DATE('%Y-%h-%d Week %U', CURRENT_DATE) -- yyyy-mon-dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024-Jan-11 Week 01 |
FORMAT_DATE('%Y-%h-%e Week %U', CURRENT_DATE) -- yyyy-mon-dd woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024-Jan-11 Week 01 |
FORMAT_DATE('%E4Y-%B-%d Week %U', CURRENT_DATE) -- yyyy-month-dd woy Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024-January-11 Week 01 |
FORMAT_DATE('%E4Y-%B-%e Week %U', CURRENT_DATE) -- yyyy-month- d woy Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024-January-11 Week 01 |
FORMAT_DATE('%E4Y-%b-%d Week %U', CURRENT_DATE) -- yyyy-mon-dd woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024-Jan-11 Week 01 |
FORMAT_DATE('%E4Y-%b-%e Week %U', CURRENT_DATE) -- yyyy-mon- d woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024-Jan-11 Week 01 |
FORMAT_DATE('%E4Y-%h-%d Week %U', CURRENT_DATE) -- yyyy-mon-dd woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024-Jan-11 Week 01 |
FORMAT_DATE('%E4Y-%h-%e Week %U', CURRENT_DATE) -- yyyy-mon- d woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024-Jan-11 Week 01 |
FORMAT_DATE('%y-%B-%d Week %U', CURRENT_DATE) -- yy-month-dd woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24-January-11 Week 01 |
FORMAT_DATE('%y-%B-%e Week %U', CURRENT_DATE) -- yy-month- d woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24-January-11 Week 01 |
FORMAT_DATE('%y-%b-%d Week %U', CURRENT_DATE) -- yy-mon-dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24-Jan-11 Week 01 |
FORMAT_DATE('%y-%b-%e Week %U', CURRENT_DATE) -- yy-mon- d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24-Jan-11 Week 01 |
FORMAT_DATE('%y-%h-%d Week %U', CURRENT_DATE) -- yy-mon-dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24-Jan-11 Week 01 |
FORMAT_DATE('%y-%h-%e Week %U', CURRENT_DATE) -- yy-mon- d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24-Jan-11 Week 01 |
FORMAT_DATE('%G-%B-%d Week %U', CURRENT_DATE) -- Iy-month-dd woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024-January-11 Week 01 |
FORMAT_DATE('%G-%B-%e Week %U', CURRENT_DATE) -- Iy-month- d woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024-January-11 Week 01 |
FORMAT_DATE('%G-%b-%d Week %U', CURRENT_DATE) -- Iy-mon-dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024-Jan-11 Week 01 |
FORMAT_DATE('%G-%b-%e Week %U', CURRENT_DATE) -- Iy-mon- d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024-Jan-11 Week 01 |
FORMAT_DATE('%G-%h-%d Week %U', CURRENT_DATE) -- Iy-mon-dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024-Jan-11 Week 01 |
FORMAT_DATE('%G-%h-%e Week %U', CURRENT_DATE) -- Iy-mon- d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024-Jan-11 Week 01 |
FORMAT_DATE('%g-%B-%d Week %U', CURRENT_DATE) -- Iyyy-month-dd woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24-January-11 Week 01 |
FORMAT_DATE('%g-%B-%e Week %U', CURRENT_DATE) -- Iyyy-month- d woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24-January-11 Week 01 |
FORMAT_DATE('%g-%b-%d Week %U', CURRENT_DATE) -- Iyyy-mon-dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24-Jan-11 Week 01 |
FORMAT_DATE('%g-%b-%e Week %U', CURRENT_DATE) -- Iyyy-mon- d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24-Jan-11 Week 01 |
FORMAT_DATE('%g-%h-%d Week %U', CURRENT_DATE) -- Iyyy-mon-dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24-Jan-11 Week 01 |
FORMAT_DATE('%g-%h-%e Week %U', CURRENT_DATE) -- Iyyy-mon- d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24-Jan-11 Week 01 |
FORMAT_DATE('%Y/%m/%d Week %U', CURRENT_DATE) -- yyyy/mm/dd woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024/01/11 Week 01 |
FORMAT_DATE('%Y/%m/%e Week %U', CURRENT_DATE) -- yyyy/mm/ d woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024/01/11 Week 01 |
FORMAT_DATE('%E4Y/%m/%d Week %U', CURRENT_DATE) -- yyyy/mm/-dd woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024/01/11 Week 01 |
FORMAT_DATE('%E4Y/%m/%e Week %U', CURRENT_DATE) -- yyyy/mm/ d woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024/01/11 Week 01 |
FORMAT_DATE('%y/%m/%d Week %U', CURRENT_DATE) -- yy/mm/dd woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24/01/11 Week 01 |
FORMAT_DATE('%y/%m/%e Week %U', CURRENT_DATE) -- yy/mm/ d woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24/01/11 Week 01 |
FORMAT_DATE('%G/%m/%d Week %U', CURRENT_DATE) -- Iyyy/mm/dd woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024/01/11 Week 01 |
FORMAT_DATE('%G/%m/%e Week %U', CURRENT_DATE) -- Iyyy/mm/ d woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024/01/11 Week 01 |
FORMAT_DATE('%g/%m/%d Week %U', CURRENT_DATE) -- Iy/mm/dd woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24/01/11 Week 01 |
FORMAT_DATE('%g/%m/%e Week %U', CURRENT_DATE) -- Iy/mm/ d woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24/01/11 Week 01 |
FORMAT_DATE('%Y/%B/%d Week %U', CURRENT_DATE) -- yyyy/month/dd woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024/January/11 Week 01 |
FORMAT_DATE('%Y/%B/%e Week %U', CURRENT_DATE) -- yyyy/month/ d woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024/January/11 Week 01 |
FORMAT_DATE('%Y/%b/%d Week %U', CURRENT_DATE) -- yyyy/mon/dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024/Jan/11 Week 01 |
FORMAT_DATE('%Y/%b/%e Week %U', CURRENT_DATE) -- yyyy/mon/ d woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024/Jan/11 Week 01 |
FORMAT_DATE('%Y/%h/%d Week %U', CURRENT_DATE) -- yyyy/mon/dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024/Jan/11 Week 01 |
FORMAT_DATE('%Y/%h/%e Week %U', CURRENT_DATE) -- yyyy/mon/-dd woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024/Jan/11 Week 01 |
FORMAT_DATE('%E4Y/%B/%d Week %U', CURRENT_DATE) -- yyyy/month/dd woy Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024/January/11 Week 01 |
FORMAT_DATE('%E4Y/%B/%e Week %U', CURRENT_DATE) -- yyyy/month/ d woy Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024/January/11 Week 01 |
FORMAT_DATE('%E4Y/%b/%d Week %U', CURRENT_DATE) -- yyyy/mon/dd woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024/Jan/11 Week 01 |
FORMAT_DATE('%E4Y/%b/%e Week %U', CURRENT_DATE) -- yyyy/mon/ d woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024/Jan/11 Week 01 |
FORMAT_DATE('%E4Y/%h/%d Week %U', CURRENT_DATE) -- yyyy/mon/dd woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024/Jan/11 Week 01 |
FORMAT_DATE('%E4Y/%h/%e Week %U', CURRENT_DATE) -- yyyy/mon/ d woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024/Jan/11 Week 01 |
FORMAT_DATE('%y/%B/%d Week %U', CURRENT_DATE) -- yy/month/dd woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24/January/11 Week 01 |
FORMAT_DATE('%y/%B/%e Week %U', CURRENT_DATE) -- yy/month/ d woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24/January/11 Week 01 |
FORMAT_DATE('%y/%b/%d Week %U', CURRENT_DATE) -- yy/mon/dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24/Jan/11 Week 01 |
FORMAT_DATE('%y/%b/%e Week %U', CURRENT_DATE) -- yy/mon/ d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24/Jan/11 Week 01 |
FORMAT_DATE('%y/%h/%d Week %U', CURRENT_DATE) -- yy/mon/dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24/Jan/11 Week 01 |
FORMAT_DATE('%y/%h/%e Week %U', CURRENT_DATE) -- yy/mon/ d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24/Jan/11 Week 01 |
FORMAT_DATE('%G/%B/%d Week %U', CURRENT_DATE) -- Iy/month/dd woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024/January/11 Week 01 |
FORMAT_DATE('%G/%B/%e Week %U', CURRENT_DATE) -- Iy/month/ d woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024/January/11 Week 01 |
FORMAT_DATE('%G/%b/%d Week %U', CURRENT_DATE) -- Iy/mon/dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024/Jan/11 Week 01 |
FORMAT_DATE('%G/%b/%e Week %U', CURRENT_DATE) -- Iy/mon/ d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024/Jan/11 Week 01 |
FORMAT_DATE('%G/%h/%d Week %U', CURRENT_DATE) -- Iy/mon/dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024/Jan/11 Week 01 |
FORMAT_DATE('%G/%h/%e Week %U', CURRENT_DATE) -- Iy/mon/ d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024/Jan/11 Week 01 |
FORMAT_DATE('%g/%B/%d Week %U', CURRENT_DATE) -- Iyyy/month/dd woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24/January/11 Week 01 |
FORMAT_DATE('%g/%B/%e Week %U', CURRENT_DATE) -- Iyyy/month/ d woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24/January/11 Week 01 |
FORMAT_DATE('%g/%b/%d Week %U', CURRENT_DATE) -- Iyyy/mon/dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24/Jan/11 Week 01 |
FORMAT_DATE('%g/%b/%e Week %U', CURRENT_DATE) -- Iyyy/mon/ d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24/Jan/11 Week 01 |
FORMAT_DATE('%g/%h/%d Week %U', CURRENT_DATE) -- Iyyy/mon/-dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24/Jan/11 Week 01 |
FORMAT_DATE('%g/%h/%e Week %U', CURRENT_DATE) -- Iyyy/mon/ d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24/Jan/11 Week 01 |
FORMAT_DATE('%Y:%m:%d Week %U', CURRENT_DATE) -- yyyy:mm:dd woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024:01:11 Week 01 |
FORMAT_DATE('%Y:%m:%e Week %U', CURRENT_DATE) -- yyyy:mm: d woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024:01:11 Week 01 |
FORMAT_DATE('%E4Y:%m:%d Week %U', CURRENT_DATE) -- yyyy:mm:-dd woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024:01:11 Week 01 |
FORMAT_DATE('%E4Y:%m:%e Week %U', CURRENT_DATE) -- yyyy:mm: d woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024:01:11 Week 01 |
FORMAT_DATE('%y:%m:%d Week %U', CURRENT_DATE) -- yy:mm:dd woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24:01:11 Week 01 |
FORMAT_DATE('%y:%m:%e Week %U', CURRENT_DATE) -- yy:mm: d woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24:01:11 Week 01 |
FORMAT_DATE('%G:%m:%d Week %U', CURRENT_DATE) -- Iyyy:mm:dd woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024:01:11 Week 01 |
FORMAT_DATE('%G:%m:%e Week %U', CURRENT_DATE) -- Iyyy:mm: d woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024:01:11 Week 01 |
FORMAT_DATE('%g:%m:%d Week %U', CURRENT_DATE) -- Iy:mm:dd woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24:01:11 Week 01 |
FORMAT_DATE('%g:%m:%e Week %U', CURRENT_DATE) -- Iy:mm: d woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24:01:11 Week 01 |
FORMAT_DATE('%Y:%B:%d Week %U', CURRENT_DATE) -- yyyy:month:dd woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024:January:11 Week 01 |
FORMAT_DATE('%Y:%B:%e Week %U', CURRENT_DATE) -- yyyy:month: d woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024:January:11 Week 01 |
FORMAT_DATE('%Y:%b:%d Week %U', CURRENT_DATE) -- yyyy:mon:dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024:Jan:11 Week 01 |
FORMAT_DATE('%Y:%b:%e Week %U', CURRENT_DATE) -- yyyy:mon: d woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024:Jan:11 Week 01 |
FORMAT_DATE('%Y:%h:%d Week %U', CURRENT_DATE) -- yyyy:mon:dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024:Jan:11 Week 01 |
FORMAT_DATE('%Y:%h:%e Week %U', CURRENT_DATE) -- yyyy:mon:-dd woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024:Jan:11 Week 01 |
FORMAT_DATE('%E4Y:%B:%d Week %U', CURRENT_DATE) -- yyyy:month:dd woy Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024:January:11 Week 01 |
FORMAT_DATE('%E4Y:%B:%e Week %U', CURRENT_DATE) -- yyyy:month: d woy Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024:January:11 Week 01 |
FORMAT_DATE('%E4Y:%b:%d Week %U', CURRENT_DATE) -- yyyy:mon:dd woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024:Jan:11 Week 01 |
FORMAT_DATE('%E4Y:%b:%e Week %U', CURRENT_DATE) -- yyyy:mon: d woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024:Jan:11 Week 01 |
FORMAT_DATE('%E4Y:%h:%d Week %U', CURRENT_DATE) -- yyyy:mon:dd woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024:Jan:11 Week 01 |
FORMAT_DATE('%E4Y:%h:%e Week %U', CURRENT_DATE) -- yyyy:mon: d woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024:Jan:11 Week 01 |
FORMAT_DATE('%y:%B:%d Week %U', CURRENT_DATE) -- yy:month:dd woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24:January:11 Week 01 |
FORMAT_DATE('%y:%B:%e Week %U', CURRENT_DATE) -- yy:month: d woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24:January:11 Week 01 |
FORMAT_DATE('%y:%b:%d Week %U', CURRENT_DATE) -- yy:mon:dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24:Jan:11 Week 01 |
FORMAT_DATE('%y:%b:%e Week %U', CURRENT_DATE) -- yy:mon: d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24:Jan:11 Week 01 |
FORMAT_DATE('%y:%h:%d Week %U', CURRENT_DATE) -- yy:mon:dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24:Jan:11 Week 01 |
FORMAT_DATE('%y:%h:%e Week %U', CURRENT_DATE) -- yy:mon: d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24:Jan:11 Week 01 |
FORMAT_DATE('%G:%B:%d Week %U', CURRENT_DATE) -- Iy:month:dd woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024:January:11 Week 01 |
FORMAT_DATE('%G:%B:%e Week %U', CURRENT_DATE) -- Iy:month: d woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024:January:11 Week 01 |
FORMAT_DATE('%G:%b:%d Week %U', CURRENT_DATE) -- Iy:mon:dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024:Jan:11 Week 01 |
FORMAT_DATE('%G:%b:%e Week %U', CURRENT_DATE) -- Iy:mon: d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024:Jan:11 Week 01 |
FORMAT_DATE('%G:%h:%d Week %U', CURRENT_DATE) -- Iy:mon:dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024:Jan:11 Week 01 |
FORMAT_DATE('%G:%h:%e Week %U', CURRENT_DATE) -- Iy:mon: d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024:Jan:11 Week 01 |
FORMAT_DATE('%g:%B:%d Week %U', CURRENT_DATE) -- Iyyy:month:dd woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24:January:11 Week 01 |
FORMAT_DATE('%g:%B:%e Week %U', CURRENT_DATE) -- Iyyy:month: d woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24:January:11 Week 01 |
FORMAT_DATE('%g:%b:%d Week %U', CURRENT_DATE) -- Iyyy:mon:dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24:Jan:11 Week 01 |
FORMAT_DATE('%g:%b:%e Week %U', CURRENT_DATE) -- Iyyy:mon: d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24:Jan:11 Week 01 |
FORMAT_DATE('%g:%h:%d Week %U', CURRENT_DATE) -- Iyyy:mon:-dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24:Jan:11 Week 01 |
FORMAT_DATE('%g:%h:%e Week %U', CURRENT_DATE) -- Iyyy:mon: d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24:Jan:11 Week 01 |
FORMAT_DATE('%Y.%m.%d Week %U', CURRENT_DATE) -- yyyy.mm.dd woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024.01.11 Week 01 |
FORMAT_DATE('%Y.%m.%e Week %U', CURRENT_DATE) -- yyyy.mm. d woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024.01.11 Week 01 |
FORMAT_DATE('%E4Y.%m.%d Week %U', CURRENT_DATE) -- yyyy.mm.-dd woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024.01.11 Week 01 |
FORMAT_DATE('%E4Y.%m.%e Week %U', CURRENT_DATE) -- yyyy.mm. d woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024.01.11 Week 01 |
FORMAT_DATE('%y.%m.%d Week %U', CURRENT_DATE) -- yy.mm.dd woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24.01.11 Week 01 |
FORMAT_DATE('%y.%m.%e Week %U', CURRENT_DATE) -- yy.mm. d woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24.01.11 Week 01 |
FORMAT_DATE('%G.%m.%d Week %U', CURRENT_DATE) -- Iyyy.mm.dd woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024.01.11 Week 01 |
FORMAT_DATE('%G.%m.%e Week %U', CURRENT_DATE) -- Iyyy.mm. d woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024.01.11 Week 01 |
FORMAT_DATE('%g.%m.%d Week %U', CURRENT_DATE) -- Iy.mm.dd woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24.01.11 Week 01 |
FORMAT_DATE('%g.%m.%e Week %U', CURRENT_DATE) -- Iy.mm. d woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24.01.11 Week 01 |
FORMAT_DATE('%Y.%B.%d Week %U', CURRENT_DATE) -- yyyy.month.dd woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024.January.11 Week 01 |
FORMAT_DATE('%Y.%B.%e Week %U', CURRENT_DATE) -- yyyy.month. d woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024.January.11 Week 01 |
FORMAT_DATE('%Y.%b.%d Week %U', CURRENT_DATE) -- yyyy.mon.dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024.Jan.11 Week 01 |
FORMAT_DATE('%Y.%b.%e Week %U', CURRENT_DATE) -- yyyy.mon. d woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024.Jan.11 Week 01 |
FORMAT_DATE('%Y.%h.%d Week %U', CURRENT_DATE) -- yyyy.mon.dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024.Jan.11 Week 01 |
FORMAT_DATE('%Y.%h.%e Week %U', CURRENT_DATE) -- yyyy.mon.-dd woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024.Jan.11 Week 01 |
FORMAT_DATE('%E4Y.%B.%d Week %U', CURRENT_DATE) -- yyyy.month.dd woy Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024.January.11 Week 01 |
FORMAT_DATE('%E4Y.%B.%e Week %U', CURRENT_DATE) -- yyyy.month. d woy Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024.January.11 Week 01 |
FORMAT_DATE('%E4Y.%b.%d Week %U', CURRENT_DATE) -- yyyy.mon.dd woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024.Jan.11 Week 01 |
FORMAT_DATE('%E4Y.%b.%e Week %U', CURRENT_DATE) -- yyyy.mon. d woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024.Jan.11 Week 01 |
FORMAT_DATE('%E4Y.%h.%d Week %U', CURRENT_DATE) -- yyyy.mon.dd woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024.Jan.11 Week 01 |
FORMAT_DATE('%E4Y.%h.%e Week %U', CURRENT_DATE) -- yyyy.mon. d woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024.Jan.11 Week 01 |
FORMAT_DATE('%y.%B.%d Week %U', CURRENT_DATE) -- yy.month.dd woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24.January.11 Week 01 |
FORMAT_DATE('%y.%B.%e Week %U', CURRENT_DATE) -- yy.month. d woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24.January.11 Week 01 |
FORMAT_DATE('%y.%b.%d Week %U', CURRENT_DATE) -- yy.mon.dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24.Jan.11 Week 01 |
FORMAT_DATE('%y.%b.%e Week %U', CURRENT_DATE) -- yy.mon. d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24.Jan.11 Week 01 |
FORMAT_DATE('%y.%h.%d Week %U', CURRENT_DATE) -- yy.mon.dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24.Jan.11 Week 01 |
FORMAT_DATE('%y.%h.%e Week %U', CURRENT_DATE) -- yy.mon. d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24.Jan.11 Week 01 |
FORMAT_DATE('%G.%B.%d Week %U', CURRENT_DATE) -- Iy.month.dd woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024.January.11 Week 01 |
FORMAT_DATE('%G.%B.%e Week %U', CURRENT_DATE) -- Iy.month. d woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024.January.11 Week 01 |
FORMAT_DATE('%G.%b.%d Week %U', CURRENT_DATE) -- Iy.mon.dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024.Jan.11 Week 01 |
FORMAT_DATE('%G.%b.%e Week %U', CURRENT_DATE) -- Iy.mon. d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024.Jan.11 Week 01 |
FORMAT_DATE('%G.%h.%d Week %U', CURRENT_DATE) -- Iy.mon.dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024.Jan.11 Week 01 |
FORMAT_DATE('%G.%h.%e Week %U', CURRENT_DATE) -- Iy.mon. d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024.Jan.11 Week 01 |
FORMAT_DATE('%g.%B.%d Week %U', CURRENT_DATE) -- Iyyy.month.dd woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24.January.11 Week 01 |
FORMAT_DATE('%g.%B.%e Week %U', CURRENT_DATE) -- Iyyy.month. d woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24.January.11 Week 01 |
FORMAT_DATE('%g.%b.%d Week %U', CURRENT_DATE) -- Iyyy.mon.dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24.Jan.11 Week 01 |
FORMAT_DATE('%g.%b.%e Week %U', CURRENT_DATE) -- Iyyy.mon. d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24.Jan.11 Week 01 |
FORMAT_DATE('%g.%h.%d Week %U', CURRENT_DATE) -- Iyyy.mon.-dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24.Jan.11 Week 01 |
FORMAT_DATE('%g.%h.%e Week %U', CURRENT_DATE) -- Iyyy.mon. d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24.Jan.11 Week 01 |
FORMAT_DATE('%Y %m %d Week %U', CURRENT_DATE) -- yyyy mm dd woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024 01 11 Week 01 |
FORMAT_DATE('%Y %m %e Week %U', CURRENT_DATE) -- yyyy mm d woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024 01 11 Week 01 |
FORMAT_DATE('%E4Y %m %d Week %U', CURRENT_DATE) -- yyyy mm dd woy Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024 01 11 Week 01 |
FORMAT_DATE('%E4Y %m %e Week %U', CURRENT_DATE) -- yyyy mm d woy Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024 01 11 Week 01 |
FORMAT_DATE('%y %m %d Week %U', CURRENT_DATE) -- yy mm dd woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24 01 11 Week 01 |
FORMAT_DATE('%y %m %e Week %U', CURRENT_DATE) -- yy mm d woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24 01 11 Week 01 |
FORMAT_DATE('%G %m %d Week %U', CURRENT_DATE) -- Iyyy mm dd woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024 01 11 Week 01 |
FORMAT_DATE('%G %m %e Week %U', CURRENT_DATE) -- Iyyy mm d woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024 01 11 Week 01 |
FORMAT_DATE('%g %m %d Week %U', CURRENT_DATE) -- Iy mm dd woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24 01 11 Week 01 |
FORMAT_DATE('%g %m %e Week %U', CURRENT_DATE) -- Iy mm d woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24 01 11 Week 01 |
FORMAT_DATE('%Y %B %d Week %U', CURRENT_DATE) -- yyyy month dd woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024 January 11 Week 01 |
FORMAT_DATE('%Y %B %e Week %U', CURRENT_DATE) -- yyyy month d woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024 January 11 Week 01 |
FORMAT_DATE('%Y %b %d Week %U', CURRENT_DATE) -- yyyy mon dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024 Jan 11 Week 01 |
FORMAT_DATE('%Y %b %e Week %U', CURRENT_DATE) -- yyyy mon d woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024 Jan 11 Week 01 |
FORMAT_DATE('%Y %h %d Week %U', CURRENT_DATE) -- yyyy mon dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024 Jan 11 Week 01 |
FORMAT_DATE('%Y %h %e Week %U', CURRENT_DATE) -- yyyy mon -dd woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024 Jan 11 Week 01 |
FORMAT_DATE('%E4Y %B %d Week %U', CURRENT_DATE) -- yyyy month dd woy Four-character years (0001 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024 January 11 Week 01 |
FORMAT_DATE('%E4Y %B %e Week %U', CURRENT_DATE) -- yyyy month d woy Four-character years (0001 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024 January 11 Week 01 |
FORMAT_DATE('%E4Y %b %d Week %U', CURRENT_DATE) -- yyyy mon dd woy Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024 Jan 11 Week 01 |
FORMAT_DATE('%E4Y %b %e Week %U', CURRENT_DATE) -- yyyy mon d woy Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024 Jan 11 Week 01 |
FORMAT_DATE('%E4Y %h %d Week %U', CURRENT_DATE) -- yyyy mon dd woy Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024 Jan 11 Week 01 |
FORMAT_DATE('%E4Y %h %e Week %U', CURRENT_DATE) -- yyyy mon d woy Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024 Jan 11 Week 01 |
FORMAT_DATE('%y %B %d Week %U', CURRENT_DATE) -- yy month dd woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24 January 11 Week 01 |
FORMAT_DATE('%y %B %e Week %U', CURRENT_DATE) -- yy month d woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24 January 11 Week 01 |
FORMAT_DATE('%y %b %d Week %U', CURRENT_DATE) -- yy mon dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24 Jan 11 Week 01 |
FORMAT_DATE('%y %b %e Week %U', CURRENT_DATE) -- yy mon d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24 Jan 11 Week 01 |
FORMAT_DATE('%y %h %d Week %U', CURRENT_DATE) -- yy mon dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24 Jan 11 Week 01 |
FORMAT_DATE('%y %h %e Week %U', CURRENT_DATE) -- yy mon d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24 Jan 11 Week 01 |
FORMAT_DATE('%G %B %d Week %U', CURRENT_DATE) -- Iy month dd woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024 January 11 Week 01 |
FORMAT_DATE('%G %B %e Week %U', CURRENT_DATE) -- Iy month d woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024 January 11 Week 01 |
FORMAT_DATE('%G %b %d Week %U', CURRENT_DATE) -- Iy mon dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024 Jan 11 Week 01 |
FORMAT_DATE('%G %b %e Week %U', CURRENT_DATE) -- Iy mon d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024 Jan 11 Week 01 |
FORMAT_DATE('%G %h %d Week %U', CURRENT_DATE) -- Iy mon dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024 Jan 11 Week 01 |
FORMAT_DATE('%G %h %e Week %U', CURRENT_DATE) -- Iy mon d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024 Jan 11 Week 01 |
FORMAT_DATE('%g %B %d Week %U', CURRENT_DATE) -- Iyyy month dd woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24 January 11 Week 01 |
FORMAT_DATE('%g %B %e Week %U', CURRENT_DATE) -- Iyyy month d woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24 January 11 Week 01 |
FORMAT_DATE('%g %b %d Week %U', CURRENT_DATE) -- Iyyy mon dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24 Jan 11 Week 01 |
FORMAT_DATE('%g %b %e Week %U', CURRENT_DATE) -- Iyyy mon d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24 Jan 11 Week 01 |
FORMAT_DATE('%g %h %d Week %U', CURRENT_DATE) -- Iyyy mon dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24 Jan 11 Week 01 |
FORMAT_DATE('%g %h %e Week %U', CURRENT_DATE) -- Iyyy mon d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24 Jan 11 Week 01 |
FORMAT_DATE('%Y%m%d Week %U', CURRENT_DATE) -- yyyymmdd woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 20240111 Week 01 |
FORMAT_DATE('%Y%m%e Week %U', CURRENT_DATE) -- yyyymm d woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 20240111 Week 01 |
FORMAT_DATE('%E4Y%m%d Week %U', CURRENT_DATE) -- yyyymmdd woy Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 20240111 Week 01 |
FORMAT_DATE('%E4Y%m%e Week %U', CURRENT_DATE) -- yyyymm d woy Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 20240111 Week 01 |
FORMAT_DATE('%y%m%d Week %U', CURRENT_DATE) -- yymmdd woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 240111 Week 01 |
FORMAT_DATE('%y%m%e Week %U', CURRENT_DATE) -- yymm d woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 240111 Week 01 |
FORMAT_DATE('%G%m%d Week %U', CURRENT_DATE) -- Iyyymmdd woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 20240111 Week 01 |
FORMAT_DATE('%G%m%e Week %U', CURRENT_DATE) -- Iyyymm d woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 20240111 Week 01 |
FORMAT_DATE('%g%m%d Week %U', CURRENT_DATE) -- Iymmdd woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 240111 Week 01 |
FORMAT_DATE('%g%m%e Week %U', CURRENT_DATE) -- Iymm d woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 240111 Week 01 |
FORMAT_DATE('%Y%B%d Week %U', CURRENT_DATE) -- yyyymonthdd woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024January11 Week 01 |
FORMAT_DATE('%Y%B%e Week %U', CURRENT_DATE) -- yyyymonth d woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024January11 Week 01 |
FORMAT_DATE('%Y%b%d Week %U', CURRENT_DATE) -- yyyymondd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024Jan11 Week 01 |
FORMAT_DATE('%Y%b%e Week %U', CURRENT_DATE) -- yyyymon d woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024Jan11 Week 01 |
FORMAT_DATE('%Y%h%d Week %U', CURRENT_DATE) -- yyyymondd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024Jan11 Week 01 |
FORMAT_DATE('%Y%h%e Week %U', CURRENT_DATE) -- yyyymon-dd woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024Jan11 Week 01 |
FORMAT_DATE('%E4Y%B%d Week %U', CURRENT_DATE) -- yyyymonthdd woy Four-character years (0001 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024January11 Week 01 |
FORMAT_DATE('%E4Y%B%e Week %U', CURRENT_DATE) -- yyyymonth d woy Four-character years (0001 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024January11 Week 01 |
FORMAT_DATE('%E4Y%b%d Week %U', CURRENT_DATE) -- yyyymondd woy Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024Jan11 Week 01 |
FORMAT_DATE('%E4Y%b%e Week %U', CURRENT_DATE) -- yyyymon d woy Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024Jan11 Week 01 |
FORMAT_DATE('%E4Y%h%d Week %U', CURRENT_DATE) -- yyyymondd woy Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024Jan11 Week 01 |
FORMAT_DATE('%E4Y%h%e Week %U', CURRENT_DATE) -- yyyymon d woy Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024Jan11 Week 01 |
FORMAT_DATE('%y%B%d Week %U', CURRENT_DATE) -- yymonthdd woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24January11 Week 01 |
FORMAT_DATE('%y%B%e Week %U', CURRENT_DATE) -- yymonth d woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24January11 Week 01 |
FORMAT_DATE('%y%b%d Week %U', CURRENT_DATE) -- yymondd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24Jan11 Week 01 |
FORMAT_DATE('%y%b%e Week %U', CURRENT_DATE) -- yymon d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24Jan11 Week 01 |
FORMAT_DATE('%y%h%d Week %U', CURRENT_DATE) -- yymondd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24Jan11 Week 01 |
FORMAT_DATE('%y%h%e Week %U', CURRENT_DATE) -- yymon d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24Jan11 Week 01 |
FORMAT_DATE('%G%B%d Week %U', CURRENT_DATE) -- Iymonthdd woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024January11 Week 01 |
FORMAT_DATE('%G%B%e Week %U', CURRENT_DATE) -- Iymonth d woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024January11 Week 01 |
FORMAT_DATE('%G%b%d Week %U', CURRENT_DATE) -- Iymondd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024Jan11 Week 01 |
FORMAT_DATE('%G%b%e Week %U', CURRENT_DATE) -- Iymon d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024Jan11 Week 01 |
FORMAT_DATE('%G%h%d Week %U', CURRENT_DATE) -- Iymondd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024Jan11 Week 01 |
FORMAT_DATE('%G%h%e Week %U', CURRENT_DATE) -- Iymon d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024Jan11 Week 01 |
FORMAT_DATE('%g%B%d Week %U', CURRENT_DATE) -- Iyyymonthdd woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24January11 Week 01 |
FORMAT_DATE('%g%B%e Week %U', CURRENT_DATE) -- Iyyymonth d woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24January11 Week 01 |
FORMAT_DATE('%g%b%d Week %U', CURRENT_DATE) -- Iyyymondd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24Jan11 Week 01 |
FORMAT_DATE('%g%b%e Week %U', CURRENT_DATE) -- Iyyymon d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24Jan11 Week 01 |
FORMAT_DATE('%g%h%d Week %U', CURRENT_DATE) -- Iyyymon-dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24Jan11 Week 01 |
FORMAT_DATE('%g%h%e Week %U', CURRENT_DATE) -- Iyyymon d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24Jan11 Week 01 |
FORMAT_DATE('%Y-%m-%d Week %W', CURRENT_DATE) -- yyyy-mm-dd woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024-01-11 Week 02 |
FORMAT_DATE('%Y-%m-%e Week %W', CURRENT_DATE) -- yyyy-mm- d woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024-01-11 Week 02 |
FORMAT_DATE('%E4Y-%m-%d Week %W', CURRENT_DATE) -- yyyy-mm-dd woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024-01-11 Week 02 |
FORMAT_DATE('%E4Y-%m-%e Week %W', CURRENT_DATE) -- yyyy-mm- d woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024-01-11 Week 02 |
FORMAT_DATE('%y-%m-%d Week %W', CURRENT_DATE) -- yy-mm-dd woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24-01-11 Week 02 |
FORMAT_DATE('%y-%m-%e Week %W', CURRENT_DATE) -- yy-mm- d woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24-01-11 Week 02 |
FORMAT_DATE('%G-%m-%d Week %W', CURRENT_DATE) -- Iyyy-mm-dd woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024-01-11 Week 02 |
FORMAT_DATE('%G-%m-%e Week %W', CURRENT_DATE) -- Iyyy-mm- d woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024-01-11 Week 02 |
FORMAT_DATE('%g-%m-%d Week %W', CURRENT_DATE) -- Iy-mm-dd woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24-01-11 Week 02 |
FORMAT_DATE('%g-%m-%e Week %W', CURRENT_DATE) -- Iy-mm- d woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24-01-11 Week 02 |
FORMAT_DATE('%Y-%B-%d Week %W', CURRENT_DATE) -- yyyy-month-dd woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024-January-11 Week 02 |
FORMAT_DATE('%Y-%B-%e Week %W', CURRENT_DATE) -- yyyy-month- d woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024-January-11 Week 02 |
FORMAT_DATE('%Y-%b-%d Week %W', CURRENT_DATE) -- yyyy-mon-dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024-Jan-11 Week 02 |
FORMAT_DATE('%Y-%b-%e Week %W', CURRENT_DATE) -- yyyy-mon- d woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024-Jan-11 Week 02 |
FORMAT_DATE('%Y-%h-%d Week %W', CURRENT_DATE) -- yyyy-mon-dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024-Jan-11 Week 02 |
FORMAT_DATE('%Y-%h-%e Week %W', CURRENT_DATE) -- yyyy-mon-dd woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024-Jan-11 Week 02 |
FORMAT_DATE('%E4Y-%B-%d Week %W', CURRENT_DATE) -- yyyy-month-dd woy Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024-January-11 Week 02 |
FORMAT_DATE('%E4Y-%B-%e Week %W', CURRENT_DATE) -- yyyy-month- d woy Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024-January-11 Week 02 |
FORMAT_DATE('%E4Y-%b-%d Week %W', CURRENT_DATE) -- yyyy-mon-dd woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024-Jan-11 Week 02 |
FORMAT_DATE('%E4Y-%b-%e Week %W', CURRENT_DATE) -- yyyy-mon- d woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024-Jan-11 Week 02 |
FORMAT_DATE('%E4Y-%h-%d Week %W', CURRENT_DATE) -- yyyy-mon-dd woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024-Jan-11 Week 02 |
FORMAT_DATE('%E4Y-%h-%e Week %W', CURRENT_DATE) -- yyyy-mon- d woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024-Jan-11 Week 02 |
FORMAT_DATE('%y-%B-%d Week %W', CURRENT_DATE) -- yy-month-dd woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24-January-11 Week 02 |
FORMAT_DATE('%y-%B-%e Week %W', CURRENT_DATE) -- yy-month- d woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24-January-11 Week 02 |
FORMAT_DATE('%y-%b-%d Week %W', CURRENT_DATE) -- yy-mon-dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24-Jan-11 Week 02 |
FORMAT_DATE('%y-%b-%e Week %W', CURRENT_DATE) -- yy-mon- d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24-Jan-11 Week 02 |
FORMAT_DATE('%y-%h-%d Week %W', CURRENT_DATE) -- yy-mon-dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24-Jan-11 Week 02 |
FORMAT_DATE('%y-%h-%e Week %W', CURRENT_DATE) -- yy-mon- d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24-Jan-11 Week 02 |
FORMAT_DATE('%G-%B-%d Week %W', CURRENT_DATE) -- Iy-month-dd woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024-January-11 Week 02 |
FORMAT_DATE('%G-%B-%e Week %W', CURRENT_DATE) -- Iy-month- d woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024-January-11 Week 02 |
FORMAT_DATE('%G-%b-%d Week %W', CURRENT_DATE) -- Iy-mon-dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024-Jan-11 Week 02 |
FORMAT_DATE('%G-%b-%e Week %W', CURRENT_DATE) -- Iy-mon- d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024-Jan-11 Week 02 |
FORMAT_DATE('%G-%h-%d Week %W', CURRENT_DATE) -- Iy-mon-dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024-Jan-11 Week 02 |
FORMAT_DATE('%G-%h-%e Week %W', CURRENT_DATE) -- Iy-mon- d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024-Jan-11 Week 02 |
FORMAT_DATE('%g-%B-%d Week %W', CURRENT_DATE) -- Iyyy-month-dd woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24-January-11 Week 02 |
FORMAT_DATE('%g-%B-%e Week %W', CURRENT_DATE) -- Iyyy-month- d woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24-January-11 Week 02 |
FORMAT_DATE('%g-%b-%d Week %W', CURRENT_DATE) -- Iyyy-mon-dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24-Jan-11 Week 02 |
FORMAT_DATE('%g-%b-%e Week %W', CURRENT_DATE) -- Iyyy-mon- d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24-Jan-11 Week 02 |
FORMAT_DATE('%g-%h-%d Week %W', CURRENT_DATE) -- Iyyy-mon-dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24-Jan-11 Week 02 |
FORMAT_DATE('%g-%h-%e Week %W', CURRENT_DATE) -- Iyyy-mon- d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24-Jan-11 Week 02 |
FORMAT_DATE('%Y/%m/%d Week %W', CURRENT_DATE) -- yyyy/mm/dd woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024/01/11 Week 02 |
FORMAT_DATE('%Y/%m/%e Week %W', CURRENT_DATE) -- yyyy/mm/ d woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024/01/11 Week 02 |
FORMAT_DATE('%E4Y/%m/%d Week %W', CURRENT_DATE) -- yyyy/mm/-dd woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024/01/11 Week 02 |
FORMAT_DATE('%E4Y/%m/%e Week %W', CURRENT_DATE) -- yyyy/mm/ d woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024/01/11 Week 02 |
FORMAT_DATE('%y/%m/%d Week %W', CURRENT_DATE) -- yy/mm/dd woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24/01/11 Week 02 |
FORMAT_DATE('%y/%m/%e Week %W', CURRENT_DATE) -- yy/mm/ d woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24/01/11 Week 02 |
FORMAT_DATE('%G/%m/%d Week %W', CURRENT_DATE) -- Iyyy/mm/dd woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024/01/11 Week 02 |
FORMAT_DATE('%G/%m/%e Week %W', CURRENT_DATE) -- Iyyy/mm/ d woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024/01/11 Week 02 |
FORMAT_DATE('%g/%m/%d Week %W', CURRENT_DATE) -- Iy/mm/dd woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24/01/11 Week 02 |
FORMAT_DATE('%g/%m/%e Week %W', CURRENT_DATE) -- Iy/mm/ d woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24/01/11 Week 02 |
FORMAT_DATE('%Y/%B/%d Week %W', CURRENT_DATE) -- yyyy/month/dd woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024/January/11 Week 02 |
FORMAT_DATE('%Y/%B/%e Week %W', CURRENT_DATE) -- yyyy/month/ d woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024/January/11 Week 02 |
FORMAT_DATE('%Y/%b/%d Week %W', CURRENT_DATE) -- yyyy/mon/dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024/Jan/11 Week 02 |
FORMAT_DATE('%Y/%b/%e Week %W', CURRENT_DATE) -- yyyy/mon/ d woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024/Jan/11 Week 02 |
FORMAT_DATE('%Y/%h/%d Week %W', CURRENT_DATE) -- yyyy/mon/dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024/Jan/11 Week 02 |
FORMAT_DATE('%Y/%h/%e Week %W', CURRENT_DATE) -- yyyy/mon/-dd woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024/Jan/11 Week 02 |
FORMAT_DATE('%E4Y/%B/%d Week %W', CURRENT_DATE) -- yyyy/month/dd woy Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024/January/11 Week 02 |
FORMAT_DATE('%E4Y/%B/%e Week %W', CURRENT_DATE) -- yyyy/month/ d woy Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024/January/11 Week 02 |
FORMAT_DATE('%E4Y/%b/%d Week %W', CURRENT_DATE) -- yyyy/mon/dd woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024/Jan/11 Week 02 |
FORMAT_DATE('%E4Y/%b/%e Week %W', CURRENT_DATE) -- yyyy/mon/ d woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024/Jan/11 Week 02 |
FORMAT_DATE('%E4Y/%h/%d Week %W', CURRENT_DATE) -- yyyy/mon/dd woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024/Jan/11 Week 02 |
FORMAT_DATE('%E4Y/%h/%e Week %W', CURRENT_DATE) -- yyyy/mon/ d woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024/Jan/11 Week 02 |
FORMAT_DATE('%y/%B/%d Week %W', CURRENT_DATE) -- yy/month/dd woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24/January/11 Week 02 |
FORMAT_DATE('%y/%B/%e Week %W', CURRENT_DATE) -- yy/month/ d woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24/January/11 Week 02 |
FORMAT_DATE('%y/%b/%d Week %W', CURRENT_DATE) -- yy/mon/dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24/Jan/11 Week 02 |
FORMAT_DATE('%y/%b/%e Week %W', CURRENT_DATE) -- yy/mon/ d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24/Jan/11 Week 02 |
FORMAT_DATE('%y/%h/%d Week %W', CURRENT_DATE) -- yy/mon/dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24/Jan/11 Week 02 |
FORMAT_DATE('%y/%h/%e Week %W', CURRENT_DATE) -- yy/mon/ d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24/Jan/11 Week 02 |
FORMAT_DATE('%G/%B/%d Week %W', CURRENT_DATE) -- Iy/month/dd woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024/January/11 Week 02 |
FORMAT_DATE('%G/%B/%e Week %W', CURRENT_DATE) -- Iy/month/ d woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024/January/11 Week 02 |
FORMAT_DATE('%G/%b/%d Week %W', CURRENT_DATE) -- Iy/mon/dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024/Jan/11 Week 02 |
FORMAT_DATE('%G/%b/%e Week %W', CURRENT_DATE) -- Iy/mon/ d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024/Jan/11 Week 02 |
FORMAT_DATE('%G/%h/%d Week %W', CURRENT_DATE) -- Iy/mon/dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024/Jan/11 Week 02 |
FORMAT_DATE('%G/%h/%e Week %W', CURRENT_DATE) -- Iy/mon/ d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024/Jan/11 Week 02 |
FORMAT_DATE('%g/%B/%d Week %W', CURRENT_DATE) -- Iyyy/month/dd woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24/January/11 Week 02 |
FORMAT_DATE('%g/%B/%e Week %W', CURRENT_DATE) -- Iyyy/month/ d woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24/January/11 Week 02 |
FORMAT_DATE('%g/%b/%d Week %W', CURRENT_DATE) -- Iyyy/mon/dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24/Jan/11 Week 02 |
FORMAT_DATE('%g/%b/%e Week %W', CURRENT_DATE) -- Iyyy/mon/ d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24/Jan/11 Week 02 |
FORMAT_DATE('%g/%h/%d Week %W', CURRENT_DATE) -- Iyyy/mon/-dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24/Jan/11 Week 02 |
FORMAT_DATE('%g/%h/%e Week %W', CURRENT_DATE) -- Iyyy/mon/ d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24/Jan/11 Week 02 |
FORMAT_DATE('%Y:%m:%d Week %W', CURRENT_DATE) -- yyyy:mm:dd woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024:01:11 Week 02 |
FORMAT_DATE('%Y:%m:%e Week %W', CURRENT_DATE) -- yyyy:mm: d woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024:01:11 Week 02 |
FORMAT_DATE('%E4Y:%m:%d Week %W', CURRENT_DATE) -- yyyy:mm:-dd woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024:01:11 Week 02 |
FORMAT_DATE('%E4Y:%m:%e Week %W', CURRENT_DATE) -- yyyy:mm: d woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024:01:11 Week 02 |
FORMAT_DATE('%y:%m:%d Week %W', CURRENT_DATE) -- yy:mm:dd woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24:01:11 Week 02 |
FORMAT_DATE('%y:%m:%e Week %W', CURRENT_DATE) -- yy:mm: d woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24:01:11 Week 02 |
FORMAT_DATE('%G:%m:%d Week %W', CURRENT_DATE) -- Iyyy:mm:dd woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024:01:11 Week 02 |
FORMAT_DATE('%G:%m:%e Week %W', CURRENT_DATE) -- Iyyy:mm: d woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024:01:11 Week 02 |
FORMAT_DATE('%g:%m:%d Week %W', CURRENT_DATE) -- Iy:mm:dd woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24:01:11 Week 02 |
FORMAT_DATE('%g:%m:%e Week %W', CURRENT_DATE) -- Iy:mm: d woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24:01:11 Week 02 |
FORMAT_DATE('%Y:%B:%d Week %W', CURRENT_DATE) -- yyyy:month:dd woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024:January:11 Week 02 |
FORMAT_DATE('%Y:%B:%e Week %W', CURRENT_DATE) -- yyyy:month: d woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024:January:11 Week 02 |
FORMAT_DATE('%Y:%b:%d Week %W', CURRENT_DATE) -- yyyy:mon:dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024:Jan:11 Week 02 |
FORMAT_DATE('%Y:%b:%e Week %W', CURRENT_DATE) -- yyyy:mon: d woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024:Jan:11 Week 02 |
FORMAT_DATE('%Y:%h:%d Week %W', CURRENT_DATE) -- yyyy:mon:dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024:Jan:11 Week 02 |
FORMAT_DATE('%Y:%h:%e Week %W', CURRENT_DATE) -- yyyy:mon:-dd woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024:Jan:11 Week 02 |
FORMAT_DATE('%E4Y:%B:%d Week %W', CURRENT_DATE) -- yyyy:month:dd woy Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024:January:11 Week 02 |
FORMAT_DATE('%E4Y:%B:%e Week %W', CURRENT_DATE) -- yyyy:month: d woy Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024:January:11 Week 02 |
FORMAT_DATE('%E4Y:%b:%d Week %W', CURRENT_DATE) -- yyyy:mon:dd woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024:Jan:11 Week 02 |
FORMAT_DATE('%E4Y:%b:%e Week %W', CURRENT_DATE) -- yyyy:mon: d woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024:Jan:11 Week 02 |
FORMAT_DATE('%E4Y:%h:%d Week %W', CURRENT_DATE) -- yyyy:mon:dd woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024:Jan:11 Week 02 |
FORMAT_DATE('%E4Y:%h:%e Week %W', CURRENT_DATE) -- yyyy:mon: d woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024:Jan:11 Week 02 |
FORMAT_DATE('%y:%B:%d Week %W', CURRENT_DATE) -- yy:month:dd woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24:January:11 Week 02 |
FORMAT_DATE('%y:%B:%e Week %W', CURRENT_DATE) -- yy:month: d woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24:January:11 Week 02 |
FORMAT_DATE('%y:%b:%d Week %W', CURRENT_DATE) -- yy:mon:dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24:Jan:11 Week 02 |
FORMAT_DATE('%y:%b:%e Week %W', CURRENT_DATE) -- yy:mon: d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24:Jan:11 Week 02 |
FORMAT_DATE('%y:%h:%d Week %W', CURRENT_DATE) -- yy:mon:dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24:Jan:11 Week 02 |
FORMAT_DATE('%y:%h:%e Week %W', CURRENT_DATE) -- yy:mon: d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24:Jan:11 Week 02 |
FORMAT_DATE('%G:%B:%d Week %W', CURRENT_DATE) -- Iy:month:dd woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024:January:11 Week 02 |
FORMAT_DATE('%G:%B:%e Week %W', CURRENT_DATE) -- Iy:month: d woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024:January:11 Week 02 |
FORMAT_DATE('%G:%b:%d Week %W', CURRENT_DATE) -- Iy:mon:dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024:Jan:11 Week 02 |
FORMAT_DATE('%G:%b:%e Week %W', CURRENT_DATE) -- Iy:mon: d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024:Jan:11 Week 02 |
FORMAT_DATE('%G:%h:%d Week %W', CURRENT_DATE) -- Iy:mon:dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024:Jan:11 Week 02 |
FORMAT_DATE('%G:%h:%e Week %W', CURRENT_DATE) -- Iy:mon: d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024:Jan:11 Week 02 |
FORMAT_DATE('%g:%B:%d Week %W', CURRENT_DATE) -- Iyyy:month:dd woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24:January:11 Week 02 |
FORMAT_DATE('%g:%B:%e Week %W', CURRENT_DATE) -- Iyyy:month: d woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24:January:11 Week 02 |
FORMAT_DATE('%g:%b:%d Week %W', CURRENT_DATE) -- Iyyy:mon:dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24:Jan:11 Week 02 |
FORMAT_DATE('%g:%b:%e Week %W', CURRENT_DATE) -- Iyyy:mon: d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24:Jan:11 Week 02 |
FORMAT_DATE('%g:%h:%d Week %W', CURRENT_DATE) -- Iyyy:mon:-dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24:Jan:11 Week 02 |
FORMAT_DATE('%g:%h:%e Week %W', CURRENT_DATE) -- Iyyy:mon: d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24:Jan:11 Week 02 |
FORMAT_DATE('%Y.%m.%d Week %W', CURRENT_DATE) -- yyyy.mm.dd woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024.01.11 Week 02 |
FORMAT_DATE('%Y.%m.%e Week %W', CURRENT_DATE) -- yyyy.mm. d woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024.01.11 Week 02 |
FORMAT_DATE('%E4Y.%m.%d Week %W', CURRENT_DATE) -- yyyy.mm.-dd woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024.01.11 Week 02 |
FORMAT_DATE('%E4Y.%m.%e Week %W', CURRENT_DATE) -- yyyy.mm. d woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024.01.11 Week 02 |
FORMAT_DATE('%y.%m.%d Week %W', CURRENT_DATE) -- yy.mm.dd woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24.01.11 Week 02 |
FORMAT_DATE('%y.%m.%e Week %W', CURRENT_DATE) -- yy.mm. d woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24.01.11 Week 02 |
FORMAT_DATE('%G.%m.%d Week %W', CURRENT_DATE) -- Iyyy.mm.dd woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024.01.11 Week 02 |
FORMAT_DATE('%G.%m.%e Week %W', CURRENT_DATE) -- Iyyy.mm. d woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024.01.11 Week 02 |
FORMAT_DATE('%g.%m.%d Week %W', CURRENT_DATE) -- Iy.mm.dd woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24.01.11 Week 02 |
FORMAT_DATE('%g.%m.%e Week %W', CURRENT_DATE) -- Iy.mm. d woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24.01.11 Week 02 |
FORMAT_DATE('%Y.%B.%d Week %W', CURRENT_DATE) -- yyyy.month.dd woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024.January.11 Week 02 |
FORMAT_DATE('%Y.%B.%e Week %W', CURRENT_DATE) -- yyyy.month. d woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024.January.11 Week 02 |
FORMAT_DATE('%Y.%b.%d Week %W', CURRENT_DATE) -- yyyy.mon.dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024.Jan.11 Week 02 |
FORMAT_DATE('%Y.%b.%e Week %W', CURRENT_DATE) -- yyyy.mon. d woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024.Jan.11 Week 02 |
FORMAT_DATE('%Y.%h.%d Week %W', CURRENT_DATE) -- yyyy.mon.dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024.Jan.11 Week 02 |
FORMAT_DATE('%Y.%h.%e Week %W', CURRENT_DATE) -- yyyy.mon.-dd woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024.Jan.11 Week 02 |
FORMAT_DATE('%E4Y.%B.%d Week %W', CURRENT_DATE) -- yyyy.month.dd woy Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024.January.11 Week 02 |
FORMAT_DATE('%E4Y.%B.%e Week %W', CURRENT_DATE) -- yyyy.month. d woy Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024.January.11 Week 02 |
FORMAT_DATE('%E4Y.%b.%d Week %W', CURRENT_DATE) -- yyyy.mon.dd woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024.Jan.11 Week 02 |
FORMAT_DATE('%E4Y.%b.%e Week %W', CURRENT_DATE) -- yyyy.mon. d woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024.Jan.11 Week 02 |
FORMAT_DATE('%E4Y.%h.%d Week %W', CURRENT_DATE) -- yyyy.mon.dd woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024.Jan.11 Week 02 |
FORMAT_DATE('%E4Y.%h.%e Week %W', CURRENT_DATE) -- yyyy.mon. d woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024.Jan.11 Week 02 |
FORMAT_DATE('%y.%B.%d Week %W', CURRENT_DATE) -- yy.month.dd woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24.January.11 Week 02 |
FORMAT_DATE('%y.%B.%e Week %W', CURRENT_DATE) -- yy.month. d woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24.January.11 Week 02 |
FORMAT_DATE('%y.%b.%d Week %W', CURRENT_DATE) -- yy.mon.dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24.Jan.11 Week 02 |
FORMAT_DATE('%y.%b.%e Week %W', CURRENT_DATE) -- yy.mon. d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24.Jan.11 Week 02 |
FORMAT_DATE('%y.%h.%d Week %W', CURRENT_DATE) -- yy.mon.dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24.Jan.11 Week 02 |
FORMAT_DATE('%y.%h.%e Week %W', CURRENT_DATE) -- yy.mon. d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24.Jan.11 Week 02 |
FORMAT_DATE('%G.%B.%d Week %W', CURRENT_DATE) -- Iy.month.dd woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024.January.11 Week 02 |
FORMAT_DATE('%G.%B.%e Week %W', CURRENT_DATE) -- Iy.month. d woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024.January.11 Week 02 |
FORMAT_DATE('%G.%b.%d Week %W', CURRENT_DATE) -- Iy.mon.dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024.Jan.11 Week 02 |
FORMAT_DATE('%G.%b.%e Week %W', CURRENT_DATE) -- Iy.mon. d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024.Jan.11 Week 02 |
FORMAT_DATE('%G.%h.%d Week %W', CURRENT_DATE) -- Iy.mon.dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024.Jan.11 Week 02 |
FORMAT_DATE('%G.%h.%e Week %W', CURRENT_DATE) -- Iy.mon. d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024.Jan.11 Week 02 |
FORMAT_DATE('%g.%B.%d Week %W', CURRENT_DATE) -- Iyyy.month.dd woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24.January.11 Week 02 |
FORMAT_DATE('%g.%B.%e Week %W', CURRENT_DATE) -- Iyyy.month. d woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24.January.11 Week 02 |
FORMAT_DATE('%g.%b.%d Week %W', CURRENT_DATE) -- Iyyy.mon.dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24.Jan.11 Week 02 |
FORMAT_DATE('%g.%b.%e Week %W', CURRENT_DATE) -- Iyyy.mon. d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24.Jan.11 Week 02 |
FORMAT_DATE('%g.%h.%d Week %W', CURRENT_DATE) -- Iyyy.mon.-dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24.Jan.11 Week 02 |
FORMAT_DATE('%g.%h.%e Week %W', CURRENT_DATE) -- Iyyy.mon. d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24.Jan.11 Week 02 |
FORMAT_DATE('%Y %m %d Week %W', CURRENT_DATE) -- yyyy mm dd woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024 01 11 Week 02 |
FORMAT_DATE('%Y %m %e Week %W', CURRENT_DATE) -- yyyy mm d woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024 01 11 Week 02 |
FORMAT_DATE('%E4Y %m %d Week %W', CURRENT_DATE) -- yyyy mm dd woy Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024 01 11 Week 02 |
FORMAT_DATE('%E4Y %m %e Week %W', CURRENT_DATE) -- yyyy mm d woy Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024 01 11 Week 02 |
FORMAT_DATE('%y %m %d Week %W', CURRENT_DATE) -- yy mm dd woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24 01 11 Week 02 |
FORMAT_DATE('%y %m %e Week %W', CURRENT_DATE) -- yy mm d woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24 01 11 Week 02 |
FORMAT_DATE('%G %m %d Week %W', CURRENT_DATE) -- Iyyy mm dd woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024 01 11 Week 02 |
FORMAT_DATE('%G %m %e Week %W', CURRENT_DATE) -- Iyyy mm d woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024 01 11 Week 02 |
FORMAT_DATE('%g %m %d Week %W', CURRENT_DATE) -- Iy mm dd woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24 01 11 Week 02 |
FORMAT_DATE('%g %m %e Week %W', CURRENT_DATE) -- Iy mm d woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24 01 11 Week 02 |
FORMAT_DATE('%Y %B %d Week %W', CURRENT_DATE) -- yyyy month dd woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024 January 11 Week 02 |
FORMAT_DATE('%Y %B %e Week %W', CURRENT_DATE) -- yyyy month d woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024 January 11 Week 02 |
FORMAT_DATE('%Y %b %d Week %W', CURRENT_DATE) -- yyyy mon dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024 Jan 11 Week 02 |
FORMAT_DATE('%Y %b %e Week %W', CURRENT_DATE) -- yyyy mon d woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024 Jan 11 Week 02 |
FORMAT_DATE('%Y %h %d Week %W', CURRENT_DATE) -- yyyy mon dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024 Jan 11 Week 02 |
FORMAT_DATE('%Y %h %e Week %W', CURRENT_DATE) -- yyyy mon -dd woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024 Jan 11 Week 02 |
FORMAT_DATE('%E4Y %B %d Week %W', CURRENT_DATE) -- yyyy month dd woy Four-character years (0001 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024 January 11 Week 02 |
FORMAT_DATE('%E4Y %B %e Week %W', CURRENT_DATE) -- yyyy month d woy Four-character years (0001 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024 January 11 Week 02 |
FORMAT_DATE('%E4Y %b %d Week %W', CURRENT_DATE) -- yyyy mon dd woy Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024 Jan 11 Week 02 |
FORMAT_DATE('%E4Y %b %e Week %W', CURRENT_DATE) -- yyyy mon d woy Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024 Jan 11 Week 02 |
FORMAT_DATE('%E4Y %h %d Week %W', CURRENT_DATE) -- yyyy mon dd woy Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024 Jan 11 Week 02 |
FORMAT_DATE('%E4Y %h %e Week %W', CURRENT_DATE) -- yyyy mon d woy Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024 Jan 11 Week 02 |
FORMAT_DATE('%y %B %d Week %W', CURRENT_DATE) -- yy month dd woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24 January 11 Week 02 |
FORMAT_DATE('%y %B %e Week %W', CURRENT_DATE) -- yy month d woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24 January 11 Week 02 |
FORMAT_DATE('%y %b %d Week %W', CURRENT_DATE) -- yy mon dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24 Jan 11 Week 02 |
FORMAT_DATE('%y %b %e Week %W', CURRENT_DATE) -- yy mon d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24 Jan 11 Week 02 |
FORMAT_DATE('%y %h %d Week %W', CURRENT_DATE) -- yy mon dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24 Jan 11 Week 02 |
FORMAT_DATE('%y %h %e Week %W', CURRENT_DATE) -- yy mon d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24 Jan 11 Week 02 |
FORMAT_DATE('%G %B %d Week %W', CURRENT_DATE) -- Iy month dd woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024 January 11 Week 02 |
FORMAT_DATE('%G %B %e Week %W', CURRENT_DATE) -- Iy month d woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024 January 11 Week 02 |
FORMAT_DATE('%G %b %d Week %W', CURRENT_DATE) -- Iy mon dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024 Jan 11 Week 02 |
FORMAT_DATE('%G %b %e Week %W', CURRENT_DATE) -- Iy mon d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024 Jan 11 Week 02 |
FORMAT_DATE('%G %h %d Week %W', CURRENT_DATE) -- Iy mon dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024 Jan 11 Week 02 |
FORMAT_DATE('%G %h %e Week %W', CURRENT_DATE) -- Iy mon d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024 Jan 11 Week 02 |
FORMAT_DATE('%g %B %d Week %W', CURRENT_DATE) -- Iyyy month dd woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24 January 11 Week 02 |
FORMAT_DATE('%g %B %e Week %W', CURRENT_DATE) -- Iyyy month d woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24 January 11 Week 02 |
FORMAT_DATE('%g %b %d Week %W', CURRENT_DATE) -- Iyyy mon dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24 Jan 11 Week 02 |
FORMAT_DATE('%g %b %e Week %W', CURRENT_DATE) -- Iyyy mon d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24 Jan 11 Week 02 |
FORMAT_DATE('%g %h %d Week %W', CURRENT_DATE) -- Iyyy mon dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24 Jan 11 Week 02 |
FORMAT_DATE('%g %h %e Week %W', CURRENT_DATE) -- Iyyy mon d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24 Jan 11 Week 02 |
FORMAT_DATE('%Y%m%d Week %W', CURRENT_DATE) -- yyyymmdd woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 20240111 Week 02 |
FORMAT_DATE('%Y%m%e Week %W', CURRENT_DATE) -- yyyymm d woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 20240111 Week 02 |
FORMAT_DATE('%E4Y%m%d Week %W', CURRENT_DATE) -- yyyymmdd woy Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 20240111 Week 02 |
FORMAT_DATE('%E4Y%m%e Week %W', CURRENT_DATE) -- yyyymm d woy Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 20240111 Week 02 |
FORMAT_DATE('%y%m%d Week %W', CURRENT_DATE) -- yymmdd woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 240111 Week 02 |
FORMAT_DATE('%y%m%e Week %W', CURRENT_DATE) -- yymm d woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 240111 Week 02 |
FORMAT_DATE('%G%m%d Week %W', CURRENT_DATE) -- Iyyymmdd woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 20240111 Week 02 |
FORMAT_DATE('%G%m%e Week %W', CURRENT_DATE) -- Iyyymm d woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 20240111 Week 02 |
FORMAT_DATE('%g%m%d Week %W', CURRENT_DATE) -- Iymmdd woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 240111 Week 02 |
FORMAT_DATE('%g%m%e Week %W', CURRENT_DATE) -- Iymm d woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 240111 Week 02 |
FORMAT_DATE('%Y%B%d Week %W', CURRENT_DATE) -- yyyymonthdd woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024January11 Week 02 |
FORMAT_DATE('%Y%B%e Week %W', CURRENT_DATE) -- yyyymonth d woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024January11 Week 02 |
FORMAT_DATE('%Y%b%d Week %W', CURRENT_DATE) -- yyyymondd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024Jan11 Week 02 |
FORMAT_DATE('%Y%b%e Week %W', CURRENT_DATE) -- yyyymon d woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024Jan11 Week 02 |
FORMAT_DATE('%Y%h%d Week %W', CURRENT_DATE) -- yyyymondd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024Jan11 Week 02 |
FORMAT_DATE('%Y%h%e Week %W', CURRENT_DATE) -- yyyymon-dd woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024Jan11 Week 02 |
FORMAT_DATE('%E4Y%B%d Week %W', CURRENT_DATE) -- yyyymonthdd woy Four-character years (0001 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024January11 Week 02 |
FORMAT_DATE('%E4Y%B%e Week %W', CURRENT_DATE) -- yyyymonth d woy Four-character years (0001 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024January11 Week 02 |
FORMAT_DATE('%E4Y%b%d Week %W', CURRENT_DATE) -- yyyymondd woy Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024Jan11 Week 02 |
FORMAT_DATE('%E4Y%b%e Week %W', CURRENT_DATE) -- yyyymon d woy Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024Jan11 Week 02 |
FORMAT_DATE('%E4Y%h%d Week %W', CURRENT_DATE) -- yyyymondd woy Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024Jan11 Week 02 |
FORMAT_DATE('%E4Y%h%e Week %W', CURRENT_DATE) -- yyyymon d woy Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024Jan11 Week 02 |
FORMAT_DATE('%y%B%d Week %W', CURRENT_DATE) -- yymonthdd woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24January11 Week 02 |
FORMAT_DATE('%y%B%e Week %W', CURRENT_DATE) -- yymonth d woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24January11 Week 02 |
FORMAT_DATE('%y%b%d Week %W', CURRENT_DATE) -- yymondd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24Jan11 Week 02 |
FORMAT_DATE('%y%b%e Week %W', CURRENT_DATE) -- yymon d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24Jan11 Week 02 |
FORMAT_DATE('%y%h%d Week %W', CURRENT_DATE) -- yymondd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24Jan11 Week 02 |
FORMAT_DATE('%y%h%e Week %W', CURRENT_DATE) -- yymon d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24Jan11 Week 02 |
FORMAT_DATE('%G%B%d Week %W', CURRENT_DATE) -- Iymonthdd woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024January11 Week 02 |
FORMAT_DATE('%G%B%e Week %W', CURRENT_DATE) -- Iymonth d woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024January11 Week 02 |
FORMAT_DATE('%G%b%d Week %W', CURRENT_DATE) -- Iymondd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024Jan11 Week 02 |
FORMAT_DATE('%G%b%e Week %W', CURRENT_DATE) -- Iymon d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024Jan11 Week 02 |
FORMAT_DATE('%G%h%d Week %W', CURRENT_DATE) -- Iymondd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024Jan11 Week 02 |
FORMAT_DATE('%G%h%e Week %W', CURRENT_DATE) -- Iymon d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024Jan11 Week 02 |
FORMAT_DATE('%g%B%d Week %W', CURRENT_DATE) -- Iyyymonthdd woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24January11 Week 02 |
FORMAT_DATE('%g%B%e Week %W', CURRENT_DATE) -- Iyyymonth d woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24January11 Week 02 |
FORMAT_DATE('%g%b%d Week %W', CURRENT_DATE) -- Iyyymondd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24Jan11 Week 02 |
FORMAT_DATE('%g%b%e Week %W', CURRENT_DATE) -- Iyyymon d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24Jan11 Week 02 |
FORMAT_DATE('%g%h%d Week %W', CURRENT_DATE) -- Iyyymon-dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24Jan11 Week 02 |
FORMAT_DATE('%g%h%e Week %W', CURRENT_DATE) -- Iyyymon d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24Jan11 Week 02 |
FORMAT_DATE('%Y-%m-%d ISO Week %V', CURRENT_DATE) -- yyyy-mm-dd iso-woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-01-11 ISO Week 02 |
FORMAT_DATE('%Y-%m-%e ISO Week %V', CURRENT_DATE) -- yyyy-mm- d iso-woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-01-11 ISO Week 02 |
FORMAT_DATE('%E4Y-%m-%d ISO Week %V', CURRENT_DATE) -- yyyy-mm-dd iso-woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-01-11 ISO Week 02 |
FORMAT_DATE('%E4Y-%m-%e ISO Week %V', CURRENT_DATE) -- yyyy-mm- d iso-woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-01-11 ISO Week 02 |
FORMAT_DATE('%y-%m-%d ISO Week %V', CURRENT_DATE) -- yy-mm-dd iso-woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24-01-11 ISO Week 02 |
FORMAT_DATE('%y-%m-%e ISO Week %V', CURRENT_DATE) -- yy-mm- d iso-woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24-01-11 ISO Week 02 |
FORMAT_DATE('%G-%m-%d ISO Week %V', CURRENT_DATE) -- Iyyy-mm-dd iso-woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-01-11 ISO Week 02 |
FORMAT_DATE('%G-%m-%e ISO Week %V', CURRENT_DATE) -- Iyyy-mm- d iso-woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-01-11 ISO Week 02 |
FORMAT_DATE('%g-%m-%d ISO Week %V', CURRENT_DATE) -- Iy-mm-dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24-01-11 ISO Week 02 |
FORMAT_DATE('%g-%m-%e ISO Week %V', CURRENT_DATE) -- Iy-mm- d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24-01-11 ISO Week 02 |
FORMAT_DATE('%Y-%B-%d ISO Week %V', CURRENT_DATE) -- yyyy-month-dd iso-woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-January-11 ISO Week 02 |
FORMAT_DATE('%Y-%B-%e ISO Week %V', CURRENT_DATE) -- yyyy-month- d iso-woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-January-11 ISO Week 02 |
FORMAT_DATE('%Y-%b-%d ISO Week %V', CURRENT_DATE) -- yyyy-mon-dd iso-woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-Jan-11 ISO Week 02 |
FORMAT_DATE('%Y-%b-%e ISO Week %V', CURRENT_DATE) -- yyyy-mon- d iso-woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-Jan-11 ISO Week 02 |
FORMAT_DATE('%Y-%h-%d ISO Week %V', CURRENT_DATE) -- yyyy-mon-dd iso-woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-Jan-11 ISO Week 02 |
FORMAT_DATE('%Y-%h-%e ISO Week %V', CURRENT_DATE) -- yyyy-mon-dd iso-woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-Jan-11 ISO Week 02 |
FORMAT_DATE('%E4Y-%B-%d ISO Week %V', CURRENT_DATE) -- yyyy-month-dd iso-woy Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-January-11 ISO Week 02 |
FORMAT_DATE('%E4Y-%B-%e ISO Week %V', CURRENT_DATE) -- yyyy-month- d iso-woy Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-January-11 ISO Week 02 |
FORMAT_DATE('%E4Y-%b-%d ISO Week %V', CURRENT_DATE) -- yyyy-mon-dd iso-woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-Jan-11 ISO Week 02 |
FORMAT_DATE('%E4Y-%b-%e ISO Week %V', CURRENT_DATE) -- yyyy-mon- d iso-woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-Jan-11 ISO Week 02 |
FORMAT_DATE('%E4Y-%h-%d ISO Week %V', CURRENT_DATE) -- yyyy-mon-dd iso-woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-Jan-11 ISO Week 02 |
FORMAT_DATE('%E4Y-%h-%e ISO Week %V', CURRENT_DATE) -- yyyy-mon- d iso-woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-Jan-11 ISO Week 02 |
FORMAT_DATE('%y-%B-%d ISO Week %V', CURRENT_DATE) -- yy-month-dd iso-woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24-January-11 ISO Week 02 |
FORMAT_DATE('%y-%B-%e ISO Week %V', CURRENT_DATE) -- yy-month- d iso-woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24-January-11 ISO Week 02 |
FORMAT_DATE('%y-%b-%d ISO Week %V', CURRENT_DATE) -- yy-mon-dd iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24-Jan-11 ISO Week 02 |
FORMAT_DATE('%y-%b-%e ISO Week %V', CURRENT_DATE) -- yy-mon- d iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24-Jan-11 ISO Week 02 |
FORMAT_DATE('%y-%h-%d ISO Week %V', CURRENT_DATE) -- yy-mon-dd iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24-Jan-11 ISO Week 02 |
FORMAT_DATE('%y-%h-%e ISO Week %V', CURRENT_DATE) -- yy-mon- d iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24-Jan-11 ISO Week 02 |
FORMAT_DATE('%G-%B-%d ISO Week %V', CURRENT_DATE) -- Iy-month-dd iso-woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-January-11 ISO Week 02 |
FORMAT_DATE('%G-%B-%e ISO Week %V', CURRENT_DATE) -- Iy-month- d iso-woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-January-11 ISO Week 02 |
FORMAT_DATE('%G-%b-%d ISO Week %V', CURRENT_DATE) -- Iy-mon-dd iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-Jan-11 ISO Week 02 |
FORMAT_DATE('%G-%b-%e ISO Week %V', CURRENT_DATE) -- Iy-mon- d iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-Jan-11 ISO Week 02 |
FORMAT_DATE('%G-%h-%d ISO Week %V', CURRENT_DATE) -- Iy-mon-dd iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-Jan-11 ISO Week 02 |
FORMAT_DATE('%G-%h-%e ISO Week %V', CURRENT_DATE) -- Iy-mon- d iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-Jan-11 ISO Week 02 |
FORMAT_DATE('%g-%B-%d ISO Week %V', CURRENT_DATE) -- Iyyy-month-dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24-January-11 ISO Week 02 |
FORMAT_DATE('%g-%B-%e ISO Week %V', CURRENT_DATE) -- Iyyy-month- d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24-January-11 ISO Week 02 |
FORMAT_DATE('%g-%b-%d ISO Week %V', CURRENT_DATE) -- Iyyy-mon-dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24-Jan-11 ISO Week 02 |
FORMAT_DATE('%g-%b-%e ISO Week %V', CURRENT_DATE) -- Iyyy-mon- d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24-Jan-11 ISO Week 02 |
FORMAT_DATE('%g-%h-%d ISO Week %V', CURRENT_DATE) -- Iyyy-mon-dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24-Jan-11 ISO Week 02 |
FORMAT_DATE('%g-%h-%e ISO Week %V', CURRENT_DATE) -- Iyyy-mon- d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24-Jan-11 ISO Week 02 |
FORMAT_DATE('%Y/%m/%d ISO Week %V', CURRENT_DATE) -- yyyy/mm/dd iso-woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/01/11 ISO Week 02 |
FORMAT_DATE('%Y/%m/%e ISO Week %V', CURRENT_DATE) -- yyyy/mm/ d iso-woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/01/11 ISO Week 02 |
FORMAT_DATE('%E4Y/%m/%d ISO Week %V', CURRENT_DATE) -- yyyy/mm/-dd iso-woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/01/11 ISO Week 02 |
FORMAT_DATE('%E4Y/%m/%e ISO Week %V', CURRENT_DATE) -- yyyy/mm/ d iso-woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/01/11 ISO Week 02 |
FORMAT_DATE('%y/%m/%d ISO Week %V', CURRENT_DATE) -- yy/mm/dd iso-woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24/01/11 ISO Week 02 |
FORMAT_DATE('%y/%m/%e ISO Week %V', CURRENT_DATE) -- yy/mm/ d iso-woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24/01/11 ISO Week 02 |
FORMAT_DATE('%G/%m/%d ISO Week %V', CURRENT_DATE) -- Iyyy/mm/dd iso-woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/01/11 ISO Week 02 |
FORMAT_DATE('%G/%m/%e ISO Week %V', CURRENT_DATE) -- Iyyy/mm/ d iso-woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/01/11 ISO Week 02 |
FORMAT_DATE('%g/%m/%d ISO Week %V', CURRENT_DATE) -- Iy/mm/dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24/01/11 ISO Week 02 |
FORMAT_DATE('%g/%m/%e ISO Week %V', CURRENT_DATE) -- Iy/mm/ d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24/01/11 ISO Week 02 |
FORMAT_DATE('%Y/%B/%d ISO Week %V', CURRENT_DATE) -- yyyy/month/dd iso-woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/January/11 ISO Week 02 |
FORMAT_DATE('%Y/%B/%e ISO Week %V', CURRENT_DATE) -- yyyy/month/ d iso-woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/January/11 ISO Week 02 |
FORMAT_DATE('%Y/%b/%d ISO Week %V', CURRENT_DATE) -- yyyy/mon/dd iso-woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/Jan/11 ISO Week 02 |
FORMAT_DATE('%Y/%b/%e ISO Week %V', CURRENT_DATE) -- yyyy/mon/ d iso-woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/Jan/11 ISO Week 02 |
FORMAT_DATE('%Y/%h/%d ISO Week %V', CURRENT_DATE) -- yyyy/mon/dd iso-woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/Jan/11 ISO Week 02 |
FORMAT_DATE('%Y/%h/%e ISO Week %V', CURRENT_DATE) -- yyyy/mon/-dd iso-woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/Jan/11 ISO Week 02 |
FORMAT_DATE('%E4Y/%B/%d ISO Week %V', CURRENT_DATE) -- yyyy/month/dd iso-woy Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/January/11 ISO Week 02 |
FORMAT_DATE('%E4Y/%B/%e ISO Week %V', CURRENT_DATE) -- yyyy/month/ d iso-woy Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/January/11 ISO Week 02 |
FORMAT_DATE('%E4Y/%b/%d ISO Week %V', CURRENT_DATE) -- yyyy/mon/dd iso-woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/Jan/11 ISO Week 02 |
FORMAT_DATE('%E4Y/%b/%e ISO Week %V', CURRENT_DATE) -- yyyy/mon/ d iso-woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/Jan/11 ISO Week 02 |
FORMAT_DATE('%E4Y/%h/%d ISO Week %V', CURRENT_DATE) -- yyyy/mon/dd iso-woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/Jan/11 ISO Week 02 |
FORMAT_DATE('%E4Y/%h/%e ISO Week %V', CURRENT_DATE) -- yyyy/mon/ d iso-woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/Jan/11 ISO Week 02 |
FORMAT_DATE('%y/%B/%d ISO Week %V', CURRENT_DATE) -- yy/month/dd iso-woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24/January/11 ISO Week 02 |
FORMAT_DATE('%y/%B/%e ISO Week %V', CURRENT_DATE) -- yy/month/ d iso-woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24/January/11 ISO Week 02 |
FORMAT_DATE('%y/%b/%d ISO Week %V', CURRENT_DATE) -- yy/mon/dd iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24/Jan/11 ISO Week 02 |
FORMAT_DATE('%y/%b/%e ISO Week %V', CURRENT_DATE) -- yy/mon/ d iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24/Jan/11 ISO Week 02 |
FORMAT_DATE('%y/%h/%d ISO Week %V', CURRENT_DATE) -- yy/mon/dd iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24/Jan/11 ISO Week 02 |
FORMAT_DATE('%y/%h/%e ISO Week %V', CURRENT_DATE) -- yy/mon/ d iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24/Jan/11 ISO Week 02 |
FORMAT_DATE('%G/%B/%d ISO Week %V', CURRENT_DATE) -- Iy/month/dd iso-woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/January/11 ISO Week 02 |
FORMAT_DATE('%G/%B/%e ISO Week %V', CURRENT_DATE) -- Iy/month/ d iso-woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/January/11 ISO Week 02 |
FORMAT_DATE('%G/%b/%d ISO Week %V', CURRENT_DATE) -- Iy/mon/dd iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/Jan/11 ISO Week 02 |
FORMAT_DATE('%G/%b/%e ISO Week %V', CURRENT_DATE) -- Iy/mon/ d iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/Jan/11 ISO Week 02 |
FORMAT_DATE('%G/%h/%d ISO Week %V', CURRENT_DATE) -- Iy/mon/dd iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/Jan/11 ISO Week 02 |
FORMAT_DATE('%G/%h/%e ISO Week %V', CURRENT_DATE) -- Iy/mon/ d iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/Jan/11 ISO Week 02 |
FORMAT_DATE('%g/%B/%d ISO Week %V', CURRENT_DATE) -- Iyyy/month/dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24/January/11 ISO Week 02 |
FORMAT_DATE('%g/%B/%e ISO Week %V', CURRENT_DATE) -- Iyyy/month/ d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24/January/11 ISO Week 02 |
FORMAT_DATE('%g/%b/%d ISO Week %V', CURRENT_DATE) -- Iyyy/mon/dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24/Jan/11 ISO Week 02 |
FORMAT_DATE('%g/%b/%e ISO Week %V', CURRENT_DATE) -- Iyyy/mon/ d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24/Jan/11 ISO Week 02 |
FORMAT_DATE('%g/%h/%d ISO Week %V', CURRENT_DATE) -- Iyyy/mon/-dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24/Jan/11 ISO Week 02 |
FORMAT_DATE('%g/%h/%e ISO Week %V', CURRENT_DATE) -- Iyyy/mon/ d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24/Jan/11 ISO Week 02 |
FORMAT_DATE('%Y:%m:%d ISO Week %V', CURRENT_DATE) -- yyyy:mm:dd iso-woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:01:11 ISO Week 02 |
FORMAT_DATE('%Y:%m:%e ISO Week %V', CURRENT_DATE) -- yyyy:mm: d iso-woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:01:11 ISO Week 02 |
FORMAT_DATE('%E4Y:%m:%d ISO Week %V', CURRENT_DATE) -- yyyy:mm:-dd iso-woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:01:11 ISO Week 02 |
FORMAT_DATE('%E4Y:%m:%e ISO Week %V', CURRENT_DATE) -- yyyy:mm: d iso-woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:01:11 ISO Week 02 |
FORMAT_DATE('%y:%m:%d ISO Week %V', CURRENT_DATE) -- yy:mm:dd iso-woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24:01:11 ISO Week 02 |
FORMAT_DATE('%y:%m:%e ISO Week %V', CURRENT_DATE) -- yy:mm: d iso-woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24:01:11 ISO Week 02 |
FORMAT_DATE('%G:%m:%d ISO Week %V', CURRENT_DATE) -- Iyyy:mm:dd iso-woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:01:11 ISO Week 02 |
FORMAT_DATE('%G:%m:%e ISO Week %V', CURRENT_DATE) -- Iyyy:mm: d iso-woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:01:11 ISO Week 02 |
FORMAT_DATE('%g:%m:%d ISO Week %V', CURRENT_DATE) -- Iy:mm:dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24:01:11 ISO Week 02 |
FORMAT_DATE('%g:%m:%e ISO Week %V', CURRENT_DATE) -- Iy:mm: d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24:01:11 ISO Week 02 |
FORMAT_DATE('%Y:%B:%d ISO Week %V', CURRENT_DATE) -- yyyy:month:dd iso-woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:January:11 ISO Week 02 |
FORMAT_DATE('%Y:%B:%e ISO Week %V', CURRENT_DATE) -- yyyy:month: d iso-woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:January:11 ISO Week 02 |
FORMAT_DATE('%Y:%b:%d ISO Week %V', CURRENT_DATE) -- yyyy:mon:dd iso-woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:Jan:11 ISO Week 02 |
FORMAT_DATE('%Y:%b:%e ISO Week %V', CURRENT_DATE) -- yyyy:mon: d iso-woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:Jan:11 ISO Week 02 |
FORMAT_DATE('%Y:%h:%d ISO Week %V', CURRENT_DATE) -- yyyy:mon:dd iso-woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:Jan:11 ISO Week 02 |
FORMAT_DATE('%Y:%h:%e ISO Week %V', CURRENT_DATE) -- yyyy:mon:-dd iso-woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:Jan:11 ISO Week 02 |
FORMAT_DATE('%E4Y:%B:%d ISO Week %V', CURRENT_DATE) -- yyyy:month:dd iso-woy Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:January:11 ISO Week 02 |
FORMAT_DATE('%E4Y:%B:%e ISO Week %V', CURRENT_DATE) -- yyyy:month: d iso-woy Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:January:11 ISO Week 02 |
FORMAT_DATE('%E4Y:%b:%d ISO Week %V', CURRENT_DATE) -- yyyy:mon:dd iso-woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:Jan:11 ISO Week 02 |
FORMAT_DATE('%E4Y:%b:%e ISO Week %V', CURRENT_DATE) -- yyyy:mon: d iso-woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:Jan:11 ISO Week 02 |
FORMAT_DATE('%E4Y:%h:%d ISO Week %V', CURRENT_DATE) -- yyyy:mon:dd iso-woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:Jan:11 ISO Week 02 |
FORMAT_DATE('%E4Y:%h:%e ISO Week %V', CURRENT_DATE) -- yyyy:mon: d iso-woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:Jan:11 ISO Week 02 |
FORMAT_DATE('%y:%B:%d ISO Week %V', CURRENT_DATE) -- yy:month:dd iso-woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24:January:11 ISO Week 02 |
FORMAT_DATE('%y:%B:%e ISO Week %V', CURRENT_DATE) -- yy:month: d iso-woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24:January:11 ISO Week 02 |
FORMAT_DATE('%y:%b:%d ISO Week %V', CURRENT_DATE) -- yy:mon:dd iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24:Jan:11 ISO Week 02 |
FORMAT_DATE('%y:%b:%e ISO Week %V', CURRENT_DATE) -- yy:mon: d iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24:Jan:11 ISO Week 02 |
FORMAT_DATE('%y:%h:%d ISO Week %V', CURRENT_DATE) -- yy:mon:dd iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24:Jan:11 ISO Week 02 |
FORMAT_DATE('%y:%h:%e ISO Week %V', CURRENT_DATE) -- yy:mon: d iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24:Jan:11 ISO Week 02 |
FORMAT_DATE('%G:%B:%d ISO Week %V', CURRENT_DATE) -- Iy:month:dd iso-woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:January:11 ISO Week 02 |
FORMAT_DATE('%G:%B:%e ISO Week %V', CURRENT_DATE) -- Iy:month: d iso-woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:January:11 ISO Week 02 |
FORMAT_DATE('%G:%b:%d ISO Week %V', CURRENT_DATE) -- Iy:mon:dd iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:Jan:11 ISO Week 02 |
FORMAT_DATE('%G:%b:%e ISO Week %V', CURRENT_DATE) -- Iy:mon: d iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:Jan:11 ISO Week 02 |
FORMAT_DATE('%G:%h:%d ISO Week %V', CURRENT_DATE) -- Iy:mon:dd iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:Jan:11 ISO Week 02 |
FORMAT_DATE('%G:%h:%e ISO Week %V', CURRENT_DATE) -- Iy:mon: d iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:Jan:11 ISO Week 02 |
FORMAT_DATE('%g:%B:%d ISO Week %V', CURRENT_DATE) -- Iyyy:month:dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24:January:11 ISO Week 02 |
FORMAT_DATE('%g:%B:%e ISO Week %V', CURRENT_DATE) -- Iyyy:month: d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24:January:11 ISO Week 02 |
FORMAT_DATE('%g:%b:%d ISO Week %V', CURRENT_DATE) -- Iyyy:mon:dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24:Jan:11 ISO Week 02 |
FORMAT_DATE('%g:%b:%e ISO Week %V', CURRENT_DATE) -- Iyyy:mon: d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24:Jan:11 ISO Week 02 |
FORMAT_DATE('%g:%h:%d ISO Week %V', CURRENT_DATE) -- Iyyy:mon:-dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24:Jan:11 ISO Week 02 |
FORMAT_DATE('%g:%h:%e ISO Week %V', CURRENT_DATE) -- Iyyy:mon: d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24:Jan:11 ISO Week 02 |
FORMAT_DATE('%Y.%m.%d ISO Week %V', CURRENT_DATE) -- yyyy.mm.dd iso-woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.01.11 ISO Week 02 |
FORMAT_DATE('%Y.%m.%e ISO Week %V', CURRENT_DATE) -- yyyy.mm. d iso-woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.01.11 ISO Week 02 |
FORMAT_DATE('%E4Y.%m.%d ISO Week %V', CURRENT_DATE) -- yyyy.mm.-dd iso-woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.01.11 ISO Week 02 |
FORMAT_DATE('%E4Y.%m.%e ISO Week %V', CURRENT_DATE) -- yyyy.mm. d iso-woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.01.11 ISO Week 02 |
FORMAT_DATE('%y.%m.%d ISO Week %V', CURRENT_DATE) -- yy.mm.dd iso-woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24.01.11 ISO Week 02 |
FORMAT_DATE('%y.%m.%e ISO Week %V', CURRENT_DATE) -- yy.mm. d iso-woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24.01.11 ISO Week 02 |
FORMAT_DATE('%G.%m.%d ISO Week %V', CURRENT_DATE) -- Iyyy.mm.dd iso-woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.01.11 ISO Week 02 |
FORMAT_DATE('%G.%m.%e ISO Week %V', CURRENT_DATE) -- Iyyy.mm. d iso-woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.01.11 ISO Week 02 |
FORMAT_DATE('%g.%m.%d ISO Week %V', CURRENT_DATE) -- Iy.mm.dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24.01.11 ISO Week 02 |
FORMAT_DATE('%g.%m.%e ISO Week %V', CURRENT_DATE) -- Iy.mm. d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24.01.11 ISO Week 02 |
FORMAT_DATE('%Y.%B.%d ISO Week %V', CURRENT_DATE) -- yyyy.month.dd iso-woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.January.11 ISO Week 02 |
FORMAT_DATE('%Y.%B.%e ISO Week %V', CURRENT_DATE) -- yyyy.month. d iso-woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.January.11 ISO Week 02 |
FORMAT_DATE('%Y.%b.%d ISO Week %V', CURRENT_DATE) -- yyyy.mon.dd iso-woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.Jan.11 ISO Week 02 |
FORMAT_DATE('%Y.%b.%e ISO Week %V', CURRENT_DATE) -- yyyy.mon. d iso-woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.Jan.11 ISO Week 02 |
FORMAT_DATE('%Y.%h.%d ISO Week %V', CURRENT_DATE) -- yyyy.mon.dd iso-woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.Jan.11 ISO Week 02 |
FORMAT_DATE('%Y.%h.%e ISO Week %V', CURRENT_DATE) -- yyyy.mon.-dd iso-woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.Jan.11 ISO Week 02 |
FORMAT_DATE('%E4Y.%B.%d ISO Week %V', CURRENT_DATE) -- yyyy.month.dd iso-woy Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.January.11 ISO Week 02 |
FORMAT_DATE('%E4Y.%B.%e ISO Week %V', CURRENT_DATE) -- yyyy.month. d iso-woy Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.January.11 ISO Week 02 |
FORMAT_DATE('%E4Y.%b.%d ISO Week %V', CURRENT_DATE) -- yyyy.mon.dd iso-woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.Jan.11 ISO Week 02 |
FORMAT_DATE('%E4Y.%b.%e ISO Week %V', CURRENT_DATE) -- yyyy.mon. d iso-woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.Jan.11 ISO Week 02 |
FORMAT_DATE('%E4Y.%h.%d ISO Week %V', CURRENT_DATE) -- yyyy.mon.dd iso-woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.Jan.11 ISO Week 02 |
FORMAT_DATE('%E4Y.%h.%e ISO Week %V', CURRENT_DATE) -- yyyy.mon. d iso-woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.Jan.11 ISO Week 02 |
FORMAT_DATE('%y.%B.%d ISO Week %V', CURRENT_DATE) -- yy.month.dd iso-woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24.January.11 ISO Week 02 |
FORMAT_DATE('%y.%B.%e ISO Week %V', CURRENT_DATE) -- yy.month. d iso-woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24.January.11 ISO Week 02 |
FORMAT_DATE('%y.%b.%d ISO Week %V', CURRENT_DATE) -- yy.mon.dd iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24.Jan.11 ISO Week 02 |
FORMAT_DATE('%y.%b.%e ISO Week %V', CURRENT_DATE) -- yy.mon. d iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24.Jan.11 ISO Week 02 |
FORMAT_DATE('%y.%h.%d ISO Week %V', CURRENT_DATE) -- yy.mon.dd iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24.Jan.11 ISO Week 02 |
FORMAT_DATE('%y.%h.%e ISO Week %V', CURRENT_DATE) -- yy.mon. d iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24.Jan.11 ISO Week 02 |
FORMAT_DATE('%G.%B.%d ISO Week %V', CURRENT_DATE) -- Iy.month.dd iso-woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.January.11 ISO Week 02 |
FORMAT_DATE('%G.%B.%e ISO Week %V', CURRENT_DATE) -- Iy.month. d iso-woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.January.11 ISO Week 02 |
FORMAT_DATE('%G.%b.%d ISO Week %V', CURRENT_DATE) -- Iy.mon.dd iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.Jan.11 ISO Week 02 |
FORMAT_DATE('%G.%b.%e ISO Week %V', CURRENT_DATE) -- Iy.mon. d iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.Jan.11 ISO Week 02 |
FORMAT_DATE('%G.%h.%d ISO Week %V', CURRENT_DATE) -- Iy.mon.dd iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.Jan.11 ISO Week 02 |
FORMAT_DATE('%G.%h.%e ISO Week %V', CURRENT_DATE) -- Iy.mon. d iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.Jan.11 ISO Week 02 |
FORMAT_DATE('%g.%B.%d ISO Week %V', CURRENT_DATE) -- Iyyy.month.dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24.January.11 ISO Week 02 |
FORMAT_DATE('%g.%B.%e ISO Week %V', CURRENT_DATE) -- Iyyy.month. d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24.January.11 ISO Week 02 |
FORMAT_DATE('%g.%b.%d ISO Week %V', CURRENT_DATE) -- Iyyy.mon.dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24.Jan.11 ISO Week 02 |
FORMAT_DATE('%g.%b.%e ISO Week %V', CURRENT_DATE) -- Iyyy.mon. d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24.Jan.11 ISO Week 02 |
FORMAT_DATE('%g.%h.%d ISO Week %V', CURRENT_DATE) -- Iyyy.mon.-dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24.Jan.11 ISO Week 02 |
FORMAT_DATE('%g.%h.%e ISO Week %V', CURRENT_DATE) -- Iyyy.mon. d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24.Jan.11 ISO Week 02 |
FORMAT_DATE('%Y %m %d ISO Week %V', CURRENT_DATE) -- yyyy mm dd iso-woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 01 11 ISO Week 02 |
FORMAT_DATE('%Y %m %e ISO Week %V', CURRENT_DATE) -- yyyy mm d iso-woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 01 11 ISO Week 02 |
FORMAT_DATE('%E4Y %m %d ISO Week %V', CURRENT_DATE) -- yyyy mm dd iso-woy Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 01 11 ISO Week 02 |
FORMAT_DATE('%E4Y %m %e ISO Week %V', CURRENT_DATE) -- yyyy mm d iso-woy Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 01 11 ISO Week 02 |
FORMAT_DATE('%y %m %d ISO Week %V', CURRENT_DATE) -- yy mm dd iso-woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24 01 11 ISO Week 02 |
FORMAT_DATE('%y %m %e ISO Week %V', CURRENT_DATE) -- yy mm d iso-woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24 01 11 ISO Week 02 |
FORMAT_DATE('%G %m %d ISO Week %V', CURRENT_DATE) -- Iyyy mm dd iso-woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 01 11 ISO Week 02 |
FORMAT_DATE('%G %m %e ISO Week %V', CURRENT_DATE) -- Iyyy mm d iso-woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 01 11 ISO Week 02 |
FORMAT_DATE('%g %m %d ISO Week %V', CURRENT_DATE) -- Iy mm dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24 01 11 ISO Week 02 |
FORMAT_DATE('%g %m %e ISO Week %V', CURRENT_DATE) -- Iy mm d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24 01 11 ISO Week 02 |
FORMAT_DATE('%Y %B %d ISO Week %V', CURRENT_DATE) -- yyyy month dd iso-woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 January 11 ISO Week 02 |
FORMAT_DATE('%Y %B %e ISO Week %V', CURRENT_DATE) -- yyyy month d iso-woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 January 11 ISO Week 02 |
FORMAT_DATE('%Y %b %d ISO Week %V', CURRENT_DATE) -- yyyy mon dd iso-woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 Jan 11 ISO Week 02 |
FORMAT_DATE('%Y %b %e ISO Week %V', CURRENT_DATE) -- yyyy mon d iso-woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 Jan 11 ISO Week 02 |
FORMAT_DATE('%Y %h %d ISO Week %V', CURRENT_DATE) -- yyyy mon dd iso-woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 Jan 11 ISO Week 02 |
FORMAT_DATE('%Y %h %e ISO Week %V', CURRENT_DATE) -- yyyy mon -dd iso-woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 Jan 11 ISO Week 02 |
FORMAT_DATE('%E4Y %B %d ISO Week %V', CURRENT_DATE) -- yyyy month dd iso-woy Four-character years (0001 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 January 11 ISO Week 02 |
FORMAT_DATE('%E4Y %B %e ISO Week %V', CURRENT_DATE) -- yyyy month d iso-woy Four-character years (0001 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 January 11 ISO Week 02 |
FORMAT_DATE('%E4Y %b %d ISO Week %V', CURRENT_DATE) -- yyyy mon dd iso-woy Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 Jan 11 ISO Week 02 |
FORMAT_DATE('%E4Y %b %e ISO Week %V', CURRENT_DATE) -- yyyy mon d iso-woy Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 Jan 11 ISO Week 02 |
FORMAT_DATE('%E4Y %h %d ISO Week %V', CURRENT_DATE) -- yyyy mon dd iso-woy Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 Jan 11 ISO Week 02 |
FORMAT_DATE('%E4Y %h %e ISO Week %V', CURRENT_DATE) -- yyyy mon d iso-woy Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 Jan 11 ISO Week 02 |
FORMAT_DATE('%y %B %d ISO Week %V', CURRENT_DATE) -- yy month dd iso-woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24 January 11 ISO Week 02 |
FORMAT_DATE('%y %B %e ISO Week %V', CURRENT_DATE) -- yy month d iso-woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24 January 11 ISO Week 02 |
FORMAT_DATE('%y %b %d ISO Week %V', CURRENT_DATE) -- yy mon dd iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24 Jan 11 ISO Week 02 |
FORMAT_DATE('%y %b %e ISO Week %V', CURRENT_DATE) -- yy mon d iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24 Jan 11 ISO Week 02 |
FORMAT_DATE('%y %h %d ISO Week %V', CURRENT_DATE) -- yy mon dd iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24 Jan 11 ISO Week 02 |
FORMAT_DATE('%y %h %e ISO Week %V', CURRENT_DATE) -- yy mon d iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24 Jan 11 ISO Week 02 |
FORMAT_DATE('%G %B %d ISO Week %V', CURRENT_DATE) -- Iy month dd iso-woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 January 11 ISO Week 02 |
FORMAT_DATE('%G %B %e ISO Week %V', CURRENT_DATE) -- Iy month d iso-woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 January 11 ISO Week 02 |
FORMAT_DATE('%G %b %d ISO Week %V', CURRENT_DATE) -- Iy mon dd iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 Jan 11 ISO Week 02 |
FORMAT_DATE('%G %b %e ISO Week %V', CURRENT_DATE) -- Iy mon d iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 Jan 11 ISO Week 02 |
FORMAT_DATE('%G %h %d ISO Week %V', CURRENT_DATE) -- Iy mon dd iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 Jan 11 ISO Week 02 |
FORMAT_DATE('%G %h %e ISO Week %V', CURRENT_DATE) -- Iy mon d iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 Jan 11 ISO Week 02 |
FORMAT_DATE('%g %B %d ISO Week %V', CURRENT_DATE) -- Iyyy month dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24 January 11 ISO Week 02 |
FORMAT_DATE('%g %B %e ISO Week %V', CURRENT_DATE) -- Iyyy month d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24 January 11 ISO Week 02 |
FORMAT_DATE('%g %b %d ISO Week %V', CURRENT_DATE) -- Iyyy mon dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24 Jan 11 ISO Week 02 |
FORMAT_DATE('%g %b %e ISO Week %V', CURRENT_DATE) -- Iyyy mon d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24 Jan 11 ISO Week 02 |
FORMAT_DATE('%g %h %d ISO Week %V', CURRENT_DATE) -- Iyyy mon dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24 Jan 11 ISO Week 02 |
FORMAT_DATE('%g %h %e ISO Week %V', CURRENT_DATE) -- Iyyy mon d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24 Jan 11 ISO Week 02 |
FORMAT_DATE('%Y%m%d ISO Week %V', CURRENT_DATE) -- yyyymmdd iso-woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 20240111 ISO Week 02 |
FORMAT_DATE('%Y%m%e ISO Week %V', CURRENT_DATE) -- yyyymm d iso-woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 20240111 ISO Week 02 |
FORMAT_DATE('%E4Y%m%d ISO Week %V', CURRENT_DATE) -- yyyymmdd iso-woy Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 20240111 ISO Week 02 |
FORMAT_DATE('%E4Y%m%e ISO Week %V', CURRENT_DATE) -- yyyymm d iso-woy Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 20240111 ISO Week 02 |
FORMAT_DATE('%y%m%d ISO Week %V', CURRENT_DATE) -- yymmdd iso-woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 240111 ISO Week 02 |
FORMAT_DATE('%y%m%e ISO Week %V', CURRENT_DATE) -- yymm d iso-woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 240111 ISO Week 02 |
FORMAT_DATE('%G%m%d ISO Week %V', CURRENT_DATE) -- Iyyymmdd iso-woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 20240111 ISO Week 02 |
FORMAT_DATE('%G%m%e ISO Week %V', CURRENT_DATE) -- Iyyymm d iso-woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 20240111 ISO Week 02 |
FORMAT_DATE('%g%m%d ISO Week %V', CURRENT_DATE) -- Iymmdd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 240111 ISO Week 02 |
FORMAT_DATE('%g%m%e ISO Week %V', CURRENT_DATE) -- Iymm d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 240111 ISO Week 02 |
FORMAT_DATE('%Y%B%d ISO Week %V', CURRENT_DATE) -- yyyymonthdd iso-woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024January11 ISO Week 02 |
FORMAT_DATE('%Y%B%e ISO Week %V', CURRENT_DATE) -- yyyymonth d iso-woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024January11 ISO Week 02 |
FORMAT_DATE('%Y%b%d ISO Week %V', CURRENT_DATE) -- yyyymondd iso-woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024Jan11 ISO Week 02 |
FORMAT_DATE('%Y%b%e ISO Week %V', CURRENT_DATE) -- yyyymon d iso-woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024Jan11 ISO Week 02 |
FORMAT_DATE('%Y%h%d ISO Week %V', CURRENT_DATE) -- yyyymondd iso-woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024Jan11 ISO Week 02 |
FORMAT_DATE('%Y%h%e ISO Week %V', CURRENT_DATE) -- yyyymon-dd iso-woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024Jan11 ISO Week 02 |
FORMAT_DATE('%E4Y%B%d ISO Week %V', CURRENT_DATE) -- yyyymonthdd iso-woy Four-character years (0001 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024January11 ISO Week 02 |
FORMAT_DATE('%E4Y%B%e ISO Week %V', CURRENT_DATE) -- yyyymonth d iso-woy Four-character years (0001 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024January11 ISO Week 02 |
FORMAT_DATE('%E4Y%b%d ISO Week %V', CURRENT_DATE) -- yyyymondd iso-woy Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024Jan11 ISO Week 02 |
FORMAT_DATE('%E4Y%b%e ISO Week %V', CURRENT_DATE) -- yyyymon d iso-woy Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024Jan11 ISO Week 02 |
FORMAT_DATE('%E4Y%h%d ISO Week %V', CURRENT_DATE) -- yyyymondd iso-woy Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024Jan11 ISO Week 02 |
FORMAT_DATE('%E4Y%h%e ISO Week %V', CURRENT_DATE) -- yyyymon d iso-woy Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024Jan11 ISO Week 02 |
FORMAT_DATE('%y%B%d ISO Week %V', CURRENT_DATE) -- yymonthdd iso-woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24January11 ISO Week 02 |
FORMAT_DATE('%y%B%e ISO Week %V', CURRENT_DATE) -- yymonth d iso-woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24January11 ISO Week 02 |
FORMAT_DATE('%y%b%d ISO Week %V', CURRENT_DATE) -- yymondd iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24Jan11 ISO Week 02 |
FORMAT_DATE('%y%b%e ISO Week %V', CURRENT_DATE) -- yymon d iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24Jan11 ISO Week 02 |
FORMAT_DATE('%y%h%d ISO Week %V', CURRENT_DATE) -- yymondd iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24Jan11 ISO Week 02 |
FORMAT_DATE('%y%h%e ISO Week %V', CURRENT_DATE) -- yymon d iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24Jan11 ISO Week 02 |
FORMAT_DATE('%G%B%d ISO Week %V', CURRENT_DATE) -- Iymonthdd iso-woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024January11 ISO Week 02 |
FORMAT_DATE('%G%B%e ISO Week %V', CURRENT_DATE) -- Iymonth d iso-woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024January11 ISO Week 02 |
FORMAT_DATE('%G%b%d ISO Week %V', CURRENT_DATE) -- Iymondd iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024Jan11 ISO Week 02 |
FORMAT_DATE('%G%b%e ISO Week %V', CURRENT_DATE) -- Iymon d iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024Jan11 ISO Week 02 |
FORMAT_DATE('%G%h%d ISO Week %V', CURRENT_DATE) -- Iymondd iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024Jan11 ISO Week 02 |
FORMAT_DATE('%G%h%e ISO Week %V', CURRENT_DATE) -- Iymon d iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024Jan11 ISO Week 02 |
FORMAT_DATE('%g%B%d ISO Week %V', CURRENT_DATE) -- Iyyymonthdd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24January11 ISO Week 02 |
FORMAT_DATE('%g%B%e ISO Week %V', CURRENT_DATE) -- Iyyymonth d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24January11 ISO Week 02 |
FORMAT_DATE('%g%b%d ISO Week %V', CURRENT_DATE) -- Iyyymondd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24Jan11 ISO Week 02 |
FORMAT_DATE('%g%b%e ISO Week %V', CURRENT_DATE) -- Iyyymon d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24Jan11 ISO Week 02 |
FORMAT_DATE('%g%h%d ISO Week %V', CURRENT_DATE) -- Iyyymon-dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24Jan11 ISO Week 02 |
FORMAT_DATE('%g%h%e ISO Week %V', CURRENT_DATE) -- Iyyymon d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24Jan11 ISO Week 02 |
FORMAT_DATE('%d-%m-%Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number | 11-01-2024 |
FORMAT_DATE('%d-%m-%E4Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 ... 9999) | 11-01-2024 |
FORMAT_DATE('%d-%m-%y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) | 11-01-24 |
FORMAT_DATE('%d-%m-%G', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number | 11-01-2024 |
FORMAT_DATE('%d-%m-%g', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) | 11-01-24 |
FORMAT_DATE('%d-%B-%Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The year with century as a decimal number | 11-January-2024 |
FORMAT_DATE('%d-%b-%Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number | 11-Jan-2024 |
FORMAT_DATE('%d-%h-%Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number | 11-Jan-2024 |
FORMAT_DATE('%d-%B-%E4Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - Four-character years (0001 ... 9999) | 11-January-2024 |
FORMAT_DATE('%d-%b-%E4Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 ... 9999) | 11-Jan-2024 |
FORMAT_DATE('%d-%h-%E4Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 ... 9999) | 11-Jan-2024 |
FORMAT_DATE('%d-%B-%y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The year without century as a decimal number (00-99) | 11-January-24 |
FORMAT_DATE('%d-%b-%y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) | 11-Jan-24 |
FORMAT_DATE('%d-%h-%y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) | 11-Jan-24 |
FORMAT_DATE('%d-%B-%G', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The ISO 8601 year with century as a decimal number | 11-January-2024 |
FORMAT_DATE('%d-%b-%G', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number | 11-Jan-2024 |
FORMAT_DATE('%d-%h-%G', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number | 11-Jan-2024 |
FORMAT_DATE('%d-%B-%g', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) | 11-January-24 |
FORMAT_DATE('%d-%b-%g', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) | 11-Jan-24 |
FORMAT_DATE('%d-%h-%g', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) | 11-Jan-24 |
FORMAT_DATE('%d-%m-%Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, day of year | 11-01-2024 Day 011 |
FORMAT_DATE('%d-%m-%E4Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 ... 9999) - Plus, day of year | 11-01-2024 Day 011 |
FORMAT_DATE('%d-%m-%y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, day of year | 11-01-24 Day 011 |
FORMAT_DATE('%d-%m-%G Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, day of year | 11-01-2024 Day 011 |
FORMAT_DATE('%d-%m-%g Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11-01-24 Day 011 |
FORMAT_DATE('%d-%B-%Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The year with century as a decimal number - Plus, day of year | 11-January-2024 Day 011 |
FORMAT_DATE('%d-%b-%Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of year | 11-Jan-2024 Day 011 |
FORMAT_DATE('%d-%h-%Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of year | 11-Jan-2024 Day 011 |
FORMAT_DATE('%d-%B-%E4Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - Four-character years (0001 ... 9999) - Plus, day of year | 11-January-2024 Day 011 |
FORMAT_DATE('%d-%b-%E4Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 ... 9999) - Plus, day of year | 11-Jan-2024 Day 011 |
FORMAT_DATE('%d-%h-%E4Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 ... 9999) - Plus, day of year | 11-Jan-2024 Day 011 |
FORMAT_DATE('%d-%B-%y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The year without century as a decimal number (00-99) - Plus, day of year | 11-January-24 Day 011 |
FORMAT_DATE('%d-%b-%y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of year | 11-Jan-24 Day 011 |
FORMAT_DATE('%d-%h-%y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of year | 11-Jan-24 Day 011 |
FORMAT_DATE('%d-%B-%G Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The ISO 8601 year with century as a decimal number - Plus, day of year | 11-January-2024 Day 011 |
FORMAT_DATE('%d-%b-%G Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of year | 11-Jan-2024 Day 011 |
FORMAT_DATE('%d-%h-%G Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of year | 11-Jan-2024 Day 011 |
FORMAT_DATE('%d-%B-%g Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11-January-24 Day 011 |
FORMAT_DATE('%d-%b-%g Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11-Jan-24 Day 011 |
FORMAT_DATE('%d-%h-%g Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11-Jan-24 Day 011 |
FORMAT_DATE('%d/%m/%Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The year with century as a decimal number | 11/01/2024 |
FORMAT_DATE('%d/%m/%E4Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / Four-character years (0001 ... 9999) | 11/01/2024 |
FORMAT_DATE('%d/%m/%y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The year without century as a decimal number (00-99) | 11/01/24 |
FORMAT_DATE('%d/%m/%G', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The ISO 8601 year with century as a decimal number | 11/01/2024 |
FORMAT_DATE('%d/%m/%g', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) | 11/01/24 |
FORMAT_DATE('%d/%B/%Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - / The year with century as a decimal number | 11/January/2024 |
FORMAT_DATE('%d/%b/%Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year with century as a decimal number | 11/Jan/2024 |
FORMAT_DATE('%d/%h/%Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year with century as a decimal number | 11/Jan/2024 |
FORMAT_DATE('%d/%B/%E4Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - / Four-character years (0001 ... 9999) | 11/January/2024 |
FORMAT_DATE('%d/%b/%E4Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / Four-character years (0001 ... 9999) | 11/Jan/2024 |
FORMAT_DATE('%d/%h/%E4Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / Four-character years (0001 ... 9999) | 11/Jan/2024 |
FORMAT_DATE('%d/%B/%y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - / The year without century as a decimal number (00-99) | 11/January/24 |
FORMAT_DATE('%d/%b/%y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year without century as a decimal number (00-99) | 11/Jan/24 |
FORMAT_DATE('%d/%h/%y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year without century as a decimal number (00-99) | 11/Jan/24 |
FORMAT_DATE('%d/%B/%G', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - / The ISO 8601 year with century as a decimal number | 11/January/2024 |
FORMAT_DATE('%d/%b/%G', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - /- The ISO 8601 year with century as a decimal number | 11/Jan/2024 |
FORMAT_DATE('%d/%h/%G', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The ISO 8601 year with century as a decimal number | 11/Jan/2024 |
FORMAT_DATE('%d/%B/%g', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) | 11/January/24 |
FORMAT_DATE('%d/%b/%g', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) | 11/Jan/24 |
FORMAT_DATE('%d/%h/%g', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) | 11/Jan/24 |
FORMAT_DATE('%d/%m/%Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The year with century as a decimal number - Plus, day of year | 11/01/2024 Day 011 |
FORMAT_DATE('%d/%m/%E4Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - /- Four-character years (0001 ... 9999) - Plus, day of year | 11/01/2024 Day 011 |
FORMAT_DATE('%d/%m/%y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The year without century as a decimal number (00-99) - Plus, day of year | 11/01/24 Day 011 |
FORMAT_DATE('%d/%m/%G Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The ISO 8601 year with century as a decimal number - Plus, day of year | 11/01/2024 Day 011 |
FORMAT_DATE('%d/%m/%g Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11/01/24 Day 011 |
FORMAT_DATE('%d/%B/%Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - / The year with century as a decimal number - Plus, day of year | 11/January/2024 Day 011 |
FORMAT_DATE('%d/%b/%Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year with century as a decimal number - Plus, day of year | 11/Jan/2024 Day 011 |
FORMAT_DATE('%d/%h/%Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year with century as a decimal number - Plus, day of year | 11/Jan/2024 Day 011 |
FORMAT_DATE('%d/%B/%E4Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - / Four-character years (0001 ... 9999) - Plus, day of year | 11/January/2024 Day 011 |
FORMAT_DATE('%d/%b/%E4Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / Four-character years (0001 ... 9999) - Plus, day of year | 11/Jan/2024 Day 011 |
FORMAT_DATE('%d/%h/%E4Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / Four-character years (0001 ... 9999) - Plus, day of year | 11/Jan/2024 Day 011 |
FORMAT_DATE('%d/%B/%y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - / The year without century as a decimal number (00-99) - Plus, day of year | 11/January/24 Day 011 |
FORMAT_DATE('%d/%b/%y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year without century as a decimal number (00-99) - Plus, day of year | 11/Jan/24 Day 011 |
FORMAT_DATE('%d/%h/%y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year without century as a decimal number (00-99) - Plus, day of year | 11/Jan/24 Day 011 |
FORMAT_DATE('%d/%B/%G Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - / The ISO 8601 year with century as a decimal number - Plus, day of year | 11/January/2024 Day 011 |
FORMAT_DATE('%d/%b/%G Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The ISO 8601 year with century as a decimal number - Plus, day of year | 11/Jan/2024 Day 011 |
FORMAT_DATE('%d/%h/%G Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The ISO 8601 year with century as a decimal number - Plus, day of year | 11/Jan/2024 Day 011 |
FORMAT_DATE('%d/%B/%g Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11/January/24 Day 011 |
FORMAT_DATE('%d/%b/%g Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11/Jan/24 Day 011 |
FORMAT_DATE('%d/%h/%g Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) /- The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11/Jan/24 Day 011 |
FORMAT_DATE('%d:%m:%Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The year with century as a decimal number | 11:01:2024 |
FORMAT_DATE('%d:%m:%E4Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : Four-character years (0001 ... 9999) | 11:01:2024 |
FORMAT_DATE('%d:%m:%y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The year without century as a decimal number (00-99) | 11:01:24 |
FORMAT_DATE('%d:%m:%G', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The ISO 8601 year with century as a decimal number | 11:01:2024 |
FORMAT_DATE('%d:%m:%g', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) : The ISO 8601 year without century as a decimal number (00-99) | 11:01:24 |
FORMAT_DATE('%d:%B:%Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - : The year with century as a decimal number | 11:January:2024 |
FORMAT_DATE('%d:%b:%Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year with century as a decimal number | 11:Jan:2024 |
FORMAT_DATE('%d:%h:%Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year with century as a decimal number | 11:Jan:2024 |
FORMAT_DATE('%d:%B:%E4Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - : Four-character years (0001 ... 9999) | 11:January:2024 |
FORMAT_DATE('%d:%b:%E4Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : Four-character years (0001 ... 9999) | 11:Jan:2024 |
FORMAT_DATE('%d:%h:%E4Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : Four-character years (0001 ... 9999) | 11:Jan:2024 |
FORMAT_DATE('%d:%B:%y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - : The year without century as a decimal number (00-99) | 11:January:24 |
FORMAT_DATE('%d:%b:%y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year without century as a decimal number (00-99) | 11:Jan:24 |
FORMAT_DATE('%d:%h:%y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year without century as a decimal number (00-99) | 11:Jan:24 |
FORMAT_DATE('%d:%B:%G', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - : The ISO 8601 year with century as a decimal number | 11:January:2024 |
FORMAT_DATE('%d:%b:%G', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - :- The ISO 8601 year with century as a decimal number | 11:Jan:2024 |
FORMAT_DATE('%d:%h:%G', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The ISO 8601 year with century as a decimal number | 11:Jan:2024 |
FORMAT_DATE('%d:%B:%g', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) | 11:January:24 |
FORMAT_DATE('%d:%b:%g', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) | 11:Jan:24 |
FORMAT_DATE('%d:%h:%g', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) | 11:Jan:24 |
FORMAT_DATE('%d:%m:%Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The year with century as a decimal number - Plus, day of year | 11:01:2024 Day 011 |
FORMAT_DATE('%d:%m:%E4Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - :- Four-character years (0001 ... 9999) - Plus, day of year | 11:01:2024 Day 011 |
FORMAT_DATE('%d:%m:%y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The year without century as a decimal number (00-99) - Plus, day of year | 11:01:24 Day 011 |
FORMAT_DATE('%d:%m:%G Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The ISO 8601 year with century as a decimal number - Plus, day of year | 11:01:2024 Day 011 |
FORMAT_DATE('%d:%m:%g Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11:01:24 Day 011 |
FORMAT_DATE('%d:%B:%Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - : The year with century as a decimal number - Plus, day of year | 11:January:2024 Day 011 |
FORMAT_DATE('%d:%b:%Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year with century as a decimal number - Plus, day of year | 11:Jan:2024 Day 011 |
FORMAT_DATE('%d:%h:%Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year with century as a decimal number - Plus, day of year | 11:Jan:2024 Day 011 |
FORMAT_DATE('%d:%B:%E4Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - : Four-character years (0001 ... 9999) - Plus, day of year | 11:January:2024 Day 011 |
FORMAT_DATE('%d:%b:%E4Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : Four-character years (0001 ... 9999) - Plus, day of year | 11:Jan:2024 Day 011 |
FORMAT_DATE('%d:%h:%E4Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : Four-character years (0001 ... 9999) - Plus, day of year | 11:Jan:2024 Day 011 |
FORMAT_DATE('%d:%B:%y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - : The year without century as a decimal number (00-99) - Plus, day of year | 11:January:24 Day 011 |
FORMAT_DATE('%d:%b:%y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year without century as a decimal number (00-99) - Plus, day of year | 11:Jan:24 Day 011 |
FORMAT_DATE('%d:%h:%y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year without century as a decimal number (00-99) - Plus, day of year | 11:Jan:24 Day 011 |
FORMAT_DATE('%d:%B:%G Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - : The ISO 8601 year with century as a decimal number - Plus, day of year | 11:January:2024 Day 011 |
FORMAT_DATE('%d:%b:%G Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The ISO 8601 year with century as a decimal number - Plus, day of year | 11:Jan:2024 Day 011 |
FORMAT_DATE('%d:%h:%G Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The ISO 8601 year with century as a decimal number - Plus, day of year | 11:Jan:2024 Day 011 |
FORMAT_DATE('%d:%B:%g Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11:January:24 Day 011 |
FORMAT_DATE('%d:%b:%g Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11:Jan:24 Day 011 |
FORMAT_DATE('%d:%h:%g Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) :- The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11:Jan:24 Day 011 |
FORMAT_DATE('%d.%m.%Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The year with century as a decimal number | 11.01.2024 |
FORMAT_DATE('%d.%m.%E4Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . Four-character years (0001 ... 9999) | 11.01.2024 |
FORMAT_DATE('%d.%m.%y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The year without century as a decimal number (00-99) | 11.01.24 |
FORMAT_DATE('%d.%m.%G', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The ISO 8601 year with century as a decimal number | 11.01.2024 |
FORMAT_DATE('%d.%m.%g', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) | 11.01.24 |
FORMAT_DATE('%d.%B.%Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - . The year with century as a decimal number | 11.January.2024 |
FORMAT_DATE('%d.%b.%Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year with century as a decimal number | 11.Jan.2024 |
FORMAT_DATE('%d.%h.%Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year with century as a decimal number | 11.Jan.2024 |
FORMAT_DATE('%d.%B.%E4Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - . Four-character years (0001 ... 9999) | 11.January.2024 |
FORMAT_DATE('%d.%b.%E4Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . Four-character years (0001 ... 9999) | 11.Jan.2024 |
FORMAT_DATE('%d.%h.%E4Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . Four-character years (0001 ... 9999) | 11.Jan.2024 |
FORMAT_DATE('%d.%B.%y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - . The year without century as a decimal number (00-99) | 11.January.24 |
FORMAT_DATE('%d.%b.%y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year without century as a decimal number (00-99) | 11.Jan.24 |
FORMAT_DATE('%d.%h.%y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year without century as a decimal number (00-99) | 11.Jan.24 |
FORMAT_DATE('%d.%B.%G', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - . The ISO 8601 year with century as a decimal number | 11.January.2024 |
FORMAT_DATE('%d.%b.%G', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - .- The ISO 8601 year with century as a decimal number | 11.Jan.2024 |
FORMAT_DATE('%d.%h.%G', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The ISO 8601 year with century as a decimal number | 11.Jan.2024 |
FORMAT_DATE('%d.%B.%g', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) | 11.January.24 |
FORMAT_DATE('%d.%b.%g', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) | 11.Jan.24 |
FORMAT_DATE('%d.%h.%g', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) | 11.Jan.24 |
FORMAT_DATE('%d.%m.%Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The year with century as a decimal number - Plus, day of year | 11.01.2024 Day 011 |
FORMAT_DATE('%d.%m.%E4Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - .- Four-character years (0001 ... 9999) - Plus, day of year | 11.01.2024 Day 011 |
FORMAT_DATE('%d.%m.%y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The year without century as a decimal number (00-99) - Plus, day of year | 11.01.24 Day 011 |
FORMAT_DATE('%d.%m.%G Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The ISO 8601 year with century as a decimal number - Plus, day of year | 11.01.2024 Day 011 |
FORMAT_DATE('%d.%m.%g Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11.01.24 Day 011 |
FORMAT_DATE('%d.%B.%Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - . The year with century as a decimal number - Plus, day of year | 11.January.2024 Day 011 |
FORMAT_DATE('%d.%b.%Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year with century as a decimal number - Plus, day of year | 11.Jan.2024 Day 011 |
FORMAT_DATE('%d.%h.%Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year with century as a decimal number - Plus, day of year | 11.Jan.2024 Day 011 |
FORMAT_DATE('%d.%B.%E4Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - . Four-character years (0001 ... 9999) - Plus, day of year | 11.January.2024 Day 011 |
FORMAT_DATE('%d.%b.%E4Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . Four-character years (0001 ... 9999) - Plus, day of year | 11.Jan.2024 Day 011 |
FORMAT_DATE('%d.%h.%E4Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . Four-character years (0001 ... 9999) - Plus, day of year | 11.Jan.2024 Day 011 |
FORMAT_DATE('%d.%B.%y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - . The year without century as a decimal number (00-99) - Plus, day of year | 11.January.24 Day 011 |
FORMAT_DATE('%d.%b.%y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year without century as a decimal number (00-99) - Plus, day of year | 11.Jan.24 Day 011 |
FORMAT_DATE('%d.%h.%y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year without century as a decimal number (00-99) - Plus, day of year | 11.Jan.24 Day 011 |
FORMAT_DATE('%d.%B.%G Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - . The ISO 8601 year with century as a decimal number - Plus, day of year | 11.January.2024 Day 011 |
FORMAT_DATE('%d.%b.%G Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The ISO 8601 year with century as a decimal number - Plus, day of year | 11.Jan.2024 Day 011 |
FORMAT_DATE('%d.%h.%G Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The ISO 8601 year with century as a decimal number - Plus, day of year | 11.Jan.2024 Day 011 |
FORMAT_DATE('%d.%B.%g Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11.January.24 Day 011 |
FORMAT_DATE('%d.%b.%g Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11.Jan.24 Day 011 |
FORMAT_DATE('%d.%h.%g Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) .- The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11.Jan.24 Day 011 |
FORMAT_DATE('%d %m %Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number | 11 01 2024 |
FORMAT_DATE('%d %m %E4Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 9999) | 11 01 2024 |
FORMAT_DATE('%d %m %y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) | 11 01 24 |
FORMAT_DATE('%d %m %G', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number | 11 01 2024 |
FORMAT_DATE('%d %m %g', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) | 11 01 24 |
FORMAT_DATE('%d %B %Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The year with century as a decimal number | 11 January 2024 |
FORMAT_DATE('%d %b %Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number | 11 Jan 2024 |
FORMAT_DATE('%d %h %Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number | 11 Jan 2024 |
FORMAT_DATE('%d %B %E4Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month Four-character years (0001 9999) | 11 January 2024 |
FORMAT_DATE('%d %b %E4Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) | 11 Jan 2024 |
FORMAT_DATE('%d %h %E4Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) | 11 Jan 2024 |
FORMAT_DATE('%d %B %y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The year without century as a decimal number (00-99) | 11 January 24 |
FORMAT_DATE('%d %b %y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) | 11 Jan 24 |
FORMAT_DATE('%d %h %y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) | 11 Jan 24 |
FORMAT_DATE('%d %B %G', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The ISO 8601 year with century as a decimal number | 11 January 2024 |
FORMAT_DATE('%d %b %G', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - - The ISO 8601 year with century as a decimal number | 11 Jan 2024 |
FORMAT_DATE('%d %h %G', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number | 11 Jan 2024 |
FORMAT_DATE('%d %B %g', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) month The ISO 8601 year without century as a decimal number (00-99) | 11 January 24 |
FORMAT_DATE('%d %b %g', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) | 11 Jan 24 |
FORMAT_DATE('%d %h %g', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) | 11 Jan 24 |
FORMAT_DATE('%d %m %Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, day of year | 11 01 2024 Day 011 |
FORMAT_DATE('%d %m %E4Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - - Four-character years (0001 9999) - Plus, day of year | 11 01 2024 Day 011 |
FORMAT_DATE('%d %m %y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, day of year | 11 01 24 Day 011 |
FORMAT_DATE('%d %m %G Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, day of year | 11 01 2024 Day 011 |
FORMAT_DATE('%d %m %g Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11 01 24 Day 011 |
FORMAT_DATE('%d %B %Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The year with century as a decimal number - Plus, day of year | 11 January 2024 Day 011 |
FORMAT_DATE('%d %b %Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of year | 11 Jan 2024 Day 011 |
FORMAT_DATE('%d %h %Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of year | 11 Jan 2024 Day 011 |
FORMAT_DATE('%d %B %E4Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month Four-character years (0001 9999) - Plus, day of year | 11 January 2024 Day 011 |
FORMAT_DATE('%d %b %E4Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, day of year | 11 Jan 2024 Day 011 |
FORMAT_DATE('%d %h %E4Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, day of year | 11 Jan 2024 Day 011 |
FORMAT_DATE('%d %B %y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The year without century as a decimal number (00-99) - Plus, day of year | 11 January 24 Day 011 |
FORMAT_DATE('%d %b %y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of year | 11 Jan 24 Day 011 |
FORMAT_DATE('%d %h %y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of year | 11 Jan 24 Day 011 |
FORMAT_DATE('%d %B %G Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The ISO 8601 year with century as a decimal number - Plus, day of year | 11 January 2024 Day 011 |
FORMAT_DATE('%d %b %G Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of year | 11 Jan 2024 Day 011 |
FORMAT_DATE('%d %h %G Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of year | 11 Jan 2024 Day 011 |
FORMAT_DATE('%d %B %g Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) month The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11 January 24 Day 011 |
FORMAT_DATE('%d %b %g Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11 Jan 24 Day 011 |
FORMAT_DATE('%d %h %g Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11 Jan 24 Day 011 |
FORMAT_DATE('%d%m%Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number | 11012024 |
FORMAT_DATE('%d%m%E4Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 9999) | 11012024 |
FORMAT_DATE('%d%m%y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) | 110124 |
FORMAT_DATE('%d%m%G', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number | 11012024 |
FORMAT_DATE('%d%m%g', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) | 110124 |
FORMAT_DATE('%d%B%Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The year with century as a decimal number | 11January2024 |
FORMAT_DATE('%d%b%Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number | 11Jan2024 |
FORMAT_DATE('%d%h%Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number | 11Jan2024 |
FORMAT_DATE('%d%B%E4Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month Four-character years (0001 9999) | 11January2024 |
FORMAT_DATE('%d%b%E4Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) | 11Jan2024 |
FORMAT_DATE('%d%h%E4Y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) | 11Jan2024 |
FORMAT_DATE('%d%B%y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The year without century as a decimal number (00-99) | 11January24 |
FORMAT_DATE('%d%b%y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) | 11Jan24 |
FORMAT_DATE('%d%h%y', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) | 11Jan24 |
FORMAT_DATE('%d%B%G', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The ISO 8601 year with century as a decimal number | 11January2024 |
FORMAT_DATE('%d%b%G', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - mon- The ISO 8601 year with century as a decimal number | 11Jan2024 |
FORMAT_DATE('%d%h%G', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number | 11Jan2024 |
FORMAT_DATE('%d%B%g', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) month The ISO 8601 year without century as a decimal number (00-99) | 11January24 |
FORMAT_DATE('%d%b%g', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31)The ISO 8601 year without century as a decimal number (00-99) | 11Jan24 |
FORMAT_DATE('%d%h%g', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31)The ISO 8601 year without century as a decimal number (00-99) | 11Jan24 |
FORMAT_DATE('%d%m%Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, day of year | 11012024 Day 011 |
FORMAT_DATE('%d%m%E4Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - - Four-character years (0001 9999) - Plus, day of year | 11012024 Day 011 |
FORMAT_DATE('%d%m%y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, day of year | 110124 Day 011 |
FORMAT_DATE('%d%m%G Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, day of year | 11012024 Day 011 |
FORMAT_DATE('%d%m%g Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 110124 Day 011 |
FORMAT_DATE('%d%B%Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The year with century as a decimal number - Plus, day of year | 11January2024 Day 011 |
FORMAT_DATE('%d%b%Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of year | 11Jan2024 Day 011 |
FORMAT_DATE('%d%h%Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of year | 11Jan2024 Day 011 |
FORMAT_DATE('%d%B%E4Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month Four-character years (0001 9999) - Plus, day of year | 11January2024 Day 011 |
FORMAT_DATE('%d%b%E4Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, day of year | 11Jan2024 Day 011 |
FORMAT_DATE('%d%h%E4Y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, day of year | 11Jan2024 Day 011 |
FORMAT_DATE('%d%B%y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The year without century as a decimal number (00-99) - Plus, day of year | 11January24 Day 011 |
FORMAT_DATE('%d%b%y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of year | 11Jan24 Day 011 |
FORMAT_DATE('%d%h%y Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of year | 11Jan24 Day 011 |
FORMAT_DATE('%d%B%G Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The ISO 8601 year with century as a decimal number - Plus, day of year | 11January2024 Day 011 |
FORMAT_DATE('%d%b%G Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of year | 11Jan2024 Day 011 |
FORMAT_DATE('%d%h%G Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of year | 11Jan2024 Day 011 |
FORMAT_DATE('%d%B%g Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) month The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11January24 Day 011 |
FORMAT_DATE('%d%b%g Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11Jan24 Day 011 |
FORMAT_DATE('%d%h%g Day %j', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) mon- The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11Jan24 Day 011 |
FORMAT_DATE('%d-%m-%Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, day of the week | 11-01-2024 Thursday |
FORMAT_DATE('%d-%m-%E4Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 ... 9999) - Plus, day of the week | 11-01-2024 Thursday |
FORMAT_DATE('%d-%m-%y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, day of the week | 11-01-24 Thursday |
FORMAT_DATE('%d-%m-%G %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, day of the week | 11-01-2024 Thursday |
FORMAT_DATE('%d-%m-%g %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11-01-24 Thursday |
FORMAT_DATE('%d-%B-%Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The year with century as a decimal number - Plus, day of the week | 11-January-2024 Thursday |
FORMAT_DATE('%d-%b-%Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of the week | 11-Jan-2024 Thursday |
FORMAT_DATE('%d-%h-%Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of the week | 11-Jan-2024 Thursday |
FORMAT_DATE('%d-%B-%E4Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - Four-character years (0001 ... 9999) - Plus, day of the week | 11-January-2024 Thursday |
FORMAT_DATE('%d-%b-%E4Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 ... 9999) - Plus, day of the week | 11-Jan-2024 Thursday |
FORMAT_DATE('%d-%h-%E4Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 ... 9999) - Plus, day of the week | 11-Jan-2024 Thursday |
FORMAT_DATE('%d-%B-%y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The year without century as a decimal number (00-99) - Plus, day of the week | 11-January-24 Thursday |
FORMAT_DATE('%d-%b-%y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of the week | 11-Jan-24 Thursday |
FORMAT_DATE('%d-%h-%y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of the week | 11-Jan-24 Thursday |
FORMAT_DATE('%d-%B-%G %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The ISO 8601 year with century as a decimal number - Plus, day of the week | 11-January-2024 Thursday |
FORMAT_DATE('%d-%b-%G %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of the week | 11-Jan-2024 Thursday |
FORMAT_DATE('%d-%h-%G %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of the week | 11-Jan-2024 Thursday |
FORMAT_DATE('%d-%B-%g %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11-January-24 Thursday |
FORMAT_DATE('%d-%b-%g %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11-Jan-24 Thursday |
FORMAT_DATE('%d-%h-%g %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11-Jan-24 Thursday |
FORMAT_DATE('%d/%m/%Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The year with century as a decimal number - Plus, day of the week | 11/01/2024 Thursday |
FORMAT_DATE('%d/%m/%E4Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - /- Four-character years (0001 ... 9999) - Plus, day of the week | 11/01/2024 Thursday |
FORMAT_DATE('%d/%m/%y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The year without century as a decimal number (00-99) - Plus, day of the week | 11/01/24 Thursday |
FORMAT_DATE('%d/%m/%G %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The ISO 8601 year with century as a decimal number - Plus, day of the week | 11/01/2024 Thursday |
FORMAT_DATE('%d/%m/%g %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11/01/24 Thursday |
FORMAT_DATE('%d/%B/%Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - / The year with century as a decimal number - Plus, day of the week | 11/January/2024 Thursday |
FORMAT_DATE('%d/%b/%Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year with century as a decimal number - Plus, day of the week | 11/Jan/2024 Thursday |
FORMAT_DATE('%d/%h/%Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year with century as a decimal number - Plus, day of the week | 11/Jan/2024 Thursday |
FORMAT_DATE('%d/%B/%E4Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - / Four-character years (0001 ... 9999) - Plus, day of the week | 11/January/2024 Thursday |
FORMAT_DATE('%d/%b/%E4Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / Four-character years (0001 ... 9999) - Plus, day of the week | 11/Jan/2024 Thursday |
FORMAT_DATE('%d/%h/%E4Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / Four-character years (0001 ... 9999) - Plus, day of the week | 11/Jan/2024 Thursday |
FORMAT_DATE('%d/%B/%y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - / The year without century as a decimal number (00-99) - Plus, day of the week | 11/January/24 Thursday |
FORMAT_DATE('%d/%b/%y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year without century as a decimal number (00-99) - Plus, day of the week | 11/Jan/24 Thursday |
FORMAT_DATE('%d/%h/%y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year without century as a decimal number (00-99) - Plus, day of the week | 11/Jan/24 Thursday |
FORMAT_DATE('%d/%B/%G %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - / The ISO 8601 year with century as a decimal number - Plus, day of the week | 11/January/2024 Thursday |
FORMAT_DATE('%d/%b/%G %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The ISO 8601 year with century as a decimal number - Plus, day of the week | 11/Jan/2024 Thursday |
FORMAT_DATE('%d/%h/%G %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The ISO 8601 year with century as a decimal number - Plus, day of the week | 11/Jan/2024 Thursday |
FORMAT_DATE('%d/%B/%g %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11/January/24 Thursday |
FORMAT_DATE('%d/%b/%g %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11/Jan/24 Thursday |
FORMAT_DATE('%d/%h/%g %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) /- The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11/Jan/24 Thursday |
FORMAT_DATE('%d:%m:%Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The year with century as a decimal number - Plus, day of the week | 11:01:2024 Thursday |
FORMAT_DATE('%d:%m:%E4Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - :- Four-character years (0001 ... 9999) - Plus, day of the week | 11:01:2024 Thursday |
FORMAT_DATE('%d:%m:%y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The year without century as a decimal number (00-99) - Plus, day of the week | 11:01:24 Thursday |
FORMAT_DATE('%d:%m:%G %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The ISO 8601 year with century as a decimal number - Plus, day of the week | 11:01:2024 Thursday |
FORMAT_DATE('%d:%m:%g %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11:01:24 Thursday |
FORMAT_DATE('%d:%B:%Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - : The year with century as a decimal number - Plus, day of the week | 11:January:2024 Thursday |
FORMAT_DATE('%d:%b:%Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year with century as a decimal number - Plus, day of the week | 11:Jan:2024 Thursday |
FORMAT_DATE('%d:%h:%Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year with century as a decimal number - Plus, day of the week | 11:Jan:2024 Thursday |
FORMAT_DATE('%d:%B:%E4Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - : Four-character years (0001 ... 9999) - Plus, day of the week | 11:January:2024 Thursday |
FORMAT_DATE('%d:%b:%E4Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : Four-character years (0001 ... 9999) - Plus, day of the week | 11:Jan:2024 Thursday |
FORMAT_DATE('%d:%h:%E4Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : Four-character years (0001 ... 9999) - Plus, day of the week | 11:Jan:2024 Thursday |
FORMAT_DATE('%d:%B:%y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - : The year without century as a decimal number (00-99) - Plus, day of the week | 11:January:24 Thursday |
FORMAT_DATE('%d:%b:%y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year without century as a decimal number (00-99) - Plus, day of the week | 11:Jan:24 Thursday |
FORMAT_DATE('%d:%h:%y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year without century as a decimal number (00-99) - Plus, day of the week | 11:Jan:24 Thursday |
FORMAT_DATE('%d:%B:%G %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - : The ISO 8601 year with century as a decimal number - Plus, day of the week | 11:January:2024 Thursday |
FORMAT_DATE('%d:%b:%G %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The ISO 8601 year with century as a decimal number - Plus, day of the week | 11:Jan:2024 Thursday |
FORMAT_DATE('%d:%h:%G %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The ISO 8601 year with century as a decimal number - Plus, day of the week | 11:Jan:2024 Thursday |
FORMAT_DATE('%d:%B:%g %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11:January:24 Thursday |
FORMAT_DATE('%d:%b:%g %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11:Jan:24 Thursday |
FORMAT_DATE('%d:%h:%g %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) :- The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11:Jan:24 Thursday |
FORMAT_DATE('%d.%m.%Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The year with century as a decimal number - Plus, day of the week | 11.01.2024 Thursday |
FORMAT_DATE('%d.%m.%E4Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - .- Four-character years (0001 ... 9999) - Plus, day of the week | 11.01.2024 Thursday |
FORMAT_DATE('%d.%m.%y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The year without century as a decimal number (00-99) - Plus, day of the week | 11.01.24 Thursday |
FORMAT_DATE('%d.%m.%G %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The ISO 8601 year with century as a decimal number - Plus, day of the week | 11.01.2024 Thursday |
FORMAT_DATE('%d.%m.%g %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11.01.24 Thursday |
FORMAT_DATE('%d.%B.%Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - . The year with century as a decimal number - Plus, day of the week | 11.January.2024 Thursday |
FORMAT_DATE('%d.%b.%Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year with century as a decimal number - Plus, day of the week | 11.Jan.2024 Thursday |
FORMAT_DATE('%d.%h.%Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year with century as a decimal number - Plus, day of the week | 11.Jan.2024 Thursday |
FORMAT_DATE('%d.%B.%E4Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - . Four-character years (0001 ... 9999) - Plus, day of the week | 11.January.2024 Thursday |
FORMAT_DATE('%d.%b.%E4Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . Four-character years (0001 ... 9999) - Plus, day of the week | 11.Jan.2024 Thursday |
FORMAT_DATE('%d.%h.%E4Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . Four-character years (0001 ... 9999) - Plus, day of the week | 11.Jan.2024 Thursday |
FORMAT_DATE('%d.%B.%y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - . The year without century as a decimal number (00-99) - Plus, day of the week | 11.January.24 Thursday |
FORMAT_DATE('%d.%b.%y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year without century as a decimal number (00-99) - Plus, day of the week | 11.Jan.24 Thursday |
FORMAT_DATE('%d.%h.%y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year without century as a decimal number (00-99) - Plus, day of the week | 11.Jan.24 Thursday |
FORMAT_DATE('%d.%B.%G %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - . The ISO 8601 year with century as a decimal number - Plus, day of the week | 11.January.2024 Thursday |
FORMAT_DATE('%d.%b.%G %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The ISO 8601 year with century as a decimal number - Plus, day of the week | 11.Jan.2024 Thursday |
FORMAT_DATE('%d.%h.%G %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The ISO 8601 year with century as a decimal number - Plus, day of the week | 11.Jan.2024 Thursday |
FORMAT_DATE('%d.%B.%g %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11.January.24 Thursday |
FORMAT_DATE('%d.%b.%g %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11.Jan.24 Thursday |
FORMAT_DATE('%d.%h.%g %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) .- The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11.Jan.24 Thursday |
FORMAT_DATE('%d %m %Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, day of the week | 11 01 2024 Thursday |
FORMAT_DATE('%d %m %E4Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 9999) - Plus, day of the week | 11 01 2024 Thursday |
FORMAT_DATE('%d %m %y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, day of the week | 11 01 24 Thursday |
FORMAT_DATE('%d %m %G %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, day of the week | 11 01 2024 Thursday |
FORMAT_DATE('%d %m %g %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11 01 24 Thursday |
FORMAT_DATE('%d %B %Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The year with century as a decimal number - Plus, day of the week | 11 January 2024 Thursday |
FORMAT_DATE('%d %b %Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of the week | 11 Jan 2024 Thursday |
FORMAT_DATE('%d %h %Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of the week | 11 Jan 2024 Thursday |
FORMAT_DATE('%d %B %E4Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month Four-character years (0001 9999) - Plus, day of the week | 11 January 2024 Thursday |
FORMAT_DATE('%d %b %E4Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, day of the week | 11 Jan 2024 Thursday |
FORMAT_DATE('%d %h %E4Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, day of the week | 11 Jan 2024 Thursday |
FORMAT_DATE('%d %B %y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The year without century as a decimal number (00-99) - Plus, day of the week | 11 January 24 Thursday |
FORMAT_DATE('%d %b %y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of the week | 11 Jan 24 Thursday |
FORMAT_DATE('%d %h %y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of the week | 11 Jan 24 Thursday |
FORMAT_DATE('%d %B %G %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The ISO 8601 year with century as a decimal number - Plus, day of the week | 11 January 2024 Thursday |
FORMAT_DATE('%d %b %G %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of the week | 11 Jan 2024 Thursday |
FORMAT_DATE('%d %h %G %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of the week | 11 Jan 2024 Thursday |
FORMAT_DATE('%d %B %g %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) month The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11 January 24 Thursday |
FORMAT_DATE('%d %b %g %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11 Jan 24 Thursday |
FORMAT_DATE('%d %h %g %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11 Jan 24 Thursday |
FORMAT_DATE('%d%m%Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, day of the week | 11012024 Thursday |
FORMAT_DATE('%d%m%E4Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 9999) - Plus, day of the week | 11012024 Thursday |
FORMAT_DATE('%d%m%y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, day of the week | 110124 Thursday |
FORMAT_DATE('%d%m%G %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, day of the week | 11012024 Thursday |
FORMAT_DATE('%d%m%g %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 110124 Thursday |
FORMAT_DATE('%d%B%Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The year with century as a decimal number - Plus, day of the week | 11January2024 Thursday |
FORMAT_DATE('%d%b%Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of the week | 11Jan2024 Thursday |
FORMAT_DATE('%d%h%Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of the week | 11Jan2024 Thursday |
FORMAT_DATE('%d%B%E4Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month Four-character years (0001 9999) - Plus, day of the week | 11January2024 Thursday |
FORMAT_DATE('%d%b%E4Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, day of the week | 11Jan2024 Thursday |
FORMAT_DATE('%d%h%E4Y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, day of the week | 11Jan2024 Thursday |
FORMAT_DATE('%d%B%y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The year without century as a decimal number (00-99) - Plus, day of the week | 11January24 Thursday |
FORMAT_DATE('%d%b%y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of the week | 11Jan24 Thursday |
FORMAT_DATE('%d%h%y %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of the week | 11Jan24 Thursday |
FORMAT_DATE('%d%B%G %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The ISO 8601 year with century as a decimal number - Plus, day of the week | 11January2024 Thursday |
FORMAT_DATE('%d%b%G %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of the week | 11Jan2024 Thursday |
FORMAT_DATE('%d%h%G %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of the week | 11Jan2024 Thursday |
FORMAT_DATE('%d%B%g %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) month The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11January24 Thursday |
FORMAT_DATE('%d%b%g %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11Jan24 Thursday |
FORMAT_DATE('%d%h%g %A', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) mon- The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11Jan24 Thursday |
FORMAT_DATE('%d-%m-%Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, day of the week abbreviated | 11-01-2024 Thu |
FORMAT_DATE('%d-%m-%E4Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 ... 9999) - Plus, day of the week abbreviated | 11-01-2024 Thu |
FORMAT_DATE('%d-%m-%y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11-01-24 Thu |
FORMAT_DATE('%d-%m-%G %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11-01-2024 Thu |
FORMAT_DATE('%d-%m-%g %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11-01-24 Thu |
FORMAT_DATE('%d-%B-%Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The year with century as a decimal number - Plus, day of the week abbreviated | 11-January-2024 Thu |
FORMAT_DATE('%d-%b-%Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of the week abbreviated | 11-Jan-2024 Thu |
FORMAT_DATE('%d-%h-%Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of the week abbreviated | 11-Jan-2024 Thu |
FORMAT_DATE('%d-%B-%E4Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - Four-character years (0001 ... 9999) - Plus, day of the week abbreviated | 11-January-2024 Thu |
FORMAT_DATE('%d-%b-%E4Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 ... 9999) - Plus, day of the week abbreviated | 11-Jan-2024 Thu |
FORMAT_DATE('%d-%h-%E4Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 ... 9999) - Plus, day of the week abbreviated | 11-Jan-2024 Thu |
FORMAT_DATE('%d-%B-%y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11-January-24 Thu |
FORMAT_DATE('%d-%b-%y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11-Jan-24 Thu |
FORMAT_DATE('%d-%h-%y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11-Jan-24 Thu |
FORMAT_DATE('%d-%B-%G %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11-January-2024 Thu |
FORMAT_DATE('%d-%b-%G %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11-Jan-2024 Thu |
FORMAT_DATE('%d-%h-%G %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11-Jan-2024 Thu |
FORMAT_DATE('%d-%B-%g %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11-January-24 Thu |
FORMAT_DATE('%d-%b-%g %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11-Jan-24 Thu |
FORMAT_DATE('%d-%h-%g %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11-Jan-24 Thu |
FORMAT_DATE('%d/%m/%Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The year with century as a decimal number - Plus, day of the week abbreviated | 11/01/2024 Thu |
FORMAT_DATE('%d/%m/%E4Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - /- Four-character years (0001 ... 9999) - Plus, day of the week abbreviated | 11/01/2024 Thu |
FORMAT_DATE('%d/%m/%y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11/01/24 Thu |
FORMAT_DATE('%d/%m/%G %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11/01/2024 Thu |
FORMAT_DATE('%d/%m/%g %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11/01/24 Thu |
FORMAT_DATE('%d/%B/%Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - / The year with century as a decimal number - Plus, day of the week abbreviated | 11/January/2024 Thu |
FORMAT_DATE('%d/%b/%Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year with century as a decimal number - Plus, day of the week abbreviated | 11/Jan/2024 Thu |
FORMAT_DATE('%d/%h/%Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year with century as a decimal number - Plus, day of the week abbreviated | 11/Jan/2024 Thu |
FORMAT_DATE('%d/%B/%E4Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - / Four-character years (0001 ... 9999) - Plus, day of the week abbreviated | 11/January/2024 Thu |
FORMAT_DATE('%d/%b/%E4Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / Four-character years (0001 ... 9999) - Plus, day of the week abbreviated | 11/Jan/2024 Thu |
FORMAT_DATE('%d/%h/%E4Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / Four-character years (0001 ... 9999) - Plus, day of the week abbreviated | 11/Jan/2024 Thu |
FORMAT_DATE('%d/%B/%y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - / The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11/January/24 Thu |
FORMAT_DATE('%d/%b/%y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11/Jan/24 Thu |
FORMAT_DATE('%d/%h/%y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11/Jan/24 Thu |
FORMAT_DATE('%d/%B/%G %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - / The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11/January/2024 Thu |
FORMAT_DATE('%d/%b/%G %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11/Jan/2024 Thu |
FORMAT_DATE('%d/%h/%G %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11/Jan/2024 Thu |
FORMAT_DATE('%d/%B/%g %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11/January/24 Thu |
FORMAT_DATE('%d/%b/%g %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11/Jan/24 Thu |
FORMAT_DATE('%d/%h/%g %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) /- The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11/Jan/24 Thu |
FORMAT_DATE('%d:%m:%Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The year with century as a decimal number - Plus, day of the week abbreviated | 11:01:2024 Thu |
FORMAT_DATE('%d:%m:%E4Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - :- Four-character years (0001 ... 9999) - Plus, day of the week abbreviated | 11:01:2024 Thu |
FORMAT_DATE('%d:%m:%y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11:01:24 Thu |
FORMAT_DATE('%d:%m:%G %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11:01:2024 Thu |
FORMAT_DATE('%d:%m:%g %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11:01:24 Thu |
FORMAT_DATE('%d:%B:%Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - : The year with century as a decimal number - Plus, day of the week abbreviated | 11:January:2024 Thu |
FORMAT_DATE('%d:%b:%Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year with century as a decimal number - Plus, day of the week abbreviated | 11:Jan:2024 Thu |
FORMAT_DATE('%d:%h:%Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year with century as a decimal number - Plus, day of the week abbreviated | 11:Jan:2024 Thu |
FORMAT_DATE('%d:%B:%E4Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - : Four-character years (0001 ... 9999) - Plus, day of the week abbreviated | 11:January:2024 Thu |
FORMAT_DATE('%d:%b:%E4Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : Four-character years (0001 ... 9999) - Plus, day of the week abbreviated | 11:Jan:2024 Thu |
FORMAT_DATE('%d:%h:%E4Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : Four-character years (0001 ... 9999) - Plus, day of the week abbreviated | 11:Jan:2024 Thu |
FORMAT_DATE('%d:%B:%y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - : The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11:January:24 Thu |
FORMAT_DATE('%d:%b:%y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11:Jan:24 Thu |
FORMAT_DATE('%d:%h:%y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11:Jan:24 Thu |
FORMAT_DATE('%d:%B:%G %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - : The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11:January:2024 Thu |
FORMAT_DATE('%d:%b:%G %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11:Jan:2024 Thu |
FORMAT_DATE('%d:%h:%G %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11:Jan:2024 Thu |
FORMAT_DATE('%d:%B:%g %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11:January:24 Thu |
FORMAT_DATE('%d:%b:%g %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11:Jan:24 Thu |
FORMAT_DATE('%d:%h:%g %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) :- The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11:Jan:24 Thu |
FORMAT_DATE('%d.%m.%Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The year with century as a decimal number - Plus, day of the week abbreviated | 11.01.2024 Thu |
FORMAT_DATE('%d.%m.%E4Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - .- Four-character years (0001 ... 9999) - Plus, day of the week abbreviated | 11.01.2024 Thu |
FORMAT_DATE('%d.%m.%y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11.01.24 Thu |
FORMAT_DATE('%d.%m.%G %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11.01.2024 Thu |
FORMAT_DATE('%d.%m.%g %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11.01.24 Thu |
FORMAT_DATE('%d.%B.%Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - . The year with century as a decimal number - Plus, day of the week abbreviated | 11.January.2024 Thu |
FORMAT_DATE('%d.%b.%Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year with century as a decimal number - Plus, day of the week abbreviated | 11.Jan.2024 Thu |
FORMAT_DATE('%d.%h.%Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year with century as a decimal number - Plus, day of the week abbreviated | 11.Jan.2024 Thu |
FORMAT_DATE('%d.%B.%E4Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - . Four-character years (0001 ... 9999) - Plus, day of the week abbreviated | 11.January.2024 Thu |
FORMAT_DATE('%d.%b.%E4Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . Four-character years (0001 ... 9999) - Plus, day of the week abbreviated | 11.Jan.2024 Thu |
FORMAT_DATE('%d.%h.%E4Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . Four-character years (0001 ... 9999) - Plus, day of the week abbreviated | 11.Jan.2024 Thu |
FORMAT_DATE('%d.%B.%y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - . The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11.January.24 Thu |
FORMAT_DATE('%d.%b.%y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11.Jan.24 Thu |
FORMAT_DATE('%d.%h.%y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11.Jan.24 Thu |
FORMAT_DATE('%d.%B.%G %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - . The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11.January.2024 Thu |
FORMAT_DATE('%d.%b.%G %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11.Jan.2024 Thu |
FORMAT_DATE('%d.%h.%G %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11.Jan.2024 Thu |
FORMAT_DATE('%d.%B.%g %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11.January.24 Thu |
FORMAT_DATE('%d.%b.%g %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11.Jan.24 Thu |
FORMAT_DATE('%d.%h.%g %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) .- The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11.Jan.24 Thu |
FORMAT_DATE('%d %m %Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, day of the week abbreviated | 11 01 2024 Thu |
FORMAT_DATE('%d %m %E4Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 9999) - Plus, day of the week abbreviated | 11 01 2024 Thu |
FORMAT_DATE('%d %m %y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11 01 24 Thu |
FORMAT_DATE('%d %m %G %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11 01 2024 Thu |
FORMAT_DATE('%d %m %g %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11 01 24 Thu |
FORMAT_DATE('%d %B %Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The year with century as a decimal number - Plus, day of the week abbreviated | 11 January 2024 Thu |
FORMAT_DATE('%d %b %Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of the week abbreviated | 11 Jan 2024 Thu |
FORMAT_DATE('%d %h %Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of the week abbreviated | 11 Jan 2024 Thu |
FORMAT_DATE('%d %B %E4Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month Four-character years (0001 9999) - Plus, day of the week abbreviated | 11 January 2024 Thu |
FORMAT_DATE('%d %b %E4Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, day of the week abbreviated | 11 Jan 2024 Thu |
FORMAT_DATE('%d %h %E4Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, day of the week abbreviated | 11 Jan 2024 Thu |
FORMAT_DATE('%d %B %y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11 January 24 Thu |
FORMAT_DATE('%d %b %y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11 Jan 24 Thu |
FORMAT_DATE('%d %h %y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11 Jan 24 Thu |
FORMAT_DATE('%d %B %G %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11 January 2024 Thu |
FORMAT_DATE('%d %b %G %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11 Jan 2024 Thu |
FORMAT_DATE('%d %h %G %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11 Jan 2024 Thu |
FORMAT_DATE('%d %B %g %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) month The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11 January 24 Thu |
FORMAT_DATE('%d %b %g %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11 Jan 24 Thu |
FORMAT_DATE('%d %h %g %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11 Jan 24 Thu |
FORMAT_DATE('%d%m%Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, day of the week abbreviated | 11012024 Thu |
FORMAT_DATE('%d%m%E4Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 9999) - Plus, day of the week abbreviated | 11012024 Thu |
FORMAT_DATE('%d%m%y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 110124 Thu |
FORMAT_DATE('%d%m%G %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11012024 Thu |
FORMAT_DATE('%d%m%g %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 110124 Thu |
FORMAT_DATE('%d%B%Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The year with century as a decimal number - Plus, day of the week abbreviated | 11January2024 Thu |
FORMAT_DATE('%d%b%Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of the week abbreviated | 11Jan2024 Thu |
FORMAT_DATE('%d%h%Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of the week abbreviated | 11Jan2024 Thu |
FORMAT_DATE('%d%B%E4Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month Four-character years (0001 9999) - Plus, day of the week abbreviated | 11January2024 Thu |
FORMAT_DATE('%d%b%E4Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, day of the week abbreviated | 11Jan2024 Thu |
FORMAT_DATE('%d%h%E4Y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, day of the week abbreviated | 11Jan2024 Thu |
FORMAT_DATE('%d%B%y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11January24 Thu |
FORMAT_DATE('%d%b%y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11Jan24 Thu |
FORMAT_DATE('%d%h%y %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11Jan24 Thu |
FORMAT_DATE('%d%B%G %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11January2024 Thu |
FORMAT_DATE('%d%b%G %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11Jan2024 Thu |
FORMAT_DATE('%d%h%G %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11Jan2024 Thu |
FORMAT_DATE('%d%B%g %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) month The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11January24 Thu |
FORMAT_DATE('%d%b%g %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11Jan24 Thu |
FORMAT_DATE('%d%h%g %a', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) mon- The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11Jan24 Thu |
FORMAT_DATE('%d-%m-%Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, the quarter | 11-01-2024 Quarter 1 |
FORMAT_DATE('%d-%m-%E4Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 ... 9999) - Plus, the quarter | 11-01-2024 Quarter 1 |
FORMAT_DATE('%d-%m-%y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, the quarter | 11-01-24 Quarter 1 |
FORMAT_DATE('%d-%m-%G Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, the quarter | 11-01-2024 Quarter 1 |
FORMAT_DATE('%d-%m-%g Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11-01-24 Quarter 1 |
FORMAT_DATE('%d-%B-%Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The year with century as a decimal number - Plus, the quarter | 11-January-2024 Quarter 1 |
FORMAT_DATE('%d-%b-%Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the quarter | 11-Jan-2024 Quarter 1 |
FORMAT_DATE('%d-%h-%Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the quarter | 11-Jan-2024 Quarter 1 |
FORMAT_DATE('%d-%B-%E4Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - Four-character years (0001 ... 9999) - Plus, the quarter | 11-January-2024 Quarter 1 |
FORMAT_DATE('%d-%b-%E4Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 ... 9999) - Plus, the quarter | 11-Jan-2024 Quarter 1 |
FORMAT_DATE('%d-%h-%E4Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 ... 9999) - Plus, the quarter | 11-Jan-2024 Quarter 1 |
FORMAT_DATE('%d-%B-%y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The year without century as a decimal number (00-99) - Plus, the quarter | 11-January-24 Quarter 1 |
FORMAT_DATE('%d-%b-%y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the quarter | 11-Jan-24 Quarter 1 |
FORMAT_DATE('%d-%h-%y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the quarter | 11-Jan-24 Quarter 1 |
FORMAT_DATE('%d-%B-%G Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The ISO 8601 year with century as a decimal number - Plus, the quarter | 11-January-2024 Quarter 1 |
FORMAT_DATE('%d-%b-%G Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the quarter | 11-Jan-2024 Quarter 1 |
FORMAT_DATE('%d-%h-%G Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the quarter | 11-Jan-2024 Quarter 1 |
FORMAT_DATE('%d-%B-%g Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11-January-24 Quarter 1 |
FORMAT_DATE('%d-%b-%g Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11-Jan-24 Quarter 1 |
FORMAT_DATE('%d-%h-%g Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11-Jan-24 Quarter 1 |
FORMAT_DATE('%d/%m/%Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The year with century as a decimal number - Plus, the quarter | 11/01/2024 Quarter 1 |
FORMAT_DATE('%d/%m/%E4Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - /- Four-character years (0001 ... 9999) - Plus, the quarter | 11/01/2024 Quarter 1 |
FORMAT_DATE('%d/%m/%y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The year without century as a decimal number (00-99) - Plus, the quarter | 11/01/24 Quarter 1 |
FORMAT_DATE('%d/%m/%G Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The ISO 8601 year with century as a decimal number - Plus, the quarter | 11/01/2024 Quarter 1 |
FORMAT_DATE('%d/%m/%g Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11/01/24 Quarter 1 |
FORMAT_DATE('%d/%B/%Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - / The year with century as a decimal number - Plus, the quarter | 11/January/2024 Quarter 1 |
FORMAT_DATE('%d/%b/%Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year with century as a decimal number - Plus, the quarter | 11/Jan/2024 Quarter 1 |
FORMAT_DATE('%d/%h/%Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year with century as a decimal number - Plus, the quarter | 11/Jan/2024 Quarter 1 |
FORMAT_DATE('%d/%B/%E4Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - / Four-character years (0001 ... 9999) - Plus, the quarter | 11/January/2024 Quarter 1 |
FORMAT_DATE('%d/%b/%E4Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / Four-character years (0001 ... 9999) - Plus, the quarter | 11/Jan/2024 Quarter 1 |
FORMAT_DATE('%d/%h/%E4Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / Four-character years (0001 ... 9999) - Plus, the quarter | 11/Jan/2024 Quarter 1 |
FORMAT_DATE('%d/%B/%y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - / The year without century as a decimal number (00-99) - Plus, the quarter | 11/January/24 Quarter 1 |
FORMAT_DATE('%d/%b/%y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year without century as a decimal number (00-99) - Plus, the quarter | 11/Jan/24 Quarter 1 |
FORMAT_DATE('%d/%h/%y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year without century as a decimal number (00-99) - Plus, the quarter | 11/Jan/24 Quarter 1 |
FORMAT_DATE('%d/%B/%G Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - / The ISO 8601 year with century as a decimal number - Plus, the quarter | 11/January/2024 Quarter 1 |
FORMAT_DATE('%d/%b/%G Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The ISO 8601 year with century as a decimal number - Plus, the quarter | 11/Jan/2024 Quarter 1 |
FORMAT_DATE('%d/%h/%G Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The ISO 8601 year with century as a decimal number - Plus, the quarter | 11/Jan/2024 Quarter 1 |
FORMAT_DATE('%d/%B/%g Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11/January/24 Quarter 1 |
FORMAT_DATE('%d/%b/%g Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11/Jan/24 Quarter 1 |
FORMAT_DATE('%d/%h/%g Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) /- The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11/Jan/24 Quarter 1 |
FORMAT_DATE('%d:%m:%Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The year with century as a decimal number - Plus, the quarter | 11:01:2024 Quarter 1 |
FORMAT_DATE('%d:%m:%E4Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - :- Four-character years (0001 ... 9999) - Plus, the quarter | 11:01:2024 Quarter 1 |
FORMAT_DATE('%d:%m:%y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The year without century as a decimal number (00-99) - Plus, the quarter | 11:01:24 Quarter 1 |
FORMAT_DATE('%d:%m:%G Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The ISO 8601 year with century as a decimal number - Plus, the quarter | 11:01:2024 Quarter 1 |
FORMAT_DATE('%d:%m:%g Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11:01:24 Quarter 1 |
FORMAT_DATE('%d:%B:%Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - : The year with century as a decimal number - Plus, the quarter | 11:January:2024 Quarter 1 |
FORMAT_DATE('%d:%b:%Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year with century as a decimal number - Plus, the quarter | 11:Jan:2024 Quarter 1 |
FORMAT_DATE('%d:%h:%Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year with century as a decimal number - Plus, the quarter | 11:Jan:2024 Quarter 1 |
FORMAT_DATE('%d:%B:%E4Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - : Four-character years (0001 ... 9999) - Plus, the quarter | 11:January:2024 Quarter 1 |
FORMAT_DATE('%d:%b:%E4Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : Four-character years (0001 ... 9999) - Plus, the quarter | 11:Jan:2024 Quarter 1 |
FORMAT_DATE('%d:%h:%E4Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : Four-character years (0001 ... 9999) - Plus, the quarter | 11:Jan:2024 Quarter 1 |
FORMAT_DATE('%d:%B:%y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - : The year without century as a decimal number (00-99) - Plus, the quarter | 11:January:24 Quarter 1 |
FORMAT_DATE('%d:%b:%y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year without century as a decimal number (00-99) - Plus, the quarter | 11:Jan:24 Quarter 1 |
FORMAT_DATE('%d:%h:%y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year without century as a decimal number (00-99) - Plus, the quarter | 11:Jan:24 Quarter 1 |
FORMAT_DATE('%d:%B:%G Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - : The ISO 8601 year with century as a decimal number - Plus, the quarter | 11:January:2024 Quarter 1 |
FORMAT_DATE('%d:%b:%G Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The ISO 8601 year with century as a decimal number - Plus, the quarter | 11:Jan:2024 Quarter 1 |
FORMAT_DATE('%d:%h:%G Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The ISO 8601 year with century as a decimal number - Plus, the quarter | 11:Jan:2024 Quarter 1 |
FORMAT_DATE('%d:%B:%g Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11:January:24 Quarter 1 |
FORMAT_DATE('%d:%b:%g Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11:Jan:24 Quarter 1 |
FORMAT_DATE('%d:%h:%g Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) :- The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11:Jan:24 Quarter 1 |
FORMAT_DATE('%d.%m.%Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The year with century as a decimal number - Plus, the quarter | 11.01.2024 Quarter 1 |
FORMAT_DATE('%d.%m.%E4Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - .- Four-character years (0001 ... 9999) - Plus, the quarter | 11.01.2024 Quarter 1 |
FORMAT_DATE('%d.%m.%y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The year without century as a decimal number (00-99) - Plus, the quarter | 11.01.24 Quarter 1 |
FORMAT_DATE('%d.%m.%G Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The ISO 8601 year with century as a decimal number - Plus, the quarter | 11.01.2024 Quarter 1 |
FORMAT_DATE('%d.%m.%g Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11.01.24 Quarter 1 |
FORMAT_DATE('%d.%B.%Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - . The year with century as a decimal number - Plus, the quarter | 11.January.2024 Quarter 1 |
FORMAT_DATE('%d.%b.%Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year with century as a decimal number - Plus, the quarter | 11.Jan.2024 Quarter 1 |
FORMAT_DATE('%d.%h.%Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year with century as a decimal number - Plus, the quarter | 11.Jan.2024 Quarter 1 |
FORMAT_DATE('%d.%B.%E4Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - . Four-character years (0001 ... 9999) - Plus, the quarter | 11.January.2024 Quarter 1 |
FORMAT_DATE('%d.%b.%E4Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . Four-character years (0001 ... 9999) - Plus, the quarter | 11.Jan.2024 Quarter 1 |
FORMAT_DATE('%d.%h.%E4Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . Four-character years (0001 ... 9999) - Plus, the quarter | 11.Jan.2024 Quarter 1 |
FORMAT_DATE('%d.%B.%y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - . The year without century as a decimal number (00-99) - Plus, the quarter | 11.January.24 Quarter 1 |
FORMAT_DATE('%d.%b.%y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year without century as a decimal number (00-99) - Plus, the quarter | 11.Jan.24 Quarter 1 |
FORMAT_DATE('%d.%h.%y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year without century as a decimal number (00-99) - Plus, the quarter | 11.Jan.24 Quarter 1 |
FORMAT_DATE('%d.%B.%G Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - . The ISO 8601 year with century as a decimal number - Plus, the quarter | 11.January.2024 Quarter 1 |
FORMAT_DATE('%d.%b.%G Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The ISO 8601 year with century as a decimal number - Plus, the quarter | 11.Jan.2024 Quarter 1 |
FORMAT_DATE('%d.%h.%G Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The ISO 8601 year with century as a decimal number - Plus, the quarter | 11.Jan.2024 Quarter 1 |
FORMAT_DATE('%d.%B.%g Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11.January.24 Quarter 1 |
FORMAT_DATE('%d.%b.%g Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11.Jan.24 Quarter 1 |
FORMAT_DATE('%d.%h.%g Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) .- The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11.Jan.24 Quarter 1 |
FORMAT_DATE('%d %m %Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, the quarter | 11 01 2024 Quarter 1 |
FORMAT_DATE('%d %m %E4Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 9999) - Plus, the quarter | 11 01 2024 Quarter 1 |
FORMAT_DATE('%d %m %y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, the quarter | 11 01 24 Quarter 1 |
FORMAT_DATE('%d %m %G Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, the quarter | 11 01 2024 Quarter 1 |
FORMAT_DATE('%d %m %g Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11 01 24 Quarter 1 |
FORMAT_DATE('%d %B %Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The year with century as a decimal number - Plus, the quarter | 11 January 2024 Quarter 1 |
FORMAT_DATE('%d %b %Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the quarter | 11 Jan 2024 Quarter 1 |
FORMAT_DATE('%d %h %Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the quarter | 11 Jan 2024 Quarter 1 |
FORMAT_DATE('%d %B %E4Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month Four-character years (0001 9999) - Plus, the quarter | 11 January 2024 Quarter 1 |
FORMAT_DATE('%d %b %E4Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, the quarter | 11 Jan 2024 Quarter 1 |
FORMAT_DATE('%d %h %E4Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, the quarter | 11 Jan 2024 Quarter 1 |
FORMAT_DATE('%d %B %y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The year without century as a decimal number (00-99) - Plus, the quarter | 11 January 24 Quarter 1 |
FORMAT_DATE('%d %b %y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the quarter | 11 Jan 24 Quarter 1 |
FORMAT_DATE('%d %h %y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the quarter | 11 Jan 24 Quarter 1 |
FORMAT_DATE('%d %B %G Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The ISO 8601 year with century as a decimal number - Plus, the quarter | 11 January 2024 Quarter 1 |
FORMAT_DATE('%d %b %G Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the quarter | 11 Jan 2024 Quarter 1 |
FORMAT_DATE('%d %h %G Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the quarter | 11 Jan 2024 Quarter 1 |
FORMAT_DATE('%d %B %g Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) month The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11 January 24 Quarter 1 |
FORMAT_DATE('%d %b %g Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11 Jan 24 Quarter 1 |
FORMAT_DATE('%d %h %g Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11 Jan 24 Quarter 1 |
FORMAT_DATE('%d%m%Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, the quarter | 11012024 Quarter 1 |
FORMAT_DATE('%d%m%E4Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 9999) - Plus, the quarter | 11012024 Quarter 1 |
FORMAT_DATE('%d%m%y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, the quarter | 110124 Quarter 1 |
FORMAT_DATE('%d%m%G Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, the quarter | 11012024 Quarter 1 |
FORMAT_DATE('%d%m%g Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 110124 Quarter 1 |
FORMAT_DATE('%d%B%Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The year with century as a decimal number - Plus, the quarter | 11January2024 Quarter 1 |
FORMAT_DATE('%d%b%Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the quarter | 11Jan2024 Quarter 1 |
FORMAT_DATE('%d%h%Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the quarter | 11Jan2024 Quarter 1 |
FORMAT_DATE('%d%B%E4Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month Four-character years (0001 9999) - Plus, the quarter | 11January2024 Quarter 1 |
FORMAT_DATE('%d%b%E4Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, the quarter | 11Jan2024 Quarter 1 |
FORMAT_DATE('%d%h%E4Y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, the quarter | 11Jan2024 Quarter 1 |
FORMAT_DATE('%d%B%y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The year without century as a decimal number (00-99) - Plus, the quarter | 11January24 Quarter 1 |
FORMAT_DATE('%d%b%y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the quarter | 11Jan24 Quarter 1 |
FORMAT_DATE('%d%h%y Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the quarter | 11Jan24 Quarter 1 |
FORMAT_DATE('%d%B%G Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The ISO 8601 year with century as a decimal number - Plus, the quarter | 11January2024 Quarter 1 |
FORMAT_DATE('%d%b%G Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the quarter | 11Jan2024 Quarter 1 |
FORMAT_DATE('%d%h%G Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the quarter | 11Jan2024 Quarter 1 |
FORMAT_DATE('%d%B%g Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) month The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11January24 Quarter 1 |
FORMAT_DATE('%d%b%g Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11Jan24 Quarter 1 |
FORMAT_DATE('%d%h%g Quarter %Q', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) mon- The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11Jan24 Quarter 1 |
FORMAT_DATE('%d-%m-%Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11-01-2024 Week 01 |
FORMAT_DATE('%d-%m-%E4Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 ... 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11-01-2024 Week 01 |
FORMAT_DATE('%d-%m-%y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11-01-24 Week 01 |
FORMAT_DATE('%d-%m-%G Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11-01-2024 Week 01 |
FORMAT_DATE('%d-%m-%g Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11-01-24 Week 01 |
FORMAT_DATE('%d-%B-%Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11-January-2024 Week 01 |
FORMAT_DATE('%d-%b-%Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11-Jan-2024 Week 01 |
FORMAT_DATE('%d-%h-%Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11-Jan-2024 Week 01 |
FORMAT_DATE('%d-%B-%E4Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - Four-character years (0001 ... 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11-January-2024 Week 01 |
FORMAT_DATE('%d-%b-%E4Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 ... 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11-Jan-2024 Week 01 |
FORMAT_DATE('%d-%h-%E4Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 ... 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11-Jan-2024 Week 01 |
FORMAT_DATE('%d-%B-%y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11-January-24 Week 01 |
FORMAT_DATE('%d-%b-%y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11-Jan-24 Week 01 |
FORMAT_DATE('%d-%h-%y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11-Jan-24 Week 01 |
FORMAT_DATE('%d-%B-%G Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11-January-2024 Week 01 |
FORMAT_DATE('%d-%b-%G Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11-Jan-2024 Week 01 |
FORMAT_DATE('%d-%h-%G Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11-Jan-2024 Week 01 |
FORMAT_DATE('%d-%B-%g Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11-January-24 Week 01 |
FORMAT_DATE('%d-%b-%g Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11-Jan-24 Week 01 |
FORMAT_DATE('%d-%h-%g Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11-Jan-24 Week 01 |
FORMAT_DATE('%d/%m/%Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11/01/2024 Week 01 |
FORMAT_DATE('%d/%m/%E4Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - /- Four-character years (0001 ... 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11/01/2024 Week 01 |
FORMAT_DATE('%d/%m/%y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11/01/24 Week 01 |
FORMAT_DATE('%d/%m/%G Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11/01/2024 Week 01 |
FORMAT_DATE('%d/%m/%g Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11/01/24 Week 01 |
FORMAT_DATE('%d/%B/%Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - / The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11/January/2024 Week 01 |
FORMAT_DATE('%d/%b/%Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11/Jan/2024 Week 01 |
FORMAT_DATE('%d/%h/%Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11/Jan/2024 Week 01 |
FORMAT_DATE('%d/%B/%E4Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - / Four-character years (0001 ... 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11/January/2024 Week 01 |
FORMAT_DATE('%d/%b/%E4Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / Four-character years (0001 ... 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11/Jan/2024 Week 01 |
FORMAT_DATE('%d/%h/%E4Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / Four-character years (0001 ... 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11/Jan/2024 Week 01 |
FORMAT_DATE('%d/%B/%y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - / The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11/January/24 Week 01 |
FORMAT_DATE('%d/%b/%y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11/Jan/24 Week 01 |
FORMAT_DATE('%d/%h/%y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11/Jan/24 Week 01 |
FORMAT_DATE('%d/%B/%G Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - / The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11/January/2024 Week 01 |
FORMAT_DATE('%d/%b/%G Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11/Jan/2024 Week 01 |
FORMAT_DATE('%d/%h/%G Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11/Jan/2024 Week 01 |
FORMAT_DATE('%d/%B/%g Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11/January/24 Week 01 |
FORMAT_DATE('%d/%b/%g Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11/Jan/24 Week 01 |
FORMAT_DATE('%d/%h/%g Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) /- The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11/Jan/24 Week 01 |
FORMAT_DATE('%d:%m:%Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11:01:2024 Week 01 |
FORMAT_DATE('%d:%m:%E4Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - :- Four-character years (0001 ... 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11:01:2024 Week 01 |
FORMAT_DATE('%d:%m:%y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11:01:24 Week 01 |
FORMAT_DATE('%d:%m:%G Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11:01:2024 Week 01 |
FORMAT_DATE('%d:%m:%g Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11:01:24 Week 01 |
FORMAT_DATE('%d:%B:%Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - : The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11:January:2024 Week 01 |
FORMAT_DATE('%d:%b:%Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11:Jan:2024 Week 01 |
FORMAT_DATE('%d:%h:%Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11:Jan:2024 Week 01 |
FORMAT_DATE('%d:%B:%E4Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - : Four-character years (0001 ... 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11:January:2024 Week 01 |
FORMAT_DATE('%d:%b:%E4Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : Four-character years (0001 ... 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11:Jan:2024 Week 01 |
FORMAT_DATE('%d:%h:%E4Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : Four-character years (0001 ... 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11:Jan:2024 Week 01 |
FORMAT_DATE('%d:%B:%y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - : The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11:January:24 Week 01 |
FORMAT_DATE('%d:%b:%y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11:Jan:24 Week 01 |
FORMAT_DATE('%d:%h:%y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11:Jan:24 Week 01 |
FORMAT_DATE('%d:%B:%G Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - : The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11:January:2024 Week 01 |
FORMAT_DATE('%d:%b:%G Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11:Jan:2024 Week 01 |
FORMAT_DATE('%d:%h:%G Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11:Jan:2024 Week 01 |
FORMAT_DATE('%d:%B:%g Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11:January:24 Week 01 |
FORMAT_DATE('%d:%b:%g Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11:Jan:24 Week 01 |
FORMAT_DATE('%d:%h:%g Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) :- The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11:Jan:24 Week 01 |
FORMAT_DATE('%d.%m.%Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11.01.2024 Week 01 |
FORMAT_DATE('%d.%m.%E4Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - .- Four-character years (0001 ... 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11.01.2024 Week 01 |
FORMAT_DATE('%d.%m.%y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11.01.24 Week 01 |
FORMAT_DATE('%d.%m.%G Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11.01.2024 Week 01 |
FORMAT_DATE('%d.%m.%g Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11.01.24 Week 01 |
FORMAT_DATE('%d.%B.%Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - . The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11.January.2024 Week 01 |
FORMAT_DATE('%d.%b.%Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11.Jan.2024 Week 01 |
FORMAT_DATE('%d.%h.%Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11.Jan.2024 Week 01 |
FORMAT_DATE('%d.%B.%E4Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - . Four-character years (0001 ... 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11.January.2024 Week 01 |
FORMAT_DATE('%d.%b.%E4Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . Four-character years (0001 ... 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11.Jan.2024 Week 01 |
FORMAT_DATE('%d.%h.%E4Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . Four-character years (0001 ... 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11.Jan.2024 Week 01 |
FORMAT_DATE('%d.%B.%y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - . The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11.January.24 Week 01 |
FORMAT_DATE('%d.%b.%y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11.Jan.24 Week 01 |
FORMAT_DATE('%d.%h.%y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11.Jan.24 Week 01 |
FORMAT_DATE('%d.%B.%G Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - . The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11.January.2024 Week 01 |
FORMAT_DATE('%d.%b.%G Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11.Jan.2024 Week 01 |
FORMAT_DATE('%d.%h.%G Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11.Jan.2024 Week 01 |
FORMAT_DATE('%d.%B.%g Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11.January.24 Week 01 |
FORMAT_DATE('%d.%b.%g Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11.Jan.24 Week 01 |
FORMAT_DATE('%d.%h.%g Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) .- The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11.Jan.24 Week 01 |
FORMAT_DATE('%d %m %Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11 01 2024 Week 01 |
FORMAT_DATE('%d %m %E4Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11 01 2024 Week 01 |
FORMAT_DATE('%d %m %y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11 01 24 Week 01 |
FORMAT_DATE('%d %m %G Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11 01 2024 Week 01 |
FORMAT_DATE('%d %m %g Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11 01 24 Week 01 |
FORMAT_DATE('%d %B %Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11 January 2024 Week 01 |
FORMAT_DATE('%d %b %Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11 Jan 2024 Week 01 |
FORMAT_DATE('%d %h %Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11 Jan 2024 Week 01 |
FORMAT_DATE('%d %B %E4Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month Four-character years (0001 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11 January 2024 Week 01 |
FORMAT_DATE('%d %b %E4Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11 Jan 2024 Week 01 |
FORMAT_DATE('%d %h %E4Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11 Jan 2024 Week 01 |
FORMAT_DATE('%d %B %y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11 January 24 Week 01 |
FORMAT_DATE('%d %b %y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11 Jan 24 Week 01 |
FORMAT_DATE('%d %h %y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11 Jan 24 Week 01 |
FORMAT_DATE('%d %B %G Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11 January 2024 Week 01 |
FORMAT_DATE('%d %b %G Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11 Jan 2024 Week 01 |
FORMAT_DATE('%d %h %G Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11 Jan 2024 Week 01 |
FORMAT_DATE('%d %B %g Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) month The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11 January 24 Week 01 |
FORMAT_DATE('%d %b %g Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11 Jan 24 Week 01 |
FORMAT_DATE('%d %h %g Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11 Jan 24 Week 01 |
FORMAT_DATE('%d%m%Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11012024 Week 01 |
FORMAT_DATE('%d%m%E4Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11012024 Week 01 |
FORMAT_DATE('%d%m%y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 110124 Week 01 |
FORMAT_DATE('%d%m%G Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11012024 Week 01 |
FORMAT_DATE('%d%m%g Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 110124 Week 01 |
FORMAT_DATE('%d%B%Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11January2024 Week 01 |
FORMAT_DATE('%d%b%Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11Jan2024 Week 01 |
FORMAT_DATE('%d%h%Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11Jan2024 Week 01 |
FORMAT_DATE('%d%B%E4Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month Four-character years (0001 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11January2024 Week 01 |
FORMAT_DATE('%d%b%E4Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11Jan2024 Week 01 |
FORMAT_DATE('%d%h%E4Y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11Jan2024 Week 01 |
FORMAT_DATE('%d%B%y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11January24 Week 01 |
FORMAT_DATE('%d%b%y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11Jan24 Week 01 |
FORMAT_DATE('%d%h%y Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11Jan24 Week 01 |
FORMAT_DATE('%d%B%G Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11January2024 Week 01 |
FORMAT_DATE('%d%b%G Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11Jan2024 Week 01 |
FORMAT_DATE('%d%h%G Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11Jan2024 Week 01 |
FORMAT_DATE('%d%B%g Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) month The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11January24 Week 01 |
FORMAT_DATE('%d%b%g Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11Jan24 Week 01 |
FORMAT_DATE('%d%h%g Week %U', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) mon- The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11Jan24 Week 01 |
FORMAT_DATE('%d-%m-%Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11-01-2024 Week 02 |
FORMAT_DATE('%d-%m-%E4Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 ... 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11-01-2024 Week 02 |
FORMAT_DATE('%d-%m-%y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11-01-24 Week 02 |
FORMAT_DATE('%d-%m-%G Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11-01-2024 Week 02 |
FORMAT_DATE('%d-%m-%g Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11-01-24 Week 02 |
FORMAT_DATE('%d-%B-%Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11-January-2024 Week 02 |
FORMAT_DATE('%d-%b-%Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11-Jan-2024 Week 02 |
FORMAT_DATE('%d-%h-%Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11-Jan-2024 Week 02 |
FORMAT_DATE('%d-%B-%E4Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - Four-character years (0001 ... 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11-January-2024 Week 02 |
FORMAT_DATE('%d-%b-%E4Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 ... 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11-Jan-2024 Week 02 |
FORMAT_DATE('%d-%h-%E4Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 ... 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11-Jan-2024 Week 02 |
FORMAT_DATE('%d-%B-%y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11-January-24 Week 02 |
FORMAT_DATE('%d-%b-%y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11-Jan-24 Week 02 |
FORMAT_DATE('%d-%h-%y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11-Jan-24 Week 02 |
FORMAT_DATE('%d-%B-%G Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11-January-2024 Week 02 |
FORMAT_DATE('%d-%b-%G Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11-Jan-2024 Week 02 |
FORMAT_DATE('%d-%h-%G Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11-Jan-2024 Week 02 |
FORMAT_DATE('%d-%B-%g Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11-January-24 Week 02 |
FORMAT_DATE('%d-%b-%g Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11-Jan-24 Week 02 |
FORMAT_DATE('%d-%h-%g Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11-Jan-24 Week 02 |
FORMAT_DATE('%d/%m/%Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11/01/2024 Week 02 |
FORMAT_DATE('%d/%m/%E4Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - /- Four-character years (0001 ... 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11/01/2024 Week 02 |
FORMAT_DATE('%d/%m/%y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11/01/24 Week 02 |
FORMAT_DATE('%d/%m/%G Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11/01/2024 Week 02 |
FORMAT_DATE('%d/%m/%g Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11/01/24 Week 02 |
FORMAT_DATE('%d/%B/%Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - / The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11/January/2024 Week 02 |
FORMAT_DATE('%d/%b/%Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11/Jan/2024 Week 02 |
FORMAT_DATE('%d/%h/%Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11/Jan/2024 Week 02 |
FORMAT_DATE('%d/%B/%E4Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - / Four-character years (0001 ... 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11/January/2024 Week 02 |
FORMAT_DATE('%d/%b/%E4Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / Four-character years (0001 ... 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11/Jan/2024 Week 02 |
FORMAT_DATE('%d/%h/%E4Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / Four-character years (0001 ... 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11/Jan/2024 Week 02 |
FORMAT_DATE('%d/%B/%y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - / The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11/January/24 Week 02 |
FORMAT_DATE('%d/%b/%y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11/Jan/24 Week 02 |
FORMAT_DATE('%d/%h/%y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11/Jan/24 Week 02 |
FORMAT_DATE('%d/%B/%G Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - / The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11/January/2024 Week 02 |
FORMAT_DATE('%d/%b/%G Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11/Jan/2024 Week 02 |
FORMAT_DATE('%d/%h/%G Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11/Jan/2024 Week 02 |
FORMAT_DATE('%d/%B/%g Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11/January/24 Week 02 |
FORMAT_DATE('%d/%b/%g Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11/Jan/24 Week 02 |
FORMAT_DATE('%d/%h/%g Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) /- The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11/Jan/24 Week 02 |
FORMAT_DATE('%d:%m:%Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11:01:2024 Week 02 |
FORMAT_DATE('%d:%m:%E4Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - :- Four-character years (0001 ... 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11:01:2024 Week 02 |
FORMAT_DATE('%d:%m:%y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11:01:24 Week 02 |
FORMAT_DATE('%d:%m:%G Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11:01:2024 Week 02 |
FORMAT_DATE('%d:%m:%g Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11:01:24 Week 02 |
FORMAT_DATE('%d:%B:%Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - : The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11:January:2024 Week 02 |
FORMAT_DATE('%d:%b:%Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11:Jan:2024 Week 02 |
FORMAT_DATE('%d:%h:%Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11:Jan:2024 Week 02 |
FORMAT_DATE('%d:%B:%E4Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - : Four-character years (0001 ... 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11:January:2024 Week 02 |
FORMAT_DATE('%d:%b:%E4Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : Four-character years (0001 ... 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11:Jan:2024 Week 02 |
FORMAT_DATE('%d:%h:%E4Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : Four-character years (0001 ... 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11:Jan:2024 Week 02 |
FORMAT_DATE('%d:%B:%y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - : The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11:January:24 Week 02 |
FORMAT_DATE('%d:%b:%y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11:Jan:24 Week 02 |
FORMAT_DATE('%d:%h:%y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11:Jan:24 Week 02 |
FORMAT_DATE('%d:%B:%G Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - : The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11:January:2024 Week 02 |
FORMAT_DATE('%d:%b:%G Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11:Jan:2024 Week 02 |
FORMAT_DATE('%d:%h:%G Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11:Jan:2024 Week 02 |
FORMAT_DATE('%d:%B:%g Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11:January:24 Week 02 |
FORMAT_DATE('%d:%b:%g Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11:Jan:24 Week 02 |
FORMAT_DATE('%d:%h:%g Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) :- The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11:Jan:24 Week 02 |
FORMAT_DATE('%d.%m.%Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11.01.2024 Week 02 |
FORMAT_DATE('%d.%m.%E4Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - .- Four-character years (0001 ... 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11.01.2024 Week 02 |
FORMAT_DATE('%d.%m.%y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11.01.24 Week 02 |
FORMAT_DATE('%d.%m.%G Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11.01.2024 Week 02 |
FORMAT_DATE('%d.%m.%g Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11.01.24 Week 02 |
FORMAT_DATE('%d.%B.%Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - . The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11.January.2024 Week 02 |
FORMAT_DATE('%d.%b.%Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11.Jan.2024 Week 02 |
FORMAT_DATE('%d.%h.%Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11.Jan.2024 Week 02 |
FORMAT_DATE('%d.%B.%E4Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - . Four-character years (0001 ... 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11.January.2024 Week 02 |
FORMAT_DATE('%d.%b.%E4Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . Four-character years (0001 ... 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11.Jan.2024 Week 02 |
FORMAT_DATE('%d.%h.%E4Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . Four-character years (0001 ... 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11.Jan.2024 Week 02 |
FORMAT_DATE('%d.%B.%y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - . The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11.January.24 Week 02 |
FORMAT_DATE('%d.%b.%y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11.Jan.24 Week 02 |
FORMAT_DATE('%d.%h.%y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11.Jan.24 Week 02 |
FORMAT_DATE('%d.%B.%G Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - . The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11.January.2024 Week 02 |
FORMAT_DATE('%d.%b.%G Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11.Jan.2024 Week 02 |
FORMAT_DATE('%d.%h.%G Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11.Jan.2024 Week 02 |
FORMAT_DATE('%d.%B.%g Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11.January.24 Week 02 |
FORMAT_DATE('%d.%b.%g Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11.Jan.24 Week 02 |
FORMAT_DATE('%d.%h.%g Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) .- The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11.Jan.24 Week 02 |
FORMAT_DATE('%d %m %Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11 01 2024 Week 02 |
FORMAT_DATE('%d %m %E4Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11 01 2024 Week 02 |
FORMAT_DATE('%d %m %y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11 01 24 Week 02 |
FORMAT_DATE('%d %m %G Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11 01 2024 Week 02 |
FORMAT_DATE('%d %m %g Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11 01 24 Week 02 |
FORMAT_DATE('%d %B %Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11 January 2024 Week 02 |
FORMAT_DATE('%d %b %Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11 Jan 2024 Week 02 |
FORMAT_DATE('%d %h %Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11 Jan 2024 Week 02 |
FORMAT_DATE('%d %B %E4Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month Four-character years (0001 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11 January 2024 Week 02 |
FORMAT_DATE('%d %b %E4Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11 Jan 2024 Week 02 |
FORMAT_DATE('%d %h %E4Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11 Jan 2024 Week 02 |
FORMAT_DATE('%d %B %y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11 January 24 Week 02 |
FORMAT_DATE('%d %b %y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11 Jan 24 Week 02 |
FORMAT_DATE('%d %h %y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11 Jan 24 Week 02 |
FORMAT_DATE('%d %B %G Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11 January 2024 Week 02 |
FORMAT_DATE('%d %b %G Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11 Jan 2024 Week 02 |
FORMAT_DATE('%d %h %G Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11 Jan 2024 Week 02 |
FORMAT_DATE('%d %B %g Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) month The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11 January 24 Week 02 |
FORMAT_DATE('%d %b %g Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11 Jan 24 Week 02 |
FORMAT_DATE('%d %h %g Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11 Jan 24 Week 02 |
FORMAT_DATE('%d%m%Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11012024 Week 02 |
FORMAT_DATE('%d%m%E4Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11012024 Week 02 |
FORMAT_DATE('%d%m%y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 110124 Week 02 |
FORMAT_DATE('%d%m%G Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11012024 Week 02 |
FORMAT_DATE('%d%m%g Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 110124 Week 02 |
FORMAT_DATE('%d%B%Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11January2024 Week 02 |
FORMAT_DATE('%d%b%Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11Jan2024 Week 02 |
FORMAT_DATE('%d%h%Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11Jan2024 Week 02 |
FORMAT_DATE('%d%B%E4Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month Four-character years (0001 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11January2024 Week 02 |
FORMAT_DATE('%d%b%E4Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11Jan2024 Week 02 |
FORMAT_DATE('%d%h%E4Y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11Jan2024 Week 02 |
FORMAT_DATE('%d%B%y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11January24 Week 02 |
FORMAT_DATE('%d%b%y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11Jan24 Week 02 |
FORMAT_DATE('%d%h%y Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11Jan24 Week 02 |
FORMAT_DATE('%d%B%G Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11January2024 Week 02 |
FORMAT_DATE('%d%b%G Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11Jan2024 Week 02 |
FORMAT_DATE('%d%h%G Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11Jan2024 Week 02 |
FORMAT_DATE('%d%B%g Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) month The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11January24 Week 02 |
FORMAT_DATE('%d%b%g Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11Jan24 Week 02 |
FORMAT_DATE('%d%h%g Week %W', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) mon- The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11Jan24 Week 02 |
FORMAT_DATE('%d-%m-%Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-01-2024 ISO Week 02 |
FORMAT_DATE('%d-%m-%E4Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - iso- Four-character years (0001 ... 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-01-2024 ISO Week 02 |
FORMAT_DATE('%d-%m-%y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-01-24 ISO Week 02 |
FORMAT_DATE('%d-%m-%G ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-01-2024 ISO Week 02 |
FORMAT_DATE('%d-%m-%g ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-01-24 ISO Week 02 |
FORMAT_DATE('%d-%B-%Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-January-2024 ISO Week 02 |
FORMAT_DATE('%d-%b-%Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-Jan-2024 ISO Week 02 |
FORMAT_DATE('%d-%h-%Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-Jan-2024 ISO Week 02 |
FORMAT_DATE('%d-%B-%E4Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - iso- Four-character years (0001 ... 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-January-2024 ISO Week 02 |
FORMAT_DATE('%d-%b-%E4Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- Four-character years (0001 ... 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-Jan-2024 ISO Week 02 |
FORMAT_DATE('%d-%h-%E4Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- Four-character years (0001 ... 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-Jan-2024 ISO Week 02 |
FORMAT_DATE('%d-%B-%y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-January-24 ISO Week 02 |
FORMAT_DATE('%d-%b-%y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-Jan-24 ISO Week 02 |
FORMAT_DATE('%d-%h-%y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-Jan-24 ISO Week 02 |
FORMAT_DATE('%d-%B-%G ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-January-2024 ISO Week 02 |
FORMAT_DATE('%d-%b-%G ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-Jan-2024 ISO Week 02 |
FORMAT_DATE('%d-%h-%G ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-Jan-2024 ISO Week 02 |
FORMAT_DATE('%d-%B-%g ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) - iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-January-24 ISO Week 02 |
FORMAT_DATE('%d-%b-%g ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-Jan-24 ISO Week 02 |
FORMAT_DATE('%d-%h-%g ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-Jan-24 ISO Week 02 |
FORMAT_DATE('%d/%m/%Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/01/2024 ISO Week 02 |
FORMAT_DATE('%d/%m/%E4Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - /- iso- Four-character years (0001 ... 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/01/2024 ISO Week 02 |
FORMAT_DATE('%d/%m/%y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/01/24 ISO Week 02 |
FORMAT_DATE('%d/%m/%G ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/01/2024 ISO Week 02 |
FORMAT_DATE('%d/%m/%g ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) / iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/01/24 ISO Week 02 |
FORMAT_DATE('%d/%B/%Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - / iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/January/2024 ISO Week 02 |
FORMAT_DATE('%d/%b/%Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/Jan/2024 ISO Week 02 |
FORMAT_DATE('%d/%h/%Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/Jan/2024 ISO Week 02 |
FORMAT_DATE('%d/%B/%E4Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - / iso- Four-character years (0001 ... 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/January/2024 ISO Week 02 |
FORMAT_DATE('%d/%b/%E4Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / iso- Four-character years (0001 ... 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/Jan/2024 ISO Week 02 |
FORMAT_DATE('%d/%h/%E4Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / iso- Four-character years (0001 ... 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/Jan/2024 ISO Week 02 |
FORMAT_DATE('%d/%B/%y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - / iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/January/24 ISO Week 02 |
FORMAT_DATE('%d/%b/%y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/Jan/24 ISO Week 02 |
FORMAT_DATE('%d/%h/%y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/Jan/24 ISO Week 02 |
FORMAT_DATE('%d/%B/%G ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - / iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/January/2024 ISO Week 02 |
FORMAT_DATE('%d/%b/%G ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/Jan/2024 ISO Week 02 |
FORMAT_DATE('%d/%h/%G ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - / iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/Jan/2024 ISO Week 02 |
FORMAT_DATE('%d/%B/%g ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) / iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/January/24 ISO Week 02 |
FORMAT_DATE('%d/%b/%g ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) / iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/Jan/24 ISO Week 02 |
FORMAT_DATE('%d/%h/%g ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) /- iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/Jan/24 ISO Week 02 |
FORMAT_DATE('%d:%m:%Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:01:2024 ISO Week 02 |
FORMAT_DATE('%d:%m:%E4Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - :- iso- Four-character years (0001 ... 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:01:2024 ISO Week 02 |
FORMAT_DATE('%d:%m:%y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:01:24 ISO Week 02 |
FORMAT_DATE('%d:%m:%G ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:01:2024 ISO Week 02 |
FORMAT_DATE('%d:%m:%g ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) : iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:01:24 ISO Week 02 |
FORMAT_DATE('%d:%B:%Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - : iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:January:2024 ISO Week 02 |
FORMAT_DATE('%d:%b:%Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:Jan:2024 ISO Week 02 |
FORMAT_DATE('%d:%h:%Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:Jan:2024 ISO Week 02 |
FORMAT_DATE('%d:%B:%E4Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - : iso- Four-character years (0001 ... 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:January:2024 ISO Week 02 |
FORMAT_DATE('%d:%b:%E4Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : iso- Four-character years (0001 ... 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:Jan:2024 ISO Week 02 |
FORMAT_DATE('%d:%h:%E4Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : iso- Four-character years (0001 ... 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:Jan:2024 ISO Week 02 |
FORMAT_DATE('%d:%B:%y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - : iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:January:24 ISO Week 02 |
FORMAT_DATE('%d:%b:%y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:Jan:24 ISO Week 02 |
FORMAT_DATE('%d:%h:%y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:Jan:24 ISO Week 02 |
FORMAT_DATE('%d:%B:%G ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - : iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:January:2024 ISO Week 02 |
FORMAT_DATE('%d:%b:%G ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:Jan:2024 ISO Week 02 |
FORMAT_DATE('%d:%h:%G ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - : iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:Jan:2024 ISO Week 02 |
FORMAT_DATE('%d:%B:%g ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) : iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:January:24 ISO Week 02 |
FORMAT_DATE('%d:%b:%g ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) : iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:Jan:24 ISO Week 02 |
FORMAT_DATE('%d:%h:%g ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) :- iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:Jan:24 ISO Week 02 |
FORMAT_DATE('%d.%m.%Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.01.2024 ISO Week 02 |
FORMAT_DATE('%d.%m.%E4Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - .- iso- Four-character years (0001 ... 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.01.2024 ISO Week 02 |
FORMAT_DATE('%d.%m.%y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.01.24 ISO Week 02 |
FORMAT_DATE('%d.%m.%G ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.01.2024 ISO Week 02 |
FORMAT_DATE('%d.%m.%g ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) . iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.01.24 ISO Week 02 |
FORMAT_DATE('%d.%B.%Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - . iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.January.2024 ISO Week 02 |
FORMAT_DATE('%d.%b.%Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.Jan.2024 ISO Week 02 |
FORMAT_DATE('%d.%h.%Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.Jan.2024 ISO Week 02 |
FORMAT_DATE('%d.%B.%E4Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - . iso- Four-character years (0001 ... 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.January.2024 ISO Week 02 |
FORMAT_DATE('%d.%b.%E4Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . iso- Four-character years (0001 ... 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.Jan.2024 ISO Week 02 |
FORMAT_DATE('%d.%h.%E4Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . iso- Four-character years (0001 ... 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.Jan.2024 ISO Week 02 |
FORMAT_DATE('%d.%B.%y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - . iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.January.24 ISO Week 02 |
FORMAT_DATE('%d.%b.%y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.Jan.24 ISO Week 02 |
FORMAT_DATE('%d.%h.%y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.Jan.24 ISO Week 02 |
FORMAT_DATE('%d.%B.%G ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - . iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.January.2024 ISO Week 02 |
FORMAT_DATE('%d.%b.%G ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.Jan.2024 ISO Week 02 |
FORMAT_DATE('%d.%h.%G ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - . iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.Jan.2024 ISO Week 02 |
FORMAT_DATE('%d.%B.%g ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) . iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.January.24 ISO Week 02 |
FORMAT_DATE('%d.%b.%g ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) . iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.Jan.24 ISO Week 02 |
FORMAT_DATE('%d.%h.%g ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) .- iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.Jan.24 ISO Week 02 |
FORMAT_DATE('%d %m %Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 01 2024 ISO Week 02 |
FORMAT_DATE('%d %m %E4Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - iso- Four-character years (0001 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 01 2024 ISO Week 02 |
FORMAT_DATE('%d %m %y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 01 24 ISO Week 02 |
FORMAT_DATE('%d %m %G ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 01 2024 ISO Week 02 |
FORMAT_DATE('%d %m %g ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 01 24 ISO Week 02 |
FORMAT_DATE('%d %B %Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 January 2024 ISO Week 02 |
FORMAT_DATE('%d %b %Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 Jan 2024 ISO Week 02 |
FORMAT_DATE('%d %h %Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 Jan 2024 ISO Week 02 |
FORMAT_DATE('%d %B %E4Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month iso- Four-character years (0001 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 January 2024 ISO Week 02 |
FORMAT_DATE('%d %b %E4Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- Four-character years (0001 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 Jan 2024 ISO Week 02 |
FORMAT_DATE('%d %h %E4Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- Four-character years (0001 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 Jan 2024 ISO Week 02 |
FORMAT_DATE('%d %B %y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 January 24 ISO Week 02 |
FORMAT_DATE('%d %b %y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 Jan 24 ISO Week 02 |
FORMAT_DATE('%d %h %y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 Jan 24 ISO Week 02 |
FORMAT_DATE('%d %B %G ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 January 2024 ISO Week 02 |
FORMAT_DATE('%d %b %G ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 Jan 2024 ISO Week 02 |
FORMAT_DATE('%d %h %G ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 Jan 2024 ISO Week 02 |
FORMAT_DATE('%d %B %g ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) month iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 January 24 ISO Week 02 |
FORMAT_DATE('%d %b %g ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 Jan 24 ISO Week 02 |
FORMAT_DATE('%d %h %g ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 Jan 24 ISO Week 02 |
FORMAT_DATE('%d%m%Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11012024 ISO Week 02 |
FORMAT_DATE('%d%m%E4Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - iso- Four-character years (0001 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11012024 ISO Week 02 |
FORMAT_DATE('%d%m%y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 110124 ISO Week 02 |
FORMAT_DATE('%d%m%G ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11012024 ISO Week 02 |
FORMAT_DATE('%d%m%g ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 110124 ISO Week 02 |
FORMAT_DATE('%d%B%Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11January2024 ISO Week 02 |
FORMAT_DATE('%d%b%Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11Jan2024 ISO Week 02 |
FORMAT_DATE('%d%h%Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11Jan2024 ISO Week 02 |
FORMAT_DATE('%d%B%E4Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month iso- Four-character years (0001 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11January2024 ISO Week 02 |
FORMAT_DATE('%d%b%E4Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- Four-character years (0001 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11Jan2024 ISO Week 02 |
FORMAT_DATE('%d%h%E4Y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- Four-character years (0001 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11Jan2024 ISO Week 02 |
FORMAT_DATE('%d%B%y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11January24 ISO Week 02 |
FORMAT_DATE('%d%b%y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11Jan24 ISO Week 02 |
FORMAT_DATE('%d%h%y ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11Jan24 ISO Week 02 |
FORMAT_DATE('%d%B%G ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - month iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11January2024 ISO Week 02 |
FORMAT_DATE('%d%b%G ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11Jan2024 ISO Week 02 |
FORMAT_DATE('%d%h%G ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11Jan2024 ISO Week 02 |
FORMAT_DATE('%d%B%g ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) month iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11January24 ISO Week 02 |
FORMAT_DATE('%d%b%g ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31)iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11Jan24 ISO Week 02 |
FORMAT_DATE('%d%h%g ISO Week %V', CURRENT_DATE) -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) mon- iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11Jan24 ISO Week 02 |
FORMAT_DATE('%e-%m-%Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -The year with century as a decimal number | 11-01-2024 |
FORMAT_DATE('%e-%m-%E4Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -Four-character years (0001 . 9999) | 11-01-2024 |
FORMAT_DATE('%e-%m-%y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -The year without century as a decimal number (00-99) | 11-01-24 |
FORMAT_DATE('%e-%m-%G', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -The ISO 8601 year with century as a decimal number | 11-01-2024 |
FORMAT_DATE('%e-%m-%g', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -The ISO 8601 year without century as a decimal number (00-99) | 11-01-24 |
FORMAT_DATE('%e-%B-%Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -The year with century as a decimal number | 11-January-2024 |
FORMAT_DATE('%e-%b-%Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number | 11-Jan-2024 |
FORMAT_DATE('%e-%h-%Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name dd The year with century as a decimal number | 11-Jan-2024 |
FORMAT_DATE('%e-%B-%E4Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -Four-character years (0001 . 9999) | 11-January-2024 |
FORMAT_DATE('%e-%b-%E4Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) | 11-Jan-2024 |
FORMAT_DATE('%e-%h-%E4Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) | 11-Jan-2024 |
FORMAT_DATE('%e-%B-%y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -The year without century as a decimal number (00-99) | 11-January-24 |
FORMAT_DATE('%e-%b-%y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) | 11-Jan-24 |
FORMAT_DATE('%e-%h-%y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) | 11-Jan-24 |
FORMAT_DATE('%e-%B-%G', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -The ISO 8601 year with century as a decimal number | 11-January-2024 |
FORMAT_DATE('%e-%b-%G', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number | 11-Jan-2024 |
FORMAT_DATE('%e-%h-%G', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number | 11-Jan-2024 |
FORMAT_DATE('%e-%B-%g', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -The ISO 8601 year without century as a decimal number (00-99) | 11-January-24 |
FORMAT_DATE('%e-%b-%g', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) | 11-Jan-24 |
FORMAT_DATE('%e-%h-%g', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) | 11-Jan-24 |
FORMAT_DATE('%e-%m-%Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -The year with century as a decimal number - Plus, day of year | 11-01-2024 Day 011 |
FORMAT_DATE('%e-%m-%E4Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -Four-character years (0001 . 9999) - Plus, day of year | 11-01-2024 Day 011 |
FORMAT_DATE('%e-%m-%y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -The year without century as a decimal number (00-99) - Plus, day of year | 11-01-24 Day 011 |
FORMAT_DATE('%e-%m-%G Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -The ISO 8601 year with century as a decimal number - Plus, day of year | 11-01-2024 Day 011 |
FORMAT_DATE('%e-%m-%g Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11-01-24 Day 011 |
FORMAT_DATE('%e-%B-%Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -The year with century as a decimal number - Plus, day of year | 11-January-2024 Day 011 |
FORMAT_DATE('%e-%b-%Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of year | 11-Jan-2024 Day 011 |
FORMAT_DATE('%e-%h-%Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name dd The year with century as a decimal number - Plus, day of year | 11-Jan-2024 Day 011 |
FORMAT_DATE('%e-%B-%E4Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -Four-character years (0001 . 9999) - Plus, day of year | 11-January-2024 Day 011 |
FORMAT_DATE('%e-%b-%E4Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of year | 11-Jan-2024 Day 011 |
FORMAT_DATE('%e-%h-%E4Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of year | 11-Jan-2024 Day 011 |
FORMAT_DATE('%e-%B-%y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -The year without century as a decimal number (00-99) - Plus, day of year | 11-January-24 Day 011 |
FORMAT_DATE('%e-%b-%y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of year | 11-Jan-24 Day 011 |
FORMAT_DATE('%e-%h-%y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of year | 11-Jan-24 Day 011 |
FORMAT_DATE('%e-%B-%G Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -The ISO 8601 year with century as a decimal number - Plus, day of year | 11-January-2024 Day 011 |
FORMAT_DATE('%e-%b-%G Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of year | 11-Jan-2024 Day 011 |
FORMAT_DATE('%e-%h-%G Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of year | 11-Jan-2024 Day 011 |
FORMAT_DATE('%e-%B-%g Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11-January-24 Day 011 |
FORMAT_DATE('%e-%b-%g Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11-Jan-24 Day 011 |
FORMAT_DATE('%e-%h-%g Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11-Jan-24 Day 011 |
FORMAT_DATE('%e/%m/%Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number | 11/01/2024 |
FORMAT_DATE('%e/%m/%E4Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) | 11/01/2024 |
FORMAT_DATE('%e/%m/%y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) | 11/01/24 |
FORMAT_DATE('%e/%m/%G', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number | 11/01/2024 |
FORMAT_DATE('%e/%m/%g', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) | 11/01/24 |
FORMAT_DATE('%e/%B/%Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/The year with century as a decimal number | 11/January/2024 |
FORMAT_DATE('%e/%b/%Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number | 11/Jan/2024 |
FORMAT_DATE('%e/%h/%Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name dd The year with century as a decimal number | 11/Jan/2024 |
FORMAT_DATE('%e/%B/%E4Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/Four-character years (0001 . 9999) | 11/January/2024 |
FORMAT_DATE('%e/%b/%E4Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) | 11/Jan/2024 |
FORMAT_DATE('%e/%h/%E4Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) | 11/Jan/2024 |
FORMAT_DATE('%e/%B/%y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/The year without century as a decimal number (00-99) | 11/January/24 |
FORMAT_DATE('%e/%b/%y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) | 11/Jan/24 |
FORMAT_DATE('%e/%h/%y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) | 11/Jan/24 |
FORMAT_DATE('%e/%B/%G', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/-The ISO 8601 year with century as a decimal number | 11/January/2024 |
FORMAT_DATE('%e/%b/%G', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name -The ISO 8601 year with century as a decimal number | 11/Jan/2024 |
FORMAT_DATE('%e/%h/%G', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number | 11/Jan/2024 |
FORMAT_DATE('%e/%B/%g', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/The ISO 8601 year without century as a decimal number (00-99) | 11/January/24 |
FORMAT_DATE('%e/%b/%g', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) | 11/Jan/24 |
FORMAT_DATE('%e/%h/%g', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) | 11/Jan/24 |
FORMAT_DATE('%e/%m/%Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, day of year | 11/01/2024 Day 011 |
FORMAT_DATE('%e/%m/%E4Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) - Plus, day of year | 11/01/2024 Day 011 |
FORMAT_DATE('%e/%m/%y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, day of year | 11/01/24 Day 011 |
FORMAT_DATE('%e/%m/%G Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, day of year | 11/01/2024 Day 011 |
FORMAT_DATE('%e/%m/%g Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11/01/24 Day 011 |
FORMAT_DATE('%e/%B/%Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/The year with century as a decimal number - Plus, day of year | 11/January/2024 Day 011 |
FORMAT_DATE('%e/%b/%Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of year | 11/Jan/2024 Day 011 |
FORMAT_DATE('%e/%h/%Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of year | 11/Jan/2024 Day 011 |
FORMAT_DATE('%e/%B/%E4Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/Four-character years (0001 . 9999) - Plus, day of year | 11/January/2024 Day 011 |
FORMAT_DATE('%e/%b/%E4Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of year | 11/Jan/2024 Day 011 |
FORMAT_DATE('%e/%h/%E4Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of year | 11/Jan/2024 Day 011 |
FORMAT_DATE('%e/%B/%y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/The year without century as a decimal number (00-99) - Plus, day of year | 11/January/24 Day 011 |
FORMAT_DATE('%e/%b/%y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of year | 11/Jan/24 Day 011 |
FORMAT_DATE('%e/%h/%y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of year | 11/Jan/24 Day 011 |
FORMAT_DATE('%e/%B/%G Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/The ISO 8601 year with century as a decimal number - Plus, day of year | 11/January/2024 Day 011 |
FORMAT_DATE('%e/%b/%G Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of year | 11/Jan/2024 Day 011 |
FORMAT_DATE('%e/%h/%G Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of year | 11/Jan/2024 Day 011 |
FORMAT_DATE('%e/%B/%g Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11/January/24 Day 011 |
FORMAT_DATE('%e/%b/%g Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11/Jan/24 Day 011 |
FORMAT_DATE('%e/%h/%g Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11/Jan/24 Day 011 |
FORMAT_DATE('%e:%m:%Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number | 11:01:2024 |
FORMAT_DATE('%e:%m:%E4Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) | 11:01:2024 |
FORMAT_DATE('%e:%m:%y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) | 11:01:24 |
FORMAT_DATE('%e:%m:%G', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number | 11:01:2024 |
FORMAT_DATE('%e:%m:%g', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) | 11:01:24 |
FORMAT_DATE('%e:%B:%Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:The year with century as a decimal number | 11:January:2024 |
FORMAT_DATE('%e:%b:%Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number | 11:Jan:2024 |
FORMAT_DATE('%e:%h:%Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name dd The year with century as a decimal number | 11:Jan:2024 |
FORMAT_DATE('%e:%B:%E4Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:Four-character years (0001 . 9999) | 11:January:2024 |
FORMAT_DATE('%e:%b:%E4Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) | 11:Jan:2024 |
FORMAT_DATE('%e:%h:%E4Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) | 11:Jan:2024 |
FORMAT_DATE('%e:%B:%y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:The year without century as a decimal number (00-99) | 11:January:24 |
FORMAT_DATE('%e:%b:%y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) | 11:Jan:24 |
FORMAT_DATE('%e:%h:%y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) | 11:Jan:24 |
FORMAT_DATE('%e:%B:%G', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:-The ISO 8601 year with century as a decimal number | 11:January:2024 |
FORMAT_DATE('%e:%b:%G', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name -The ISO 8601 year with century as a decimal number | 11:Jan:2024 |
FORMAT_DATE('%e:%h:%G', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number | 11:Jan:2024 |
FORMAT_DATE('%e:%B:%g', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:The ISO 8601 year without century as a decimal number (00-99) | 11:January:24 |
FORMAT_DATE('%e:%b:%g', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) | 11:Jan:24 |
FORMAT_DATE('%e:%h:%g', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) | 11:Jan:24 |
FORMAT_DATE('%e:%m:%Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, day of year | 11:01:2024 Day 011 |
FORMAT_DATE('%e:%m:%E4Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) - Plus, day of year | 11:01:2024 Day 011 |
FORMAT_DATE('%e:%m:%y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, day of year | 11:01:24 Day 011 |
FORMAT_DATE('%e:%m:%G Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, day of year | 11:01:2024 Day 011 |
FORMAT_DATE('%e:%m:%g Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11:01:24 Day 011 |
FORMAT_DATE('%e:%B:%Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:The year with century as a decimal number - Plus, day of year | 11:January:2024 Day 011 |
FORMAT_DATE('%e:%b:%Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of year | 11:Jan:2024 Day 011 |
FORMAT_DATE('%e:%h:%Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of year | 11:Jan:2024 Day 011 |
FORMAT_DATE('%e:%B:%E4Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:Four-character years (0001 . 9999) - Plus, day of year | 11:January:2024 Day 011 |
FORMAT_DATE('%e:%b:%E4Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of year | 11:Jan:2024 Day 011 |
FORMAT_DATE('%e:%h:%E4Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of year | 11:Jan:2024 Day 011 |
FORMAT_DATE('%e:%B:%y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:The year without century as a decimal number (00-99) - Plus, day of year | 11:January:24 Day 011 |
FORMAT_DATE('%e:%b:%y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of year | 11:Jan:24 Day 011 |
FORMAT_DATE('%e:%h:%y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of year | 11:Jan:24 Day 011 |
FORMAT_DATE('%e:%B:%G Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:The ISO 8601 year with century as a decimal number - Plus, day of year | 11:January:2024 Day 011 |
FORMAT_DATE('%e:%b:%G Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of year | 11:Jan:2024 Day 011 |
FORMAT_DATE('%e:%h:%G Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of year | 11:Jan:2024 Day 011 |
FORMAT_DATE('%e:%B:%g Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11:January:24 Day 011 |
FORMAT_DATE('%e:%b:%g Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11:Jan:24 Day 011 |
FORMAT_DATE('%e:%h:%g Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11:Jan:24 Day 011 |
FORMAT_DATE('%e.%m.%Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number | 11.01.2024 |
FORMAT_DATE('%e.%m.%E4Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) | 11.01.2024 |
FORMAT_DATE('%e.%m.%y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) | 11.01.24 |
FORMAT_DATE('%e.%m.%G', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number | 11.01.2024 |
FORMAT_DATE('%e.%m.%g', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) | 11.01.24 |
FORMAT_DATE('%e.%B.%Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.The year with century as a decimal number | 11.January.2024 |
FORMAT_DATE('%e.%b.%Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number | 11.Jan.2024 |
FORMAT_DATE('%e.%h.%Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name dd The year with century as a decimal number | 11.Jan.2024 |
FORMAT_DATE('%e.%B.%E4Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.Four-character years (0001 . 9999) | 11.January.2024 |
FORMAT_DATE('%e.%b.%E4Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) | 11.Jan.2024 |
FORMAT_DATE('%e.%h.%E4Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) | 11.Jan.2024 |
FORMAT_DATE('%e.%B.%y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.The year without century as a decimal number (00-99) | 11.January.24 |
FORMAT_DATE('%e.%b.%y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) | 11.Jan.24 |
FORMAT_DATE('%e.%h.%y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) | 11.Jan.24 |
FORMAT_DATE('%e.%B.%G', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.-The ISO 8601 year with century as a decimal number | 11.January.2024 |
FORMAT_DATE('%e.%b.%G', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name -The ISO 8601 year with century as a decimal number | 11.Jan.2024 |
FORMAT_DATE('%e.%h.%G', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number | 11.Jan.2024 |
FORMAT_DATE('%e.%B.%g', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.The ISO 8601 year without century as a decimal number (00-99) | 11.January.24 |
FORMAT_DATE('%e.%b.%g', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) | 11.Jan.24 |
FORMAT_DATE('%e.%h.%g', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) | 11.Jan.24 |
FORMAT_DATE('%e.%m.%Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, day of year | 11.01.2024 Day 011 |
FORMAT_DATE('%e.%m.%E4Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) - Plus, day of year | 11.01.2024 Day 011 |
FORMAT_DATE('%e.%m.%y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, day of year | 11.01.24 Day 011 |
FORMAT_DATE('%e.%m.%G Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, day of year | 11.01.2024 Day 011 |
FORMAT_DATE('%e.%m.%g Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11.01.24 Day 011 |
FORMAT_DATE('%e.%B.%Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.The year with century as a decimal number - Plus, day of year | 11.January.2024 Day 011 |
FORMAT_DATE('%e.%b.%Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of year | 11.Jan.2024 Day 011 |
FORMAT_DATE('%e.%h.%Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of year | 11.Jan.2024 Day 011 |
FORMAT_DATE('%e.%B.%E4Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.Four-character years (0001 . 9999) - Plus, day of year | 11.January.2024 Day 011 |
FORMAT_DATE('%e.%b.%E4Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of year | 11.Jan.2024 Day 011 |
FORMAT_DATE('%e.%h.%E4Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of year | 11.Jan.2024 Day 011 |
FORMAT_DATE('%e.%B.%y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.The year without century as a decimal number (00-99) - Plus, day of year | 11.January.24 Day 011 |
FORMAT_DATE('%e.%b.%y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of year | 11.Jan.24 Day 011 |
FORMAT_DATE('%e.%h.%y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of year | 11.Jan.24 Day 011 |
FORMAT_DATE('%e.%B.%G Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.The ISO 8601 year with century as a decimal number - Plus, day of year | 11.January.2024 Day 011 |
FORMAT_DATE('%e.%b.%G Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of year | 11.Jan.2024 Day 011 |
FORMAT_DATE('%e.%h.%G Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of year | 11.Jan.2024 Day 011 |
FORMAT_DATE('%e.%B.%g Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11.January.24 Day 011 |
FORMAT_DATE('%e.%b.%g Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11.Jan.24 Day 011 |
FORMAT_DATE('%e.%h.%g Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11.Jan.24 Day 011 |
FORMAT_DATE('%e %m %Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number | 11 01 2024 |
FORMAT_DATE('%e %m %E4Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 9999) | 11 01 2024 |
FORMAT_DATE('%e %m %y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) | 11 01 24 |
FORMAT_DATE('%e %m %G', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number | 11 01 2024 |
FORMAT_DATE('%e %m %g', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) | 11 01 24 |
FORMAT_DATE('%e %B %Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year with century as a decimal number | 11 January 2024 |
FORMAT_DATE('%e %b %Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number | 11 Jan 2024 |
FORMAT_DATE('%e %h %Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name dd The year with century as a decimal number | 11 Jan 2024 |
FORMAT_DATE('%e %B %E4Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month Four-character years (0001 9999) | 11 January 2024 |
FORMAT_DATE('%e %b %E4Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 9999) | 11 Jan 2024 |
FORMAT_DATE('%e %h %E4Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 9999) | 11 Jan 2024 |
FORMAT_DATE('%e %B %y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year without century as a decimal number (00-99) | 11 January 24 |
FORMAT_DATE('%e %b %y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) | 11 Jan 24 |
FORMAT_DATE('%e %h %y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) | 11 Jan 24 |
FORMAT_DATE('%e %B %G', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month -The ISO 8601 year with century as a decimal number | 11 January 2024 |
FORMAT_DATE('%e %b %G', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name -The ISO 8601 year with century as a decimal number | 11 Jan 2024 |
FORMAT_DATE('%e %h %G', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number | 11 Jan 2024 |
FORMAT_DATE('%e %B %g', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year without century as a decimal number (00-99) | 11 January 24 |
FORMAT_DATE('%e %b %g', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) | 11 Jan 24 |
FORMAT_DATE('%e %h %g', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) | 11 Jan 24 |
FORMAT_DATE('%e %m %Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, day of year | 11 01 2024 Day 011 |
FORMAT_DATE('%e %m %E4Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 9999) - Plus, day of year | 11 01 2024 Day 011 |
FORMAT_DATE('%e %m %y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, day of year | 11 01 24 Day 011 |
FORMAT_DATE('%e %m %G Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, day of year | 11 01 2024 Day 011 |
FORMAT_DATE('%e %m %g Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11 01 24 Day 011 |
FORMAT_DATE('%e %B %Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year with century as a decimal number - Plus, day of year | 11 January 2024 Day 011 |
FORMAT_DATE('%e %b %Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of year | 11 Jan 2024 Day 011 |
FORMAT_DATE('%e %h %Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of year | 11 Jan 2024 Day 011 |
FORMAT_DATE('%e %B %E4Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month Four-character years (0001 9999) - Plus, day of year | 11 January 2024 Day 011 |
FORMAT_DATE('%e %b %E4Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 9999) - Plus, day of year | 11 Jan 2024 Day 011 |
FORMAT_DATE('%e %h %E4Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 9999) - Plus, day of year | 11 Jan 2024 Day 011 |
FORMAT_DATE('%e %B %y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year without century as a decimal number (00-99) - Plus, day of year | 11 January 24 Day 011 |
FORMAT_DATE('%e %b %y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of year | 11 Jan 24 Day 011 |
FORMAT_DATE('%e %h %y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of year | 11 Jan 24 Day 011 |
FORMAT_DATE('%e %B %G Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year with century as a decimal number - Plus, day of year | 11 January 2024 Day 011 |
FORMAT_DATE('%e %b %G Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of year | 11 Jan 2024 Day 011 |
FORMAT_DATE('%e %h %G Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of year | 11 Jan 2024 Day 011 |
FORMAT_DATE('%e %B %g Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11 January 24 Day 011 |
FORMAT_DATE('%e %b %g Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11 Jan 24 Day 011 |
FORMAT_DATE('%e %h %g Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11 Jan 24 Day 011 |
FORMAT_DATE('%e%m%Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number | 11012024 |
FORMAT_DATE('%e%m%E4Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 9999) | 11012024 |
FORMAT_DATE('%e%m%y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) | 110124 |
FORMAT_DATE('%e%m%G', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number | 11012024 |
FORMAT_DATE('%e%m%g', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) | 110124 |
FORMAT_DATE('%e%B%Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthThe year with century as a decimal number | 11January2024 |
FORMAT_DATE('%e%b%Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monThe year with century as a decimal number | 11Jan2024 |
FORMAT_DATE('%e%h%Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name mondd The year with century as a decimal number | 11Jan2024 |
FORMAT_DATE('%e%B%E4Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthFour-character years (0001 9999) | 11January2024 |
FORMAT_DATE('%e%b%E4Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monFour-character years (0001 9999) | 11Jan2024 |
FORMAT_DATE('%e%h%E4Y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monFour-character years (0001 9999) | 11Jan2024 |
FORMAT_DATE('%e%B%y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year without century as a decimal number (00-99) | 11January24 |
FORMAT_DATE('%e%b%y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monThe year without century as a decimal number (00-99) | 11Jan24 |
FORMAT_DATE('%e%h%y', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monThe year without century as a decimal number (00-99) | 11Jan24 |
FORMAT_DATE('%e%B%G', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month-The ISO 8601 year with century as a decimal number | 11January2024 |
FORMAT_DATE('%e%b%G', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name mon-The ISO 8601 year with century as a decimal number | 11Jan2024 |
FORMAT_DATE('%e%h%G', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monThe ISO 8601 year with century as a decimal number | 11Jan2024 |
FORMAT_DATE('%e%B%g', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthThe ISO 8601 year without century as a decimal number (00-99) | 11January24 |
FORMAT_DATE('%e%b%g', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monThe ISO 8601 year without century as a decimal number (00-99) | 11Jan24 |
FORMAT_DATE('%e%h%g', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monThe ISO 8601 year without century as a decimal number (00-99) | 11Jan24 |
FORMAT_DATE('%e%m%Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, day of year | 11012024 Day 011 |
FORMAT_DATE('%e%m%E4Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 9999) - Plus, day of year | 11012024 Day 011 |
FORMAT_DATE('%e%m%y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, day of year | 110124 Day 011 |
FORMAT_DATE('%e%m%G Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, day of year | 11012024 Day 011 |
FORMAT_DATE('%e%m%g Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 110124 Day 011 |
FORMAT_DATE('%e%B%Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year with century as a decimal number - Plus, day of year | 11January2024 Day 011 |
FORMAT_DATE('%e%b%Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe year with century as a decimal number - Plus, day of year | 11Jan2024 Day 011 |
FORMAT_DATE('%e%h%Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of year | 11Jan2024 Day 011 |
FORMAT_DATE('%e%B%E4Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month Four-character years (0001 9999) - Plus, day of year | 11January2024 Day 011 |
FORMAT_DATE('%e%b%E4Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameFour-character years (0001 9999) - Plus, day of year | 11Jan2024 Day 011 |
FORMAT_DATE('%e%h%E4Y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameFour-character years (0001 9999) - Plus, day of year | 11Jan2024 Day 011 |
FORMAT_DATE('%e%B%y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year without century as a decimal number (00-99) - Plus, day of year | 11January24 Day 011 |
FORMAT_DATE('%e%b%y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe year without century as a decimal number (00-99) - Plus, day of year | 11Jan24 Day 011 |
FORMAT_DATE('%e%h%y Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe year without century as a decimal number (00-99) - Plus, day of year | 11Jan24 Day 011 |
FORMAT_DATE('%e%B%G Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year with century as a decimal number - Plus, day of year | 11January2024 Day 011 |
FORMAT_DATE('%e%b%G Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe ISO 8601 year with century as a decimal number - Plus, day of year | 11Jan2024 Day 011 |
FORMAT_DATE('%e%h%G Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe ISO 8601 year with century as a decimal number - Plus, day of year | 11Jan2024 Day 011 |
FORMAT_DATE('%e%B%g Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11January24 Day 011 |
FORMAT_DATE('%e%b%g Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11Jan24 Day 011 |
FORMAT_DATE('%e%h%g Day %j', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 11Jan24 Day 011 |
FORMAT_DATE('%e-%m-%Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, day of the week | 11-01-2024 Thursday |
FORMAT_DATE('%e-%m-%E4Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) - Four-character years (0001 . 9999) - Plus, day of the week | 11-01-2024 Thursday |
FORMAT_DATE('%e-%m-%y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, day of the week | 11-01-24 Thursday |
FORMAT_DATE('%e-%m-%G %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, day of the week | 11-01-2024 Thursday |
FORMAT_DATE('%e-%m-%g %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11-01-24 Thursday |
FORMAT_DATE('%e-%B-%Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name - The year with century as a decimal number - Plus, day of the week | 11-January-2024 Thursday |
FORMAT_DATE('%e-%b-%Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week | 11-Jan-2024 Thursday |
FORMAT_DATE('%e-%h-%Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name dd The year with century as a decimal number - Plus, day of the week | 11-Jan-2024 Thursday |
FORMAT_DATE('%e-%B-%E4Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name - Four-character years (0001 . 9999) - Plus, day of the week | 11-January-2024 Thursday |
FORMAT_DATE('%e-%b-%E4Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of the week | 11-Jan-2024 Thursday |
FORMAT_DATE('%e-%h-%E4Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of the week | 11-Jan-2024 Thursday |
FORMAT_DATE('%e-%B-%y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name - The year without century as a decimal number (00-99) - Plus, day of the week | 11-January-24 Thursday |
FORMAT_DATE('%e-%b-%y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week | 11-Jan-24 Thursday |
FORMAT_DATE('%e-%h-%y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week | 11-Jan-24 Thursday |
FORMAT_DATE('%e-%B-%G %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name - The ISO 8601 year with century as a decimal number - Plus, day of the week | 11-January-2024 Thursday |
FORMAT_DATE('%e-%b-%G %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week | 11-Jan-2024 Thursday |
FORMAT_DATE('%e-%h-%G %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week | 11-Jan-2024 Thursday |
FORMAT_DATE('%e-%B-%g %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11-January-24 Thursday |
FORMAT_DATE('%e-%b-%g %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11-Jan-24 Thursday |
FORMAT_DATE('%e-%h-%g %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11-Jan-24 Thursday |
FORMAT_DATE('%e/%m/%Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, day of the week | 11/01/2024 Thursday |
FORMAT_DATE('%e/%m/%E4Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) - Plus, day of the week | 11/01/2024 Thursday |
FORMAT_DATE('%e/%m/%y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, day of the week | 11/01/24 Thursday |
FORMAT_DATE('%e/%m/%G %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, day of the week | 11/01/2024 Thursday |
FORMAT_DATE('%e/%m/%g %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11/01/24 Thursday |
FORMAT_DATE('%e/%B/%Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/ The year with century as a decimal number - Plus, day of the week | 11/January/2024 Thursday |
FORMAT_DATE('%e/%b/%Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week | 11/Jan/2024 Thursday |
FORMAT_DATE('%e/%h/%Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week | 11/Jan/2024 Thursday |
FORMAT_DATE('%e/%B/%E4Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/ Four-character years (0001 . 9999) - Plus, day of the week | 11/January/2024 Thursday |
FORMAT_DATE('%e/%b/%E4Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of the week | 11/Jan/2024 Thursday |
FORMAT_DATE('%e/%h/%E4Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of the week | 11/Jan/2024 Thursday |
FORMAT_DATE('%e/%B/%y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/ The year without century as a decimal number (00-99) - Plus, day of the week | 11/January/24 Thursday |
FORMAT_DATE('%e/%b/%y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week | 11/Jan/24 Thursday |
FORMAT_DATE('%e/%h/%y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week | 11/Jan/24 Thursday |
FORMAT_DATE('%e/%B/%G %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/ The ISO 8601 year with century as a decimal number - Plus, day of the week | 11/January/2024 Thursday |
FORMAT_DATE('%e/%b/%G %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week | 11/Jan/2024 Thursday |
FORMAT_DATE('%e/%h/%G %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week | 11/Jan/2024 Thursday |
FORMAT_DATE('%e/%B/%g %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/ The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11/January/24 Thursday |
FORMAT_DATE('%e/%b/%g %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11/Jan/24 Thursday |
FORMAT_DATE('%e/%h/%g %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11/Jan/24 Thursday |
FORMAT_DATE('%e:%m:%Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, day of the week | 11:01:2024 Thursday |
FORMAT_DATE('%e:%m:%E4Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) - Plus, day of the week | 11:01:2024 Thursday |
FORMAT_DATE('%e:%m:%y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, day of the week | 11:01:24 Thursday |
FORMAT_DATE('%e:%m:%G %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, day of the week | 11:01:2024 Thursday |
FORMAT_DATE('%e:%m:%g %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11:01:24 Thursday |
FORMAT_DATE('%e:%B:%Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month: The year with century as a decimal number - Plus, day of the week | 11:January:2024 Thursday |
FORMAT_DATE('%e:%b:%Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week | 11:Jan:2024 Thursday |
FORMAT_DATE('%e:%h:%Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week | 11:Jan:2024 Thursday |
FORMAT_DATE('%e:%B:%E4Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month: Four-character years (0001 . 9999) - Plus, day of the week | 11:January:2024 Thursday |
FORMAT_DATE('%e:%b:%E4Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of the week | 11:Jan:2024 Thursday |
FORMAT_DATE('%e:%h:%E4Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of the week | 11:Jan:2024 Thursday |
FORMAT_DATE('%e:%B:%y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month: The year without century as a decimal number (00-99) - Plus, day of the week | 11:January:24 Thursday |
FORMAT_DATE('%e:%b:%y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week | 11:Jan:24 Thursday |
FORMAT_DATE('%e:%h:%y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week | 11:Jan:24 Thursday |
FORMAT_DATE('%e:%B:%G %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month: The ISO 8601 year with century as a decimal number - Plus, day of the week | 11:January:2024 Thursday |
FORMAT_DATE('%e:%b:%G %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week | 11:Jan:2024 Thursday |
FORMAT_DATE('%e:%h:%G %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week | 11:Jan:2024 Thursday |
FORMAT_DATE('%e:%B:%g %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month: The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11:January:24 Thursday |
FORMAT_DATE('%e:%b:%g %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11:Jan:24 Thursday |
FORMAT_DATE('%e:%h:%g %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11:Jan:24 Thursday |
FORMAT_DATE('%e.%m.%Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, day of the week | 11.01.2024 Thursday |
FORMAT_DATE('%e.%m.%E4Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) - Plus, day of the week | 11.01.2024 Thursday |
FORMAT_DATE('%e.%m.%y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, day of the week | 11.01.24 Thursday |
FORMAT_DATE('%e.%m.%G %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, day of the week | 11.01.2024 Thursday |
FORMAT_DATE('%e.%m.%g %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11.01.24 Thursday |
FORMAT_DATE('%e.%B.%Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month. The year with century as a decimal number - Plus, day of the week | 11.January.2024 Thursday |
FORMAT_DATE('%e.%b.%Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week | 11.Jan.2024 Thursday |
FORMAT_DATE('%e.%h.%Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week | 11.Jan.2024 Thursday |
FORMAT_DATE('%e.%B.%E4Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month. Four-character years (0001 . 9999) - Plus, day of the week | 11.January.2024 Thursday |
FORMAT_DATE('%e.%b.%E4Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of the week | 11.Jan.2024 Thursday |
FORMAT_DATE('%e.%h.%E4Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of the week | 11.Jan.2024 Thursday |
FORMAT_DATE('%e.%B.%y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month. The year without century as a decimal number (00-99) - Plus, day of the week | 11.January.24 Thursday |
FORMAT_DATE('%e.%b.%y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week | 11.Jan.24 Thursday |
FORMAT_DATE('%e.%h.%y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week | 11.Jan.24 Thursday |
FORMAT_DATE('%e.%B.%G %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month. The ISO 8601 year with century as a decimal number - Plus, day of the week | 11.January.2024 Thursday |
FORMAT_DATE('%e.%b.%G %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week | 11.Jan.2024 Thursday |
FORMAT_DATE('%e.%h.%G %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week | 11.Jan.2024 Thursday |
FORMAT_DATE('%e.%B.%g %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month. The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11.January.24 Thursday |
FORMAT_DATE('%e.%b.%g %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11.Jan.24 Thursday |
FORMAT_DATE('%e.%h.%g %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11.Jan.24 Thursday |
FORMAT_DATE('%e %m %Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, day of the week | 11 01 2024 Thursday |
FORMAT_DATE('%e %m %E4Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 9999) - Plus, day of the week | 11 01 2024 Thursday |
FORMAT_DATE('%e %m %y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, day of the week | 11 01 24 Thursday |
FORMAT_DATE('%e %m %G %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, day of the week | 11 01 2024 Thursday |
FORMAT_DATE('%e %m %g %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11 01 24 Thursday |
FORMAT_DATE('%e %B %Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year with century as a decimal number - Plus, day of the week | 11 January 2024 Thursday |
FORMAT_DATE('%e %b %Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week | 11 Jan 2024 Thursday |
FORMAT_DATE('%e %h %Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week | 11 Jan 2024 Thursday |
FORMAT_DATE('%e %B %E4Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month Four-character years (0001 9999) - Plus, day of the week | 11 January 2024 Thursday |
FORMAT_DATE('%e %b %E4Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 9999) - Plus, day of the week | 11 Jan 2024 Thursday |
FORMAT_DATE('%e %h %E4Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 9999) - Plus, day of the week | 11 Jan 2024 Thursday |
FORMAT_DATE('%e %B %y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year without century as a decimal number (00-99) - Plus, day of the week | 11 January 24 Thursday |
FORMAT_DATE('%e %b %y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week | 11 Jan 24 Thursday |
FORMAT_DATE('%e %h %y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week | 11 Jan 24 Thursday |
FORMAT_DATE('%e %B %G %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year with century as a decimal number - Plus, day of the week | 11 January 2024 Thursday |
FORMAT_DATE('%e %b %G %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week | 11 Jan 2024 Thursday |
FORMAT_DATE('%e %h %G %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week | 11 Jan 2024 Thursday |
FORMAT_DATE('%e %B %g %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11 January 24 Thursday |
FORMAT_DATE('%e %b %g %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11 Jan 24 Thursday |
FORMAT_DATE('%e %h %g %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11 Jan 24 Thursday |
FORMAT_DATE('%e%m%Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, day of the week | 11012024 Thursday |
FORMAT_DATE('%e%m%E4Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 9999) - Plus, day of the week | 11012024 Thursday |
FORMAT_DATE('%e%m%y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, day of the week | 110124 Thursday |
FORMAT_DATE('%e%m%G %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, day of the week | 11012024 Thursday |
FORMAT_DATE('%e%m%g %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 110124 Thursday |
FORMAT_DATE('%e%B%Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year with century as a decimal number - Plus, day of the week | 11January2024 Thursday |
FORMAT_DATE('%e%b%Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe year with century as a decimal number - Plus, day of the week | 11Jan2024 Thursday |
FORMAT_DATE('%e%h%Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week | 11Jan2024 Thursday |
FORMAT_DATE('%e%B%E4Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month Four-character years (0001 9999) - Plus, day of the week | 11January2024 Thursday |
FORMAT_DATE('%e%b%E4Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameFour-character years (0001 9999) - Plus, day of the week | 11Jan2024 Thursday |
FORMAT_DATE('%e%h%E4Y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameFour-character years (0001 9999) - Plus, day of the week | 11Jan2024 Thursday |
FORMAT_DATE('%e%B%y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year without century as a decimal number (00-99) - Plus, day of the week | 11January24 Thursday |
FORMAT_DATE('%e%b%y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe year without century as a decimal number (00-99) - Plus, day of the week | 11Jan24 Thursday |
FORMAT_DATE('%e%h%y %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe year without century as a decimal number (00-99) - Plus, day of the week | 11Jan24 Thursday |
FORMAT_DATE('%e%B%G %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year with century as a decimal number - Plus, day of the week | 11January2024 Thursday |
FORMAT_DATE('%e%b%G %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe ISO 8601 year with century as a decimal number - Plus, day of the week | 11Jan2024 Thursday |
FORMAT_DATE('%e%h%G %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe ISO 8601 year with century as a decimal number - Plus, day of the week | 11Jan2024 Thursday |
FORMAT_DATE('%e%B%g %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11January24 Thursday |
FORMAT_DATE('%e%b%g %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11Jan24 Thursday |
FORMAT_DATE('%e%h%g %A', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 11Jan24 Thursday |
FORMAT_DATE('%e-%m-%Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, day of the week abbreviated | 11-01-2024 Thu |
FORMAT_DATE('%e-%m-%E4Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) - Four-character years (0001 . 9999) - Plus, day of the week abbreviated | 11-01-2024 Thu |
FORMAT_DATE('%e-%m-%y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11-01-24 Thu |
FORMAT_DATE('%e-%m-%G %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11-01-2024 Thu |
FORMAT_DATE('%e-%m-%g %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11-01-24 Thu |
FORMAT_DATE('%e-%B-%Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name - The year with century as a decimal number - Plus, day of the week abbreviated | 11-January-2024 Thu |
FORMAT_DATE('%e-%b-%Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week abbreviated | 11-Jan-2024 Thu |
FORMAT_DATE('%e-%h-%Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name dd The year with century as a decimal number - Plus, day of the week abbreviated | 11-Jan-2024 Thu |
FORMAT_DATE('%e-%B-%E4Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name - Four-character years (0001 . 9999) - Plus, day of the week abbreviated | 11-January-2024 Thu |
FORMAT_DATE('%e-%b-%E4Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of the week abbreviated | 11-Jan-2024 Thu |
FORMAT_DATE('%e-%h-%E4Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of the week abbreviated | 11-Jan-2024 Thu |
FORMAT_DATE('%e-%B-%y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name - The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11-January-24 Thu |
FORMAT_DATE('%e-%b-%y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11-Jan-24 Thu |
FORMAT_DATE('%e-%h-%y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11-Jan-24 Thu |
FORMAT_DATE('%e-%B-%G %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name - The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11-January-2024 Thu |
FORMAT_DATE('%e-%b-%G %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11-Jan-2024 Thu |
FORMAT_DATE('%e-%h-%G %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11-Jan-2024 Thu |
FORMAT_DATE('%e-%B-%g %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11-January-24 Thu |
FORMAT_DATE('%e-%b-%g %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11-Jan-24 Thu |
FORMAT_DATE('%e-%h-%g %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11-Jan-24 Thu |
FORMAT_DATE('%e/%m/%Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, day of the week abbreviated | 11/01/2024 Thu |
FORMAT_DATE('%e/%m/%E4Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) - Plus, day of the week abbreviated | 11/01/2024 Thu |
FORMAT_DATE('%e/%m/%y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11/01/24 Thu |
FORMAT_DATE('%e/%m/%G %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11/01/2024 Thu |
FORMAT_DATE('%e/%m/%g %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11/01/24 Thu |
FORMAT_DATE('%e/%B/%Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/ The year with century as a decimal number - Plus, day of the week abbreviated | 11/January/2024 Thu |
FORMAT_DATE('%e/%b/%Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week abbreviated | 11/Jan/2024 Thu |
FORMAT_DATE('%e/%h/%Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week abbreviated | 11/Jan/2024 Thu |
FORMAT_DATE('%e/%B/%E4Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/ Four-character years (0001 . 9999) - Plus, day of the week abbreviated | 11/January/2024 Thu |
FORMAT_DATE('%e/%b/%E4Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of the week abbreviated | 11/Jan/2024 Thu |
FORMAT_DATE('%e/%h/%E4Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of the week abbreviated | 11/Jan/2024 Thu |
FORMAT_DATE('%e/%B/%y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/ The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11/January/24 Thu |
FORMAT_DATE('%e/%b/%y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11/Jan/24 Thu |
FORMAT_DATE('%e/%h/%y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11/Jan/24 Thu |
FORMAT_DATE('%e/%B/%G %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/ The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11/January/2024 Thu |
FORMAT_DATE('%e/%b/%G %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11/Jan/2024 Thu |
FORMAT_DATE('%e/%h/%G %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11/Jan/2024 Thu |
FORMAT_DATE('%e/%B/%g %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/ The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11/January/24 Thu |
FORMAT_DATE('%e/%b/%g %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11/Jan/24 Thu |
FORMAT_DATE('%e/%h/%g %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11/Jan/24 Thu |
FORMAT_DATE('%e:%m:%Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, day of the week abbreviated | 11:01:2024 Thu |
FORMAT_DATE('%e:%m:%E4Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) - Plus, day of the week abbreviated | 11:01:2024 Thu |
FORMAT_DATE('%e:%m:%y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11:01:24 Thu |
FORMAT_DATE('%e:%m:%G %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11:01:2024 Thu |
FORMAT_DATE('%e:%m:%g %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11:01:24 Thu |
FORMAT_DATE('%e:%B:%Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month: The year with century as a decimal number - Plus, day of the week abbreviated | 11:January:2024 Thu |
FORMAT_DATE('%e:%b:%Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week abbreviated | 11:Jan:2024 Thu |
FORMAT_DATE('%e:%h:%Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week abbreviated | 11:Jan:2024 Thu |
FORMAT_DATE('%e:%B:%E4Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month: Four-character years (0001 . 9999) - Plus, day of the week abbreviated | 11:January:2024 Thu |
FORMAT_DATE('%e:%b:%E4Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of the week abbreviated | 11:Jan:2024 Thu |
FORMAT_DATE('%e:%h:%E4Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of the week abbreviated | 11:Jan:2024 Thu |
FORMAT_DATE('%e:%B:%y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month: The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11:January:24 Thu |
FORMAT_DATE('%e:%b:%y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11:Jan:24 Thu |
FORMAT_DATE('%e:%h:%y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11:Jan:24 Thu |
FORMAT_DATE('%e:%B:%G %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month: The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11:January:2024 Thu |
FORMAT_DATE('%e:%b:%G %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11:Jan:2024 Thu |
FORMAT_DATE('%e:%h:%G %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11:Jan:2024 Thu |
FORMAT_DATE('%e:%B:%g %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month: The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11:January:24 Thu |
FORMAT_DATE('%e:%b:%g %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11:Jan:24 Thu |
FORMAT_DATE('%e:%h:%g %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11:Jan:24 Thu |
FORMAT_DATE('%e.%m.%Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, day of the week abbreviated | 11.01.2024 Thu |
FORMAT_DATE('%e.%m.%E4Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) - Plus, day of the week abbreviated | 11.01.2024 Thu |
FORMAT_DATE('%e.%m.%y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11.01.24 Thu |
FORMAT_DATE('%e.%m.%G %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11.01.2024 Thu |
FORMAT_DATE('%e.%m.%g %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11.01.24 Thu |
FORMAT_DATE('%e.%B.%Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month. The year with century as a decimal number - Plus, day of the week abbreviated | 11.January.2024 Thu |
FORMAT_DATE('%e.%b.%Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week abbreviated | 11.Jan.2024 Thu |
FORMAT_DATE('%e.%h.%Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week abbreviated | 11.Jan.2024 Thu |
FORMAT_DATE('%e.%B.%E4Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month. Four-character years (0001 . 9999) - Plus, day of the week abbreviated | 11.January.2024 Thu |
FORMAT_DATE('%e.%b.%E4Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of the week abbreviated | 11.Jan.2024 Thu |
FORMAT_DATE('%e.%h.%E4Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of the week abbreviated | 11.Jan.2024 Thu |
FORMAT_DATE('%e.%B.%y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month. The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11.January.24 Thu |
FORMAT_DATE('%e.%b.%y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11.Jan.24 Thu |
FORMAT_DATE('%e.%h.%y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11.Jan.24 Thu |
FORMAT_DATE('%e.%B.%G %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month. The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11.January.2024 Thu |
FORMAT_DATE('%e.%b.%G %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11.Jan.2024 Thu |
FORMAT_DATE('%e.%h.%G %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11.Jan.2024 Thu |
FORMAT_DATE('%e.%B.%g %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month. The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11.January.24 Thu |
FORMAT_DATE('%e.%b.%g %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11.Jan.24 Thu |
FORMAT_DATE('%e.%h.%g %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11.Jan.24 Thu |
FORMAT_DATE('%e %m %Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, day of the week abbreviated | 11 01 2024 Thu |
FORMAT_DATE('%e %m %E4Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 9999) - Plus, day of the week abbreviated | 11 01 2024 Thu |
FORMAT_DATE('%e %m %y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11 01 24 Thu |
FORMAT_DATE('%e %m %G %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11 01 2024 Thu |
FORMAT_DATE('%e %m %g %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11 01 24 Thu |
FORMAT_DATE('%e %B %Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year with century as a decimal number - Plus, day of the week abbreviated | 11 January 2024 Thu |
FORMAT_DATE('%e %b %Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week abbreviated | 11 Jan 2024 Thu |
FORMAT_DATE('%e %h %Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week abbreviated | 11 Jan 2024 Thu |
FORMAT_DATE('%e %B %E4Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month Four-character years (0001 9999) - Plus, day of the week abbreviated | 11 January 2024 Thu |
FORMAT_DATE('%e %b %E4Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 9999) - Plus, day of the week abbreviated | 11 Jan 2024 Thu |
FORMAT_DATE('%e %h %E4Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 9999) - Plus, day of the week abbreviated | 11 Jan 2024 Thu |
FORMAT_DATE('%e %B %y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11 January 24 Thu |
FORMAT_DATE('%e %b %y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11 Jan 24 Thu |
FORMAT_DATE('%e %h %y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11 Jan 24 Thu |
FORMAT_DATE('%e %B %G %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11 January 2024 Thu |
FORMAT_DATE('%e %b %G %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11 Jan 2024 Thu |
FORMAT_DATE('%e %h %G %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11 Jan 2024 Thu |
FORMAT_DATE('%e %B %g %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11 January 24 Thu |
FORMAT_DATE('%e %b %g %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11 Jan 24 Thu |
FORMAT_DATE('%e %h %g %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11 Jan 24 Thu |
FORMAT_DATE('%e%m%Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, day of the week abbreviated | 11012024 Thu |
FORMAT_DATE('%e%m%E4Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 9999) - Plus, day of the week abbreviated | 11012024 Thu |
FORMAT_DATE('%e%m%y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 110124 Thu |
FORMAT_DATE('%e%m%G %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11012024 Thu |
FORMAT_DATE('%e%m%g %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 110124 Thu |
FORMAT_DATE('%e%B%Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year with century as a decimal number - Plus, day of the week abbreviated | 11January2024 Thu |
FORMAT_DATE('%e%b%Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe year with century as a decimal number - Plus, day of the week abbreviated | 11Jan2024 Thu |
FORMAT_DATE('%e%h%Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week abbreviated | 11Jan2024 Thu |
FORMAT_DATE('%e%B%E4Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month Four-character years (0001 9999) - Plus, day of the week abbreviated | 11January2024 Thu |
FORMAT_DATE('%e%b%E4Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameFour-character years (0001 9999) - Plus, day of the week abbreviated | 11Jan2024 Thu |
FORMAT_DATE('%e%h%E4Y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameFour-character years (0001 9999) - Plus, day of the week abbreviated | 11Jan2024 Thu |
FORMAT_DATE('%e%B%y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11January24 Thu |
FORMAT_DATE('%e%b%y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11Jan24 Thu |
FORMAT_DATE('%e%h%y %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11Jan24 Thu |
FORMAT_DATE('%e%B%G %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11January2024 Thu |
FORMAT_DATE('%e%b%G %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11Jan2024 Thu |
FORMAT_DATE('%e%h%G %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 11Jan2024 Thu |
FORMAT_DATE('%e%B%g %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11January24 Thu |
FORMAT_DATE('%e%b%g %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11Jan24 Thu |
FORMAT_DATE('%e%h%g %a', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 11Jan24 Thu |
FORMAT_DATE('%e-%m-%Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -qtr The year with century as a decimal number - Plus, the quarter | 11-01-2024 Quarter 1 |
FORMAT_DATE('%e-%m-%E4Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -qtr Four-character years (0001 . 9999) - Plus, the quarter | 11-01-2024 Quarter 1 |
FORMAT_DATE('%e-%m-%y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -qtr The year without century as a decimal number (00-99) - Plus, the quarter | 11-01-24 Quarter 1 |
FORMAT_DATE('%e-%m-%G Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 11-01-2024 Quarter 1 |
FORMAT_DATE('%e-%m-%g Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11-01-24 Quarter 1 |
FORMAT_DATE('%e-%B-%Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -qtr The year with century as a decimal number - Plus, the quarter | 11-January-2024 Quarter 1 |
FORMAT_DATE('%e-%b-%Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year with century as a decimal number - Plus, the quarter | 11-Jan-2024 Quarter 1 |
FORMAT_DATE('%e-%h-%Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name dd qtr The year with century as a decimal number - Plus, the quarter | 11-Jan-2024 Quarter 1 |
FORMAT_DATE('%e-%B-%E4Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -qtr Four-character years (0001 . 9999) - Plus, the quarter | 11-January-2024 Quarter 1 |
FORMAT_DATE('%e-%b-%E4Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr Four-character years (0001 . 9999) - Plus, the quarter | 11-Jan-2024 Quarter 1 |
FORMAT_DATE('%e-%h-%E4Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr Four-character years (0001 . 9999) - Plus, the quarter | 11-Jan-2024 Quarter 1 |
FORMAT_DATE('%e-%B-%y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -qtr The year without century as a decimal number (00-99) - Plus, the quarter | 11-January-24 Quarter 1 |
FORMAT_DATE('%e-%b-%y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year without century as a decimal number (00-99) - Plus, the quarter | 11-Jan-24 Quarter 1 |
FORMAT_DATE('%e-%h-%y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year without century as a decimal number (00-99) - Plus, the quarter | 11-Jan-24 Quarter 1 |
FORMAT_DATE('%e-%B-%G Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 11-January-2024 Quarter 1 |
FORMAT_DATE('%e-%b-%G Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 11-Jan-2024 Quarter 1 |
FORMAT_DATE('%e-%h-%G Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 11-Jan-2024 Quarter 1 |
FORMAT_DATE('%e-%B-%g Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11-January-24 Quarter 1 |
FORMAT_DATE('%e-%b-%g Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11-Jan-24 Quarter 1 |
FORMAT_DATE('%e-%h-%g Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11-Jan-24 Quarter 1 |
FORMAT_DATE('%e/%m/%Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The year with century as a decimal number - Plus, the quarter | 11/01/2024 Quarter 1 |
FORMAT_DATE('%e/%m/%E4Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr Four-character years (0001 . 9999) - Plus, the quarter | 11/01/2024 Quarter 1 |
FORMAT_DATE('%e/%m/%y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The year without century as a decimal number (00-99) - Plus, the quarter | 11/01/24 Quarter 1 |
FORMAT_DATE('%e/%m/%G Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 11/01/2024 Quarter 1 |
FORMAT_DATE('%e/%m/%g Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11/01/24 Quarter 1 |
FORMAT_DATE('%e/%B/%Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/qtr The year with century as a decimal number - Plus, the quarter | 11/January/2024 Quarter 1 |
FORMAT_DATE('%e/%b/%Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year with century as a decimal number - Plus, the quarter | 11/Jan/2024 Quarter 1 |
FORMAT_DATE('%e/%h/%Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year with century as a decimal number - Plus, the quarter | 11/Jan/2024 Quarter 1 |
FORMAT_DATE('%e/%B/%E4Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/qtr Four-character years (0001 . 9999) - Plus, the quarter | 11/January/2024 Quarter 1 |
FORMAT_DATE('%e/%b/%E4Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr Four-character years (0001 . 9999) - Plus, the quarter | 11/Jan/2024 Quarter 1 |
FORMAT_DATE('%e/%h/%E4Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr Four-character years (0001 . 9999) - Plus, the quarter | 11/Jan/2024 Quarter 1 |
FORMAT_DATE('%e/%B/%y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/qtr The year without century as a decimal number (00-99) - Plus, the quarter | 11/January/24 Quarter 1 |
FORMAT_DATE('%e/%b/%y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year without century as a decimal number (00-99) - Plus, the quarter | 11/Jan/24 Quarter 1 |
FORMAT_DATE('%e/%h/%y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year without century as a decimal number (00-99) - Plus, the quarter | 11/Jan/24 Quarter 1 |
FORMAT_DATE('%e/%B/%G Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 11/January/2024 Quarter 1 |
FORMAT_DATE('%e/%b/%G Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 11/Jan/2024 Quarter 1 |
FORMAT_DATE('%e/%h/%G Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 11/Jan/2024 Quarter 1 |
FORMAT_DATE('%e/%B/%g Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11/January/24 Quarter 1 |
FORMAT_DATE('%e/%b/%g Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11/Jan/24 Quarter 1 |
FORMAT_DATE('%e/%h/%g Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11/Jan/24 Quarter 1 |
FORMAT_DATE('%e:%m:%Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The year with century as a decimal number - Plus, the quarter | 11:01:2024 Quarter 1 |
FORMAT_DATE('%e:%m:%E4Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr Four-character years (0001 . 9999) - Plus, the quarter | 11:01:2024 Quarter 1 |
FORMAT_DATE('%e:%m:%y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The year without century as a decimal number (00-99) - Plus, the quarter | 11:01:24 Quarter 1 |
FORMAT_DATE('%e:%m:%G Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 11:01:2024 Quarter 1 |
FORMAT_DATE('%e:%m:%g Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11:01:24 Quarter 1 |
FORMAT_DATE('%e:%B:%Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:qtr The year with century as a decimal number - Plus, the quarter | 11:January:2024 Quarter 1 |
FORMAT_DATE('%e:%b:%Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year with century as a decimal number - Plus, the quarter | 11:Jan:2024 Quarter 1 |
FORMAT_DATE('%e:%h:%Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year with century as a decimal number - Plus, the quarter | 11:Jan:2024 Quarter 1 |
FORMAT_DATE('%e:%B:%E4Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:qtr Four-character years (0001 . 9999) - Plus, the quarter | 11:January:2024 Quarter 1 |
FORMAT_DATE('%e:%b:%E4Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr Four-character years (0001 . 9999) - Plus, the quarter | 11:Jan:2024 Quarter 1 |
FORMAT_DATE('%e:%h:%E4Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr Four-character years (0001 . 9999) - Plus, the quarter | 11:Jan:2024 Quarter 1 |
FORMAT_DATE('%e:%B:%y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:qtr The year without century as a decimal number (00-99) - Plus, the quarter | 11:January:24 Quarter 1 |
FORMAT_DATE('%e:%b:%y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year without century as a decimal number (00-99) - Plus, the quarter | 11:Jan:24 Quarter 1 |
FORMAT_DATE('%e:%h:%y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year without century as a decimal number (00-99) - Plus, the quarter | 11:Jan:24 Quarter 1 |
FORMAT_DATE('%e:%B:%G Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 11:January:2024 Quarter 1 |
FORMAT_DATE('%e:%b:%G Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 11:Jan:2024 Quarter 1 |
FORMAT_DATE('%e:%h:%G Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 11:Jan:2024 Quarter 1 |
FORMAT_DATE('%e:%B:%g Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11:January:24 Quarter 1 |
FORMAT_DATE('%e:%b:%g Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11:Jan:24 Quarter 1 |
FORMAT_DATE('%e:%h:%g Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11:Jan:24 Quarter 1 |
FORMAT_DATE('%e.%m.%Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The year with century as a decimal number - Plus, the quarter | 11.01.2024 Quarter 1 |
FORMAT_DATE('%e.%m.%E4Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr Four-character years (0001 . 9999) - Plus, the quarter | 11.01.2024 Quarter 1 |
FORMAT_DATE('%e.%m.%y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The year without century as a decimal number (00-99) - Plus, the quarter | 11.01.24 Quarter 1 |
FORMAT_DATE('%e.%m.%G Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 11.01.2024 Quarter 1 |
FORMAT_DATE('%e.%m.%g Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11.01.24 Quarter 1 |
FORMAT_DATE('%e.%B.%Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.qtr The year with century as a decimal number - Plus, the quarter | 11.January.2024 Quarter 1 |
FORMAT_DATE('%e.%b.%Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year with century as a decimal number - Plus, the quarter | 11.Jan.2024 Quarter 1 |
FORMAT_DATE('%e.%h.%Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year with century as a decimal number - Plus, the quarter | 11.Jan.2024 Quarter 1 |
FORMAT_DATE('%e.%B.%E4Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.qtr Four-character years (0001 . 9999) - Plus, the quarter | 11.January.2024 Quarter 1 |
FORMAT_DATE('%e.%b.%E4Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr Four-character years (0001 . 9999) - Plus, the quarter | 11.Jan.2024 Quarter 1 |
FORMAT_DATE('%e.%h.%E4Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr Four-character years (0001 . 9999) - Plus, the quarter | 11.Jan.2024 Quarter 1 |
FORMAT_DATE('%e.%B.%y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.qtr The year without century as a decimal number (00-99) - Plus, the quarter | 11.January.24 Quarter 1 |
FORMAT_DATE('%e.%b.%y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year without century as a decimal number (00-99) - Plus, the quarter | 11.Jan.24 Quarter 1 |
FORMAT_DATE('%e.%h.%y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year without century as a decimal number (00-99) - Plus, the quarter | 11.Jan.24 Quarter 1 |
FORMAT_DATE('%e.%B.%G Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 11.January.2024 Quarter 1 |
FORMAT_DATE('%e.%b.%G Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 11.Jan.2024 Quarter 1 |
FORMAT_DATE('%e.%h.%G Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 11.Jan.2024 Quarter 1 |
FORMAT_DATE('%e.%B.%g Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11.January.24 Quarter 1 |
FORMAT_DATE('%e.%b.%g Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11.Jan.24 Quarter 1 |
FORMAT_DATE('%e.%h.%g Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11.Jan.24 Quarter 1 |
FORMAT_DATE('%e %m %Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The year with century as a decimal number - Plus, the quarter | 11 01 2024 Quarter 1 |
FORMAT_DATE('%e %m %E4Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr Four-character years (0001 9999) - Plus, the quarter | 11 01 2024 Quarter 1 |
FORMAT_DATE('%e %m %y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The year without century as a decimal number (00-99) - Plus, the quarter | 11 01 24 Quarter 1 |
FORMAT_DATE('%e %m %G Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 11 01 2024 Quarter 1 |
FORMAT_DATE('%e %m %g Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11 01 24 Quarter 1 |
FORMAT_DATE('%e %B %Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month qtr The year with century as a decimal number - Plus, the quarter | 11 January 2024 Quarter 1 |
FORMAT_DATE('%e %b %Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year with century as a decimal number - Plus, the quarter | 11 Jan 2024 Quarter 1 |
FORMAT_DATE('%e %h %Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year with century as a decimal number - Plus, the quarter | 11 Jan 2024 Quarter 1 |
FORMAT_DATE('%e %B %E4Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month qtr Four-character years (0001 9999) - Plus, the quarter | 11 January 2024 Quarter 1 |
FORMAT_DATE('%e %b %E4Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr Four-character years (0001 9999) - Plus, the quarter | 11 Jan 2024 Quarter 1 |
FORMAT_DATE('%e %h %E4Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr Four-character years (0001 9999) - Plus, the quarter | 11 Jan 2024 Quarter 1 |
FORMAT_DATE('%e %B %y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month qtr The year without century as a decimal number (00-99) - Plus, the quarter | 11 January 24 Quarter 1 |
FORMAT_DATE('%e %b %y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year without century as a decimal number (00-99) - Plus, the quarter | 11 Jan 24 Quarter 1 |
FORMAT_DATE('%e %h %y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year without century as a decimal number (00-99) - Plus, the quarter | 11 Jan 24 Quarter 1 |
FORMAT_DATE('%e %B %G Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 11 January 2024 Quarter 1 |
FORMAT_DATE('%e %b %G Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 11 Jan 2024 Quarter 1 |
FORMAT_DATE('%e %h %G Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 11 Jan 2024 Quarter 1 |
FORMAT_DATE('%e %B %g Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11 January 24 Quarter 1 |
FORMAT_DATE('%e %b %g Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11 Jan 24 Quarter 1 |
FORMAT_DATE('%e %h %g Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11 Jan 24 Quarter 1 |
FORMAT_DATE('%e%m%Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The year with century as a decimal number - Plus, the quarter | 11012024 Quarter 1 |
FORMAT_DATE('%e%m%E4Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr Four-character years (0001 9999) - Plus, the quarter | 11012024 Quarter 1 |
FORMAT_DATE('%e%m%y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The year without century as a decimal number (00-99) - Plus, the quarter | 110124 Quarter 1 |
FORMAT_DATE('%e%m%G Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 11012024 Quarter 1 |
FORMAT_DATE('%e%m%g Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 110124 Quarter 1 |
FORMAT_DATE('%e%B%Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthqtr The year with century as a decimal number - Plus, the quarter | 11January2024 Quarter 1 |
FORMAT_DATE('%e%b%Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monqtr The year with century as a decimal number - Plus, the quarter | 11Jan2024 Quarter 1 |
FORMAT_DATE('%e%h%Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameqtr The year with century as a decimal number - Plus, the quarter | 11Jan2024 Quarter 1 |
FORMAT_DATE('%e%B%E4Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthqtr Four-character years (0001 9999) - Plus, the quarter | 11January2024 Quarter 1 |
FORMAT_DATE('%e%b%E4Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monqtr Four-character years (0001 9999) - Plus, the quarter | 11Jan2024 Quarter 1 |
FORMAT_DATE('%e%h%E4Y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monqtr Four-character years (0001 9999) - Plus, the quarter | 11Jan2024 Quarter 1 |
FORMAT_DATE('%e%B%y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthqtr The year without century as a decimal number (00-99) - Plus, the quarter | 11January24 Quarter 1 |
FORMAT_DATE('%e%b%y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monqtr The year without century as a decimal number (00-99) - Plus, the quarter | 11Jan24 Quarter 1 |
FORMAT_DATE('%e%h%y Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monqtr The year without century as a decimal number (00-99) - Plus, the quarter | 11Jan24 Quarter 1 |
FORMAT_DATE('%e%B%G Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthqtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 11January2024 Quarter 1 |
FORMAT_DATE('%e%b%G Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monqtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 11Jan2024 Quarter 1 |
FORMAT_DATE('%e%h%G Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monqtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 11Jan2024 Quarter 1 |
FORMAT_DATE('%e%B%g Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthqtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11January24 Quarter 1 |
FORMAT_DATE('%e%b%g Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monqtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11Jan24 Quarter 1 |
FORMAT_DATE('%e%h%g Quarter %Q', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monqtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 11Jan24 Quarter 1 |
FORMAT_DATE('%e-%m-%Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -woy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11-01-2024 Week 01 |
FORMAT_DATE('%e-%m-%E4Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -woy Four-character years (0001 . 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11-01-2024 Week 01 |
FORMAT_DATE('%e-%m-%y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11-01-24 Week 01 |
FORMAT_DATE('%e-%m-%G Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11-01-2024 Week 01 |
FORMAT_DATE('%e-%m-%g Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11-01-24 Week 01 |
FORMAT_DATE('%e-%B-%Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -woy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11-January-2024 Week 01 |
FORMAT_DATE('%e-%b-%Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11-Jan-2024 Week 01 |
FORMAT_DATE('%e-%h-%Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name dd woy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11-Jan-2024 Week 01 |
FORMAT_DATE('%e-%B-%E4Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -woy Four-character years (0001 . 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11-January-2024 Week 01 |
FORMAT_DATE('%e-%b-%E4Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated Four-character years (0001 . 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11-Jan-2024 Week 01 |
FORMAT_DATE('%e-%h-%E4Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated Four-character years (0001 . 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11-Jan-2024 Week 01 |
FORMAT_DATE('%e-%B-%y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11-January-24 Week 01 |
FORMAT_DATE('%e-%b-%y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11-Jan-24 Week 01 |
FORMAT_DATE('%e-%h-%y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11-Jan-24 Week 01 |
FORMAT_DATE('%e-%B-%G Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11-January-2024 Week 01 |
FORMAT_DATE('%e-%b-%G Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11-Jan-2024 Week 01 |
FORMAT_DATE('%e-%h-%G Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11-Jan-2024 Week 01 |
FORMAT_DATE('%e-%B-%g Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11-January-24 Week 01 |
FORMAT_DATE('%e-%b-%g Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11-Jan-24 Week 01 |
FORMAT_DATE('%e-%h-%g Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11-Jan-24 Week 01 |
FORMAT_DATE('%e/%m/%Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11/01/2024 Week 01 |
FORMAT_DATE('%e/%m/%E4Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy Four-character years (0001 . 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11/01/2024 Week 01 |
FORMAT_DATE('%e/%m/%y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11/01/24 Week 01 |
FORMAT_DATE('%e/%m/%G Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11/01/2024 Week 01 |
FORMAT_DATE('%e/%m/%g Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11/01/24 Week 01 |
FORMAT_DATE('%e/%B/%Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11/January/2024 Week 01 |
FORMAT_DATE('%e/%b/%Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11/Jan/2024 Week 01 |
FORMAT_DATE('%e/%h/%Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11/Jan/2024 Week 01 |
FORMAT_DATE('%e/%B/%E4Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name Four-character years (0001 . 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11/January/2024 Week 01 |
FORMAT_DATE('%e/%b/%E4Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated Four-character years (0001 . 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11/Jan/2024 Week 01 |
FORMAT_DATE('%e/%h/%E4Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated Four-character years (0001 . 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11/Jan/2024 Week 01 |
FORMAT_DATE('%e/%B/%y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11/January/24 Week 01 |
FORMAT_DATE('%e/%b/%y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11/Jan/24 Week 01 |
FORMAT_DATE('%e/%h/%y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11/Jan/24 Week 01 |
FORMAT_DATE('%e/%B/%G Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11/January/2024 Week 01 |
FORMAT_DATE('%e/%b/%G Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11/Jan/2024 Week 01 |
FORMAT_DATE('%e/%h/%G Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11/Jan/2024 Week 01 |
FORMAT_DATE('%e/%B/%g Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11/January/24 Week 01 |
FORMAT_DATE('%e/%b/%g Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11/Jan/24 Week 01 |
FORMAT_DATE('%e/%h/%g Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11/Jan/24 Week 01 |
FORMAT_DATE('%e:%m:%Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11:01:2024 Week 01 |
FORMAT_DATE('%e:%m:%E4Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11:01:2024 Week 01 |
FORMAT_DATE('%e:%m:%y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11:01:24 Week 01 |
FORMAT_DATE('%e:%m:%G Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11:01:2024 Week 01 |
FORMAT_DATE('%e:%m:%g Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11:01:24 Week 01 |
FORMAT_DATE('%e:%B:%Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:woy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11:January:2024 Week 01 |
FORMAT_DATE('%e:%b:%Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11:Jan:2024 Week 01 |
FORMAT_DATE('%e:%h:%Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11:Jan:2024 Week 01 |
FORMAT_DATE('%e:%B:%E4Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:woy Four-character years (0001 . 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11:January:2024 Week 01 |
FORMAT_DATE('%e:%b:%E4Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated Four-character years (0001 . 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11:Jan:2024 Week 01 |
FORMAT_DATE('%e:%h:%E4Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated Four-character years (0001 . 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11:Jan:2024 Week 01 |
FORMAT_DATE('%e:%B:%y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11:January:24 Week 01 |
FORMAT_DATE('%e:%b:%y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11:Jan:24 Week 01 |
FORMAT_DATE('%e:%h:%y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11:Jan:24 Week 01 |
FORMAT_DATE('%e:%B:%G Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11:January:2024 Week 01 |
FORMAT_DATE('%e:%b:%G Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11:Jan:2024 Week 01 |
FORMAT_DATE('%e:%h:%G Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11:Jan:2024 Week 01 |
FORMAT_DATE('%e:%B:%g Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11:January:24 Week 01 |
FORMAT_DATE('%e:%b:%g Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11:Jan:24 Week 01 |
FORMAT_DATE('%e:%h:%g Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11:Jan:24 Week 01 |
FORMAT_DATE('%e.%m.%Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11.01.2024 Week 01 |
FORMAT_DATE('%e.%m.%E4Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy Four-character years (0001 . 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11.01.2024 Week 01 |
FORMAT_DATE('%e.%m.%y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11.01.24 Week 01 |
FORMAT_DATE('%e.%m.%G Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11.01.2024 Week 01 |
FORMAT_DATE('%e.%m.%g Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11.01.24 Week 01 |
FORMAT_DATE('%e.%B.%Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.woy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11.January.2024 Week 01 |
FORMAT_DATE('%e.%b.%Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11.Jan.2024 Week 01 |
FORMAT_DATE('%e.%h.%Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11.Jan.2024 Week 01 |
FORMAT_DATE('%e.%B.%E4Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.woy Four-character years (0001 . 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11.January.2024 Week 01 |
FORMAT_DATE('%e.%b.%E4Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated Four-character years (0001 . 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11.Jan.2024 Week 01 |
FORMAT_DATE('%e.%h.%E4Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated Four-character years (0001 . 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11.Jan.2024 Week 01 |
FORMAT_DATE('%e.%B.%y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11.January.24 Week 01 |
FORMAT_DATE('%e.%b.%y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11.Jan.24 Week 01 |
FORMAT_DATE('%e.%h.%y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11.Jan.24 Week 01 |
FORMAT_DATE('%e.%B.%G Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11.January.2024 Week 01 |
FORMAT_DATE('%e.%b.%G Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11.Jan.2024 Week 01 |
FORMAT_DATE('%e.%h.%G Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11.Jan.2024 Week 01 |
FORMAT_DATE('%e.%B.%g Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11.January.24 Week 01 |
FORMAT_DATE('%e.%b.%g Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11.Jan.24 Week 01 |
FORMAT_DATE('%e.%h.%g Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11.Jan.24 Week 01 |
FORMAT_DATE('%e %m %Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11 01 2024 Week 01 |
FORMAT_DATE('%e %m %E4Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy Four-character years (0001 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11 01 2024 Week 01 |
FORMAT_DATE('%e %m %y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11 01 24 Week 01 |
FORMAT_DATE('%e %m %G Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11 01 2024 Week 01 |
FORMAT_DATE('%e %m %g Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11 01 24 Week 01 |
FORMAT_DATE('%e %B %Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month woy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11 January 2024 Week 01 |
FORMAT_DATE('%e %b %Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11 Jan 2024 Week 01 |
FORMAT_DATE('%e %h %Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11 Jan 2024 Week 01 |
FORMAT_DATE('%e %B %E4Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month woy Four-character years (0001 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11 January 2024 Week 01 |
FORMAT_DATE('%e %b %E4Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy Four-character years (0001 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11 Jan 2024 Week 01 |
FORMAT_DATE('%e %h %E4Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy Four-character years (0001 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11 Jan 2024 Week 01 |
FORMAT_DATE('%e %B %y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11 January 24 Week 01 |
FORMAT_DATE('%e %b %y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11 Jan 24 Week 01 |
FORMAT_DATE('%e %h %y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11 Jan 24 Week 01 |
FORMAT_DATE('%e %B %G Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11 January 2024 Week 01 |
FORMAT_DATE('%e %b %G Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11 Jan 2024 Week 01 |
FORMAT_DATE('%e %h %G Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11 Jan 2024 Week 01 |
FORMAT_DATE('%e %B %g Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11 January 24 Week 01 |
FORMAT_DATE('%e %b %g Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11 Jan 24 Week 01 |
FORMAT_DATE('%e %h %g Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11 Jan 24 Week 01 |
FORMAT_DATE('%e%m%Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11012024 Week 01 |
FORMAT_DATE('%e%m%E4Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy Four-character years (0001 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11012024 Week 01 |
FORMAT_DATE('%e%m%y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 110124 Week 01 |
FORMAT_DATE('%e%m%G Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11012024 Week 01 |
FORMAT_DATE('%e%m%g Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 110124 Week 01 |
FORMAT_DATE('%e%B%Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthwoy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11January2024 Week 01 |
FORMAT_DATE('%e%b%Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11Jan2024 Week 01 |
FORMAT_DATE('%e%h%Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month namewoy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11Jan2024 Week 01 |
FORMAT_DATE('%e%B%E4Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthwoy Four-character years (0001 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11January2024 Week 01 |
FORMAT_DATE('%e%b%E4Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy Four-character years (0001 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11Jan2024 Week 01 |
FORMAT_DATE('%e%h%E4Y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy Four-character years (0001 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 11Jan2024 Week 01 |
FORMAT_DATE('%e%B%y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthwoy The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11January24 Week 01 |
FORMAT_DATE('%e%b%y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11Jan24 Week 01 |
FORMAT_DATE('%e%h%y Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11Jan24 Week 01 |
FORMAT_DATE('%e%B%G Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthwoy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11January2024 Week 01 |
FORMAT_DATE('%e%b%G Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11Jan2024 Week 01 |
FORMAT_DATE('%e%h%G Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 11Jan2024 Week 01 |
FORMAT_DATE('%e%B%g Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthwoy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11January24 Week 01 |
FORMAT_DATE('%e%b%g Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11Jan24 Week 01 |
FORMAT_DATE('%e%h%g Week %U', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 11Jan24 Week 01 |
FORMAT_DATE('%e-%m-%Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -woy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11-01-2024 Week 02 |
FORMAT_DATE('%e-%m-%E4Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -woy Four-character years (0001 . 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11-01-2024 Week 02 |
FORMAT_DATE('%e-%m-%y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11-01-24 Week 02 |
FORMAT_DATE('%e-%m-%G Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11-01-2024 Week 02 |
FORMAT_DATE('%e-%m-%g Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11-01-24 Week 02 |
FORMAT_DATE('%e-%B-%Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -woy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11-January-2024 Week 02 |
FORMAT_DATE('%e-%b-%Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11-Jan-2024 Week 02 |
FORMAT_DATE('%e-%h-%Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name dd woy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11-Jan-2024 Week 02 |
FORMAT_DATE('%e-%B-%E4Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -woy Four-character years (0001 . 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11-January-2024 Week 02 |
FORMAT_DATE('%e-%b-%E4Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated Four-character years (0001 . 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11-Jan-2024 Week 02 |
FORMAT_DATE('%e-%h-%E4Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated Four-character years (0001 . 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11-Jan-2024 Week 02 |
FORMAT_DATE('%e-%B-%y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11-January-24 Week 02 |
FORMAT_DATE('%e-%b-%y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11-Jan-24 Week 02 |
FORMAT_DATE('%e-%h-%y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11-Jan-24 Week 02 |
FORMAT_DATE('%e-%B-%G Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11-January-2024 Week 02 |
FORMAT_DATE('%e-%b-%G Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11-Jan-2024 Week 02 |
FORMAT_DATE('%e-%h-%G Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11-Jan-2024 Week 02 |
FORMAT_DATE('%e-%B-%g Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11-January-24 Week 02 |
FORMAT_DATE('%e-%b-%g Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11-Jan-24 Week 02 |
FORMAT_DATE('%e-%h-%g Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11-Jan-24 Week 02 |
FORMAT_DATE('%e/%m/%Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11/01/2024 Week 02 |
FORMAT_DATE('%e/%m/%E4Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy Four-character years (0001 . 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11/01/2024 Week 02 |
FORMAT_DATE('%e/%m/%y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11/01/24 Week 02 |
FORMAT_DATE('%e/%m/%G Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11/01/2024 Week 02 |
FORMAT_DATE('%e/%m/%g Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11/01/24 Week 02 |
FORMAT_DATE('%e/%B/%Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11/January/2024 Week 02 |
FORMAT_DATE('%e/%b/%Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11/Jan/2024 Week 02 |
FORMAT_DATE('%e/%h/%Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11/Jan/2024 Week 02 |
FORMAT_DATE('%e/%B/%E4Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name Four-character years (0001 . 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11/January/2024 Week 02 |
FORMAT_DATE('%e/%b/%E4Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated Four-character years (0001 . 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11/Jan/2024 Week 02 |
FORMAT_DATE('%e/%h/%E4Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated Four-character years (0001 . 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11/Jan/2024 Week 02 |
FORMAT_DATE('%e/%B/%y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11/January/24 Week 02 |
FORMAT_DATE('%e/%b/%y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11/Jan/24 Week 02 |
FORMAT_DATE('%e/%h/%y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11/Jan/24 Week 02 |
FORMAT_DATE('%e/%B/%G Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11/January/2024 Week 02 |
FORMAT_DATE('%e/%b/%G Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11/Jan/2024 Week 02 |
FORMAT_DATE('%e/%h/%G Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11/Jan/2024 Week 02 |
FORMAT_DATE('%e/%B/%g Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11/January/24 Week 02 |
FORMAT_DATE('%e/%b/%g Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11/Jan/24 Week 02 |
FORMAT_DATE('%e/%h/%g Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11/Jan/24 Week 02 |
FORMAT_DATE('%e:%m:%Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11:01:2024 Week 02 |
FORMAT_DATE('%e:%m:%E4Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11:01:2024 Week 02 |
FORMAT_DATE('%e:%m:%y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11:01:24 Week 02 |
FORMAT_DATE('%e:%m:%G Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11:01:2024 Week 02 |
FORMAT_DATE('%e:%m:%g Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11:01:24 Week 02 |
FORMAT_DATE('%e:%B:%Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:woy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11:January:2024 Week 02 |
FORMAT_DATE('%e:%b:%Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11:Jan:2024 Week 02 |
FORMAT_DATE('%e:%h:%Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11:Jan:2024 Week 02 |
FORMAT_DATE('%e:%B:%E4Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:woy Four-character years (0001 . 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11:January:2024 Week 02 |
FORMAT_DATE('%e:%b:%E4Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated Four-character years (0001 . 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11:Jan:2024 Week 02 |
FORMAT_DATE('%e:%h:%E4Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated Four-character years (0001 . 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11:Jan:2024 Week 02 |
FORMAT_DATE('%e:%B:%y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11:January:24 Week 02 |
FORMAT_DATE('%e:%b:%y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11:Jan:24 Week 02 |
FORMAT_DATE('%e:%h:%y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11:Jan:24 Week 02 |
FORMAT_DATE('%e:%B:%G Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11:January:2024 Week 02 |
FORMAT_DATE('%e:%b:%G Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11:Jan:2024 Week 02 |
FORMAT_DATE('%e:%h:%G Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11:Jan:2024 Week 02 |
FORMAT_DATE('%e:%B:%g Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11:January:24 Week 02 |
FORMAT_DATE('%e:%b:%g Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11:Jan:24 Week 02 |
FORMAT_DATE('%e:%h:%g Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11:Jan:24 Week 02 |
FORMAT_DATE('%e.%m.%Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11.01.2024 Week 02 |
FORMAT_DATE('%e.%m.%E4Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy Four-character years (0001 . 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11.01.2024 Week 02 |
FORMAT_DATE('%e.%m.%y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11.01.24 Week 02 |
FORMAT_DATE('%e.%m.%G Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11.01.2024 Week 02 |
FORMAT_DATE('%e.%m.%g Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11.01.24 Week 02 |
FORMAT_DATE('%e.%B.%Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.woy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11.January.2024 Week 02 |
FORMAT_DATE('%e.%b.%Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11.Jan.2024 Week 02 |
FORMAT_DATE('%e.%h.%Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11.Jan.2024 Week 02 |
FORMAT_DATE('%e.%B.%E4Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.woy Four-character years (0001 . 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11.January.2024 Week 02 |
FORMAT_DATE('%e.%b.%E4Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated Four-character years (0001 . 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11.Jan.2024 Week 02 |
FORMAT_DATE('%e.%h.%E4Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated Four-character years (0001 . 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11.Jan.2024 Week 02 |
FORMAT_DATE('%e.%B.%y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11.January.24 Week 02 |
FORMAT_DATE('%e.%b.%y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11.Jan.24 Week 02 |
FORMAT_DATE('%e.%h.%y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11.Jan.24 Week 02 |
FORMAT_DATE('%e.%B.%G Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11.January.2024 Week 02 |
FORMAT_DATE('%e.%b.%G Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11.Jan.2024 Week 02 |
FORMAT_DATE('%e.%h.%G Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11.Jan.2024 Week 02 |
FORMAT_DATE('%e.%B.%g Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11.January.24 Week 02 |
FORMAT_DATE('%e.%b.%g Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11.Jan.24 Week 02 |
FORMAT_DATE('%e.%h.%g Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11.Jan.24 Week 02 |
FORMAT_DATE('%e %m %Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11 01 2024 Week 02 |
FORMAT_DATE('%e %m %E4Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy Four-character years (0001 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11 01 2024 Week 02 |
FORMAT_DATE('%e %m %y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11 01 24 Week 02 |
FORMAT_DATE('%e %m %G Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11 01 2024 Week 02 |
FORMAT_DATE('%e %m %g Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11 01 24 Week 02 |
FORMAT_DATE('%e %B %Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month woy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11 January 2024 Week 02 |
FORMAT_DATE('%e %b %Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11 Jan 2024 Week 02 |
FORMAT_DATE('%e %h %Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11 Jan 2024 Week 02 |
FORMAT_DATE('%e %B %E4Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month woy Four-character years (0001 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11 January 2024 Week 02 |
FORMAT_DATE('%e %b %E4Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy Four-character years (0001 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11 Jan 2024 Week 02 |
FORMAT_DATE('%e %h %E4Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy Four-character years (0001 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11 Jan 2024 Week 02 |
FORMAT_DATE('%e %B %y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11 January 24 Week 02 |
FORMAT_DATE('%e %b %y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11 Jan 24 Week 02 |
FORMAT_DATE('%e %h %y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11 Jan 24 Week 02 |
FORMAT_DATE('%e %B %G Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11 January 2024 Week 02 |
FORMAT_DATE('%e %b %G Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11 Jan 2024 Week 02 |
FORMAT_DATE('%e %h %G Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11 Jan 2024 Week 02 |
FORMAT_DATE('%e %B %g Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11 January 24 Week 02 |
FORMAT_DATE('%e %b %g Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11 Jan 24 Week 02 |
FORMAT_DATE('%e %h %g Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11 Jan 24 Week 02 |
FORMAT_DATE('%e%m%Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11012024 Week 02 |
FORMAT_DATE('%e%m%E4Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy Four-character years (0001 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11012024 Week 02 |
FORMAT_DATE('%e%m%y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 110124 Week 02 |
FORMAT_DATE('%e%m%G Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11012024 Week 02 |
FORMAT_DATE('%e%m%g Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 110124 Week 02 |
FORMAT_DATE('%e%B%Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthwoy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11January2024 Week 02 |
FORMAT_DATE('%e%b%Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11Jan2024 Week 02 |
FORMAT_DATE('%e%h%Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month namewoy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11Jan2024 Week 02 |
FORMAT_DATE('%e%B%E4Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthwoy Four-character years (0001 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11January2024 Week 02 |
FORMAT_DATE('%e%b%E4Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy Four-character years (0001 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11Jan2024 Week 02 |
FORMAT_DATE('%e%h%E4Y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy Four-character years (0001 9999) - Plus, the week number of the year (Monday as the first day of the week) | 11Jan2024 Week 02 |
FORMAT_DATE('%e%B%y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthwoy The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11January24 Week 02 |
FORMAT_DATE('%e%b%y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11Jan24 Week 02 |
FORMAT_DATE('%e%h%y Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11Jan24 Week 02 |
FORMAT_DATE('%e%B%G Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthwoy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11January2024 Week 02 |
FORMAT_DATE('%e%b%G Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11Jan2024 Week 02 |
FORMAT_DATE('%e%h%G Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 11Jan2024 Week 02 |
FORMAT_DATE('%e%B%g Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthwoy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11January24 Week 02 |
FORMAT_DATE('%e%b%g Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11Jan24 Week 02 |
FORMAT_DATE('%e%h%g Week %W', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 11Jan24 Week 02 |
FORMAT_DATE('%e-%m-%Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-01-2024 ISO Week 02 |
FORMAT_DATE('%e-%m-%E4Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-01-2024 ISO Week 02 |
FORMAT_DATE('%e-%m-%y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-01-24 ISO Week 02 |
FORMAT_DATE('%e-%m-%G ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-01-2024 ISO Week 02 |
FORMAT_DATE('%e-%m-%g ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-01-24 ISO Week 02 |
FORMAT_DATE('%e-%B-%Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-January-2024 ISO Week 02 |
FORMAT_DATE('%e-%b-%Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-Jan-2024 ISO Week 02 |
FORMAT_DATE('%e-%h-%Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name dd The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-Jan-2024 ISO Week 02 |
FORMAT_DATE('%e-%B-%E4Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name Four-character years (0001 . 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-January-2024 ISO Week 02 |
FORMAT_DATE('%e-%b-%E4Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-Jan-2024 ISO Week 02 |
FORMAT_DATE('%e-%h-%E4Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-Jan-2024 ISO Week 02 |
FORMAT_DATE('%e-%B-%y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-January-24 ISO Week 02 |
FORMAT_DATE('%e-%b-%y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-Jan-24 ISO Week 02 |
FORMAT_DATE('%e-%h-%y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-Jan-24 ISO Week 02 |
FORMAT_DATE('%e-%B-%G ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-January-2024 ISO Week 02 |
FORMAT_DATE('%e-%b-%G ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-Jan-2024 ISO Week 02 |
FORMAT_DATE('%e-%h-%G ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-Jan-2024 ISO Week 02 |
FORMAT_DATE('%e-%B-%g ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-January-24 ISO Week 02 |
FORMAT_DATE('%e-%b-%g ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-Jan-24 ISO Week 02 |
FORMAT_DATE('%e-%h-%g ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11-Jan-24 ISO Week 02 |
FORMAT_DATE('%e/%m/%Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/01/2024 ISO Week 02 |
FORMAT_DATE('%e/%m/%E4Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/01/2024 ISO Week 02 |
FORMAT_DATE('%e/%m/%y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/01/24 ISO Week 02 |
FORMAT_DATE('%e/%m/%G ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/01/2024 ISO Week 02 |
FORMAT_DATE('%e/%m/%g ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/01/24 ISO Week 02 |
FORMAT_DATE('%e/%B/%Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/ The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/January/2024 ISO Week 02 |
FORMAT_DATE('%e/%b/%Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/Jan/2024 ISO Week 02 |
FORMAT_DATE('%e/%h/%Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/Jan/2024 ISO Week 02 |
FORMAT_DATE('%e/%B/%E4Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/ Four-character years (0001 . 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/January/2024 ISO Week 02 |
FORMAT_DATE('%e/%b/%E4Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/Jan/2024 ISO Week 02 |
FORMAT_DATE('%e/%h/%E4Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/Jan/2024 ISO Week 02 |
FORMAT_DATE('%e/%B/%y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/ The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/January/24 ISO Week 02 |
FORMAT_DATE('%e/%b/%y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/Jan/24 ISO Week 02 |
FORMAT_DATE('%e/%h/%y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/Jan/24 ISO Week 02 |
FORMAT_DATE('%e/%B/%G ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/ The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/January/2024 ISO Week 02 |
FORMAT_DATE('%e/%b/%G ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/Jan/2024 ISO Week 02 |
FORMAT_DATE('%e/%h/%G ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/Jan/2024 ISO Week 02 |
FORMAT_DATE('%e/%B/%g ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/ The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/January/24 ISO Week 02 |
FORMAT_DATE('%e/%b/%g ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/Jan/24 ISO Week 02 |
FORMAT_DATE('%e/%h/%g ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11/Jan/24 ISO Week 02 |
FORMAT_DATE('%e:%m:%Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:01:2024 ISO Week 02 |
FORMAT_DATE('%e:%m:%E4Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:01:2024 ISO Week 02 |
FORMAT_DATE('%e:%m:%y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:01:24 ISO Week 02 |
FORMAT_DATE('%e:%m:%G ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:01:2024 ISO Week 02 |
FORMAT_DATE('%e:%m:%g ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:01:24 ISO Week 02 |
FORMAT_DATE('%e:%B:%Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month: The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:January:2024 ISO Week 02 |
FORMAT_DATE('%e:%b:%Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:Jan:2024 ISO Week 02 |
FORMAT_DATE('%e:%h:%Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:Jan:2024 ISO Week 02 |
FORMAT_DATE('%e:%B:%E4Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month: Four-character years (0001 . 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:January:2024 ISO Week 02 |
FORMAT_DATE('%e:%b:%E4Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:Jan:2024 ISO Week 02 |
FORMAT_DATE('%e:%h:%E4Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:Jan:2024 ISO Week 02 |
FORMAT_DATE('%e:%B:%y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month: The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:January:24 ISO Week 02 |
FORMAT_DATE('%e:%b:%y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:Jan:24 ISO Week 02 |
FORMAT_DATE('%e:%h:%y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:Jan:24 ISO Week 02 |
FORMAT_DATE('%e:%B:%G ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month: The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:January:2024 ISO Week 02 |
FORMAT_DATE('%e:%b:%G ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:Jan:2024 ISO Week 02 |
FORMAT_DATE('%e:%h:%G ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:Jan:2024 ISO Week 02 |
FORMAT_DATE('%e:%B:%g ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month: The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:January:24 ISO Week 02 |
FORMAT_DATE('%e:%b:%g ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:Jan:24 ISO Week 02 |
FORMAT_DATE('%e:%h:%g ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11:Jan:24 ISO Week 02 |
FORMAT_DATE('%e.%m.%Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.01.2024 ISO Week 02 |
FORMAT_DATE('%e.%m.%E4Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.01.2024 ISO Week 02 |
FORMAT_DATE('%e.%m.%y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.01.24 ISO Week 02 |
FORMAT_DATE('%e.%m.%G ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.01.2024 ISO Week 02 |
FORMAT_DATE('%e.%m.%g ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.01.24 ISO Week 02 |
FORMAT_DATE('%e.%B.%Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month. The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.January.2024 ISO Week 02 |
FORMAT_DATE('%e.%b.%Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.Jan.2024 ISO Week 02 |
FORMAT_DATE('%e.%h.%Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.Jan.2024 ISO Week 02 |
FORMAT_DATE('%e.%B.%E4Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month. Four-character years (0001 . 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.January.2024 ISO Week 02 |
FORMAT_DATE('%e.%b.%E4Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.Jan.2024 ISO Week 02 |
FORMAT_DATE('%e.%h.%E4Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.Jan.2024 ISO Week 02 |
FORMAT_DATE('%e.%B.%y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month. The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.January.24 ISO Week 02 |
FORMAT_DATE('%e.%b.%y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.Jan.24 ISO Week 02 |
FORMAT_DATE('%e.%h.%y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.Jan.24 ISO Week 02 |
FORMAT_DATE('%e.%B.%G ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month. The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.January.2024 ISO Week 02 |
FORMAT_DATE('%e.%b.%G ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.Jan.2024 ISO Week 02 |
FORMAT_DATE('%e.%h.%G ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.Jan.2024 ISO Week 02 |
FORMAT_DATE('%e.%B.%g ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month. The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.January.24 ISO Week 02 |
FORMAT_DATE('%e.%b.%g ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.Jan.24 ISO Week 02 |
FORMAT_DATE('%e.%h.%g ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11.Jan.24 ISO Week 02 |
FORMAT_DATE('%e %m %Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 01 2024 ISO Week 02 |
FORMAT_DATE('%e %m %E4Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 01 2024 ISO Week 02 |
FORMAT_DATE('%e %m %y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 01 24 ISO Week 02 |
FORMAT_DATE('%e %m %G ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 01 2024 ISO Week 02 |
FORMAT_DATE('%e %m %g ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 01 24 ISO Week 02 |
FORMAT_DATE('%e %B %Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 January 2024 ISO Week 02 |
FORMAT_DATE('%e %b %Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 Jan 2024 ISO Week 02 |
FORMAT_DATE('%e %h %Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 Jan 2024 ISO Week 02 |
FORMAT_DATE('%e %B %E4Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month Four-character years (0001 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 January 2024 ISO Week 02 |
FORMAT_DATE('%e %b %E4Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 Jan 2024 ISO Week 02 |
FORMAT_DATE('%e %h %E4Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 Jan 2024 ISO Week 02 |
FORMAT_DATE('%e %B %y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 January 24 ISO Week 02 |
FORMAT_DATE('%e %b %y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 Jan 24 ISO Week 02 |
FORMAT_DATE('%e %h %y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 Jan 24 ISO Week 02 |
FORMAT_DATE('%e %B %G ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 January 2024 ISO Week 02 |
FORMAT_DATE('%e %b %G ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 Jan 2024 ISO Week 02 |
FORMAT_DATE('%e %h %G ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 Jan 2024 ISO Week 02 |
FORMAT_DATE('%e %B %g ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 January 24 ISO Week 02 |
FORMAT_DATE('%e %b %g ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 Jan 24 ISO Week 02 |
FORMAT_DATE('%e %h %g ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11 Jan 24 ISO Week 02 |
FORMAT_DATE('%e%m%Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11012024 ISO Week 02 |
FORMAT_DATE('%e%m%E4Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11012024 ISO Week 02 |
FORMAT_DATE('%e%m%y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 110124 ISO Week 02 |
FORMAT_DATE('%e%m%G ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11012024 ISO Week 02 |
FORMAT_DATE('%e%m%g ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 110124 ISO Week 02 |
FORMAT_DATE('%e%B%Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11January2024 ISO Week 02 |
FORMAT_DATE('%e%b%Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11Jan2024 ISO Week 02 |
FORMAT_DATE('%e%h%Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11Jan2024 ISO Week 02 |
FORMAT_DATE('%e%B%E4Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month Four-character years (0001 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11January2024 ISO Week 02 |
FORMAT_DATE('%e%b%E4Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameFour-character years (0001 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11Jan2024 ISO Week 02 |
FORMAT_DATE('%e%h%E4Y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameFour-character years (0001 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11Jan2024 ISO Week 02 |
FORMAT_DATE('%e%B%y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11January24 ISO Week 02 |
FORMAT_DATE('%e%b%y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11Jan24 ISO Week 02 |
FORMAT_DATE('%e%h%y ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11Jan24 ISO Week 02 |
FORMAT_DATE('%e%B%G ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11January2024 ISO Week 02 |
FORMAT_DATE('%e%b%G ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11Jan2024 ISO Week 02 |
FORMAT_DATE('%e%h%G ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11Jan2024 ISO Week 02 |
FORMAT_DATE('%e%B%g ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11January24 ISO Week 02 |
FORMAT_DATE('%e%b%g ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11Jan24 ISO Week 02 |
FORMAT_DATE('%e%h%g ISO Week %V', CURRENT_DATE) -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 11Jan24 ISO Week 02 |
FORMAT_DATE('%m-%e-%Y', CURRENT_DATE) | 01-11-2024 |
FORMAT_DATE('%m-%e-%E4Y', CURRENT_DATE) | 01-11-2024 |
FORMAT_DATE('%m-%e-%y', CURRENT_DATE) | 01-11-24 |
FORMAT_DATE('%m-%e-%G', CURRENT_DATE) | 01-11-2024 |
FORMAT_DATE('%m-%e-%g', CURRENT_DATE) | 01-11-24 |
FORMAT_DATE('%B-%e-%Y', CURRENT_DATE) | January-11-2024 |
FORMAT_DATE('%b-%e-%Y', CURRENT_DATE) | Jan-11-2024 |
FORMAT_DATE('%h-%e-%Y', CURRENT_DATE) | Jan-11-2024 |
FORMAT_DATE('%B-%e-%E4Y', CURRENT_DATE) | January-11-2024 |
FORMAT_DATE('%b-%e-%E4Y', CURRENT_DATE) | Jan-11-2024 |
FORMAT_DATE('%h-%e-%E4Y', CURRENT_DATE) | Jan-11-2024 |
FORMAT_DATE('%B-%e-%y', CURRENT_DATE) | January-11-24 |
FORMAT_DATE('%b-%e-%y', CURRENT_DATE) | Jan-11-24 |
FORMAT_DATE('%h-%e-%y', CURRENT_DATE) | Jan-11-24 |
FORMAT_DATE('%B-%e-%G', CURRENT_DATE) | January-11-2024 |
FORMAT_DATE('%b-%e-%G', CURRENT_DATE) | Jan-11-2024 |
FORMAT_DATE('%h-%e-%G', CURRENT_DATE) | Jan-11-2024 |
FORMAT_DATE('%B-%e-%g', CURRENT_DATE) | January-11-24 |
FORMAT_DATE('%b-%e-%g', CURRENT_DATE) | Jan-11-24 |
FORMAT_DATE('%h-%e-%g', CURRENT_DATE) | Jan-11-24 |
FORMAT_DATE('%m-%e-%Y Day %j', CURRENT_DATE) | 01-11-2024 Day 011 |
FORMAT_DATE('%m-%e-%E4Y Day %j', CURRENT_DATE) | 01-11-2024 Day 011 |
FORMAT_DATE('%m-%e-%y Day %j', CURRENT_DATE) | 01-11-24 Day 011 |
FORMAT_DATE('%m-%e-%G Day %j', CURRENT_DATE) | 01-11-2024 Day 011 |
FORMAT_DATE('%m-%e-%g Day %j', CURRENT_DATE) | 01-11-24 Day 011 |
FORMAT_DATE('%B-%e-%Y Day %j', CURRENT_DATE) | January-11-2024 Day 011 |
FORMAT_DATE('%b-%e-%Y Day %j', CURRENT_DATE) | Jan-11-2024 Day 011 |
FORMAT_DATE('%h-%e-%Y Day %j', CURRENT_DATE) | Jan-11-2024 Day 011 |
FORMAT_DATE('%B-%e-%E4Y Day %j', CURRENT_DATE) | January-11-2024 Day 011 |
FORMAT_DATE('%b-%e-%E4Y Day %j', CURRENT_DATE) | Jan-11-2024 Day 011 |
FORMAT_DATE('%h-%e-%E4Y Day %j', CURRENT_DATE) | Jan-11-2024 Day 011 |
FORMAT_DATE('%B-%e-%y Day %j', CURRENT_DATE) | January-11-24 Day 011 |
FORMAT_DATE('%b-%e-%y Day %j', CURRENT_DATE) | Jan-11-24 Day 011 |
FORMAT_DATE('%h-%e-%y Day %j', CURRENT_DATE) | Jan-11-24 Day 011 |
FORMAT_DATE('%B-%e-%G Day %j', CURRENT_DATE) | January-11-2024 Day 011 |
FORMAT_DATE('%b-%e-%G Day %j', CURRENT_DATE) | Jan-11-2024 Day 011 |
FORMAT_DATE('%h-%e-%G Day %j', CURRENT_DATE) | Jan-11-2024 Day 011 |
FORMAT_DATE('%B-%e-%g Day %j', CURRENT_DATE) | January-11-24 Day 011 |
FORMAT_DATE('%b-%e-%g Day %j', CURRENT_DATE) | Jan-11-24 Day 011 |
FORMAT_DATE('%h-%e-%g Day %j', CURRENT_DATE) | Jan-11-24 Day 011 |
FORMAT_DATE('%m/%e/%Y', CURRENT_DATE) | 01/11/2024 |
FORMAT_DATE('%m/%e/%E4Y', CURRENT_DATE) | 01/11/2024 |
FORMAT_DATE('%m/%e/%y', CURRENT_DATE) | 01/11/24 |
FORMAT_DATE('%m/%e/%G', CURRENT_DATE) | 01/11/2024 |
FORMAT_DATE('%m/%e/%g', CURRENT_DATE) | 01/11/24 |
FORMAT_DATE('%B/%e/%Y', CURRENT_DATE) | January/11/2024 |
FORMAT_DATE('%b/%e/%Y', CURRENT_DATE) | Jan/11/2024 |
FORMAT_DATE('%h/%e/%Y', CURRENT_DATE) | Jan/11/2024 |
FORMAT_DATE('%B/%e/%E4Y', CURRENT_DATE) | January/11/2024 |
FORMAT_DATE('%b/%e/%E4Y', CURRENT_DATE) | Jan/11/2024 |
FORMAT_DATE('%h/%e/%E4Y', CURRENT_DATE) | Jan/11/2024 |
FORMAT_DATE('%B/%e/%y', CURRENT_DATE) | January/11/24 |
FORMAT_DATE('%b/%e/%y', CURRENT_DATE) | Jan/11/24 |
FORMAT_DATE('%h/%e/%y', CURRENT_DATE) | Jan/11/24 |
FORMAT_DATE('%B/%e/%G', CURRENT_DATE) | January/11/2024 |
FORMAT_DATE('%b/%e/%G', CURRENT_DATE) | Jan/11/2024 |
FORMAT_DATE('%h/%e/%G', CURRENT_DATE) | Jan/11/2024 |
FORMAT_DATE('%B/%e/%g', CURRENT_DATE) | January/11/24 |
FORMAT_DATE('%b/%e/%g', CURRENT_DATE) | Jan/11/24 |
FORMAT_DATE('%h/%e/%g', CURRENT_DATE) | Jan/11/24 |
FORMAT_DATE('%m/%e/%Y Day %j', CURRENT_DATE) | 01/11/2024 Day 011 |
FORMAT_DATE('%m/%e/%E4Y Day %j', CURRENT_DATE) | 01/11/2024 Day 011 |
FORMAT_DATE('%m/%e/%y Day %j', CURRENT_DATE) | 01/11/24 Day 011 |
FORMAT_DATE('%m/%e/%G Day %j', CURRENT_DATE) | 01/11/2024 Day 011 |
FORMAT_DATE('%m/%e/%g Day %j', CURRENT_DATE) | 01/11/24 Day 011 |
FORMAT_DATE('%B/%e/%Y Day %j', CURRENT_DATE) | January/11/2024 Day 011 |
FORMAT_DATE('%b/%e/%Y Day %j', CURRENT_DATE) | Jan/11/2024 Day 011 |
FORMAT_DATE('%h/%e/%Y Day %j', CURRENT_DATE) | Jan/11/2024 Day 011 |
FORMAT_DATE('%B/%e/%E4Y Day %j', CURRENT_DATE) | January/11/2024 Day 011 |
FORMAT_DATE('%b/%e/%E4Y Day %j', CURRENT_DATE) | Jan/11/2024 Day 011 |
FORMAT_DATE('%h/%e/%E4Y Day %j', CURRENT_DATE) | Jan/11/2024 Day 011 |
FORMAT_DATE('%B/%e/%y Day %j', CURRENT_DATE) | January/11/24 Day 011 |
FORMAT_DATE('%b/%e/%y Day %j', CURRENT_DATE) | Jan/11/24 Day 011 |
FORMAT_DATE('%h/%e/%y Day %j', CURRENT_DATE) | Jan/11/24 Day 011 |
FORMAT_DATE('%B/%e/%G Day %j', CURRENT_DATE) | January/11/2024 Day 011 |
FORMAT_DATE('%b/%e/%G Day %j', CURRENT_DATE) | Jan/11/2024 Day 011 |
FORMAT_DATE('%h/%e/%G Day %j', CURRENT_DATE) | Jan/11/2024 Day 011 |
FORMAT_DATE('%B/%e/%g Day %j', CURRENT_DATE) | January/11/24 Day 011 |
FORMAT_DATE('%b/%e/%g Day %j', CURRENT_DATE) | Jan/11/24 Day 011 |
FORMAT_DATE('%h/%e/%g Day %j', CURRENT_DATE) | Jan/11/24 Day 011 |
FORMAT_DATE('%m:%e:%Y', CURRENT_DATE) | 01:11:2024 |
FORMAT_DATE('%m:%e:%E4Y', CURRENT_DATE) | 01:11:2024 |
FORMAT_DATE('%m:%e:%y', CURRENT_DATE) | 01:11:24 |
FORMAT_DATE('%m:%e:%G', CURRENT_DATE) | 01:11:2024 |
FORMAT_DATE('%m:%e:%g', CURRENT_DATE) | 01:11:24 |
FORMAT_DATE('%B:%e:%Y', CURRENT_DATE) | January:11:2024 |
FORMAT_DATE('%b:%e:%Y', CURRENT_DATE) | Jan:11:2024 |
FORMAT_DATE('%h:%e:%Y', CURRENT_DATE) | Jan:11:2024 |
FORMAT_DATE('%B:%e:%E4Y', CURRENT_DATE) | January:11:2024 |
FORMAT_DATE('%b:%e:%E4Y', CURRENT_DATE) | Jan:11:2024 |
FORMAT_DATE('%h:%e:%E4Y', CURRENT_DATE) | Jan:11:2024 |
FORMAT_DATE('%B:%e:%y', CURRENT_DATE) | January:11:24 |
FORMAT_DATE('%b:%e:%y', CURRENT_DATE) | Jan:11:24 |
FORMAT_DATE('%h:%e:%y', CURRENT_DATE) | Jan:11:24 |
FORMAT_DATE('%B:%e:%G', CURRENT_DATE) | January:11:2024 |
FORMAT_DATE('%b:%e:%G', CURRENT_DATE) | Jan:11:2024 |
FORMAT_DATE('%h:%e:%G', CURRENT_DATE) | Jan:11:2024 |
FORMAT_DATE('%B:%e:%g', CURRENT_DATE) | January:11:24 |
FORMAT_DATE('%b:%e:%g', CURRENT_DATE) | Jan:11:24 |
FORMAT_DATE('%h:%e:%g', CURRENT_DATE) | Jan:11:24 |
FORMAT_DATE('%m:%e:%Y Day %j', CURRENT_DATE) | 01:11:2024 Day 011 |
FORMAT_DATE('%m:%e:%E4Y Day %j', CURRENT_DATE) | 01:11:2024 Day 011 |
FORMAT_DATE('%m:%e:%y Day %j', CURRENT_DATE) | 01:11:24 Day 011 |
FORMAT_DATE('%m:%e:%G Day %j', CURRENT_DATE) | 01:11:2024 Day 011 |
FORMAT_DATE('%m:%e:%g Day %j', CURRENT_DATE) | 01:11:24 Day 011 |
FORMAT_DATE('%B:%e:%Y Day %j', CURRENT_DATE) | January:11:2024 Day 011 |
FORMAT_DATE('%b:%e:%Y Day %j', CURRENT_DATE) | Jan:11:2024 Day 011 |
FORMAT_DATE('%h:%e:%Y Day %j', CURRENT_DATE) | Jan:11:2024 Day 011 |
FORMAT_DATE('%B:%e:%E4Y Day %j', CURRENT_DATE) | January:11:2024 Day 011 |
FORMAT_DATE('%b:%e:%E4Y Day %j', CURRENT_DATE) | Jan:11:2024 Day 011 |
FORMAT_DATE('%h:%e:%E4Y Day %j', CURRENT_DATE) | Jan:11:2024 Day 011 |
FORMAT_DATE('%B:%e:%y Day %j', CURRENT_DATE) | January:11:24 Day 011 |
FORMAT_DATE('%b:%e:%y Day %j', CURRENT_DATE) | Jan:11:24 Day 011 |
FORMAT_DATE('%h:%e:%y Day %j', CURRENT_DATE) | Jan:11:24 Day 011 |
FORMAT_DATE('%B:%e:%G Day %j', CURRENT_DATE) | January:11:2024 Day 011 |
FORMAT_DATE('%b:%e:%G Day %j', CURRENT_DATE) | Jan:11:2024 Day 011 |
FORMAT_DATE('%h:%e:%G Day %j', CURRENT_DATE) | Jan:11:2024 Day 011 |
FORMAT_DATE('%B:%e:%g Day %j', CURRENT_DATE) | January:11:24 Day 011 |
FORMAT_DATE('%b:%e:%g Day %j', CURRENT_DATE) | Jan:11:24 Day 011 |
FORMAT_DATE('%h:%e:%g Day %j', CURRENT_DATE) | Jan:11:24 Day 011 |
FORMAT_DATE('%m.%e.%Y', CURRENT_DATE) | 01.11.2024 |
FORMAT_DATE('%m.%e.%E4Y', CURRENT_DATE) | 01.11.2024 |
FORMAT_DATE('%m.%e.%y', CURRENT_DATE) | 01.11.24 |
FORMAT_DATE('%m.%e.%G', CURRENT_DATE) | 01.11.2024 |
FORMAT_DATE('%m.%e.%g', CURRENT_DATE) | 01.11.24 |
FORMAT_DATE('%B.%e.%Y', CURRENT_DATE) | January.11.2024 |
FORMAT_DATE('%b.%e.%Y', CURRENT_DATE) | Jan.11.2024 |
FORMAT_DATE('%h.%e.%Y', CURRENT_DATE) | Jan.11.2024 |
FORMAT_DATE('%B.%e.%E4Y', CURRENT_DATE) | January.11.2024 |
FORMAT_DATE('%b.%e.%E4Y', CURRENT_DATE) | Jan.11.2024 |
FORMAT_DATE('%h.%e.%E4Y', CURRENT_DATE) | Jan.11.2024 |
FORMAT_DATE('%B.%e.%y', CURRENT_DATE) | January.11.24 |
FORMAT_DATE('%b.%e.%y', CURRENT_DATE) | Jan.11.24 |
FORMAT_DATE('%h.%e.%y', CURRENT_DATE) | Jan.11.24 |
FORMAT_DATE('%B.%e.%G', CURRENT_DATE) | January.11.2024 |
FORMAT_DATE('%b.%e.%G', CURRENT_DATE) | Jan.11.2024 |
FORMAT_DATE('%h.%e.%G', CURRENT_DATE) | Jan.11.2024 |
FORMAT_DATE('%B.%e.%g', CURRENT_DATE) | January.11.24 |
FORMAT_DATE('%b.%e.%g', CURRENT_DATE) | Jan.11.24 |
FORMAT_DATE('%h.%e.%g', CURRENT_DATE) | Jan.11.24 |
FORMAT_DATE('%m.%e.%Y Day %j', CURRENT_DATE) | 01.11.2024 Day 011 |
FORMAT_DATE('%m.%e.%E4Y Day %j', CURRENT_DATE) | 01.11.2024 Day 011 |
FORMAT_DATE('%m.%e.%y Day %j', CURRENT_DATE) | 01.11.24 Day 011 |
FORMAT_DATE('%m.%e.%G Day %j', CURRENT_DATE) | 01.11.2024 Day 011 |
FORMAT_DATE('%m.%e.%g Day %j', CURRENT_DATE) | 01.11.24 Day 011 |
FORMAT_DATE('%B.%e.%Y Day %j', CURRENT_DATE) | January.11.2024 Day 011 |
FORMAT_DATE('%b.%e.%Y Day %j', CURRENT_DATE) | Jan.11.2024 Day 011 |
FORMAT_DATE('%h.%e.%Y Day %j', CURRENT_DATE) | Jan.11.2024 Day 011 |
FORMAT_DATE('%B.%e.%E4Y Day %j', CURRENT_DATE) | January.11.2024 Day 011 |
FORMAT_DATE('%b.%e.%E4Y Day %j', CURRENT_DATE) | Jan.11.2024 Day 011 |
FORMAT_DATE('%h.%e.%E4Y Day %j', CURRENT_DATE) | Jan.11.2024 Day 011 |
FORMAT_DATE('%B.%e.%y Day %j', CURRENT_DATE) | January.11.24 Day 011 |
FORMAT_DATE('%b.%e.%y Day %j', CURRENT_DATE) | Jan.11.24 Day 011 |
FORMAT_DATE('%h.%e.%y Day %j', CURRENT_DATE) | Jan.11.24 Day 011 |
FORMAT_DATE('%B.%e.%G Day %j', CURRENT_DATE) | January.11.2024 Day 011 |
FORMAT_DATE('%b.%e.%G Day %j', CURRENT_DATE) | Jan.11.2024 Day 011 |
FORMAT_DATE('%h.%e.%G Day %j', CURRENT_DATE) | Jan.11.2024 Day 011 |
FORMAT_DATE('%B.%e.%g Day %j', CURRENT_DATE) | January.11.24 Day 011 |
FORMAT_DATE('%b.%e.%g Day %j', CURRENT_DATE) | Jan.11.24 Day 011 |
FORMAT_DATE('%h.%e.%g Day %j', CURRENT_DATE) | Jan.11.24 Day 011 |
FORMAT_DATE('%m %e %Y', CURRENT_DATE) | 01 11 2024 |
FORMAT_DATE('%m %e %E4Y', CURRENT_DATE) | 01 11 2024 |
FORMAT_DATE('%m %e %y', CURRENT_DATE) | 01 11 24 |
FORMAT_DATE('%m %e %G', CURRENT_DATE) | 01 11 2024 |
FORMAT_DATE('%m %e %g', CURRENT_DATE) | 01 11 24 |
FORMAT_DATE('%B %e %Y', CURRENT_DATE) | January 11 2024 |
FORMAT_DATE('%b %e %Y', CURRENT_DATE) | Jan 11 2024 |
FORMAT_DATE('%h %e %Y', CURRENT_DATE) | Jan 11 2024 |
FORMAT_DATE('%B %e %E4Y', CURRENT_DATE) | January 11 2024 |
FORMAT_DATE('%b %e %E4Y', CURRENT_DATE) | Jan 11 2024 |
FORMAT_DATE('%h %e %E4Y', CURRENT_DATE) | Jan 11 2024 |
FORMAT_DATE('%B %e %y', CURRENT_DATE) | January 11 24 |
FORMAT_DATE('%b %e %y', CURRENT_DATE) | Jan 11 24 |
FORMAT_DATE('%h %e %y', CURRENT_DATE) | Jan 11 24 |
FORMAT_DATE('%B %e %G', CURRENT_DATE) | January 11 2024 |
FORMAT_DATE('%b %e %G', CURRENT_DATE) | Jan 11 2024 |
FORMAT_DATE('%h %e %G', CURRENT_DATE) | Jan 11 2024 |
FORMAT_DATE('%B %e %g', CURRENT_DATE) | January 11 24 |
FORMAT_DATE('%b %e %g', CURRENT_DATE) | Jan 11 24 |
FORMAT_DATE('%h %e %g', CURRENT_DATE) | Jan 11 24 |
FORMAT_DATE('%m %e %Y Day %j', CURRENT_DATE) | 01 11 2024 Day 011 |
FORMAT_DATE('%m %e %E4Y Day %j', CURRENT_DATE) | 01 11 2024 Day 011 |
FORMAT_DATE('%m %e %y Day %j', CURRENT_DATE) | 01 11 24 Day 011 |
FORMAT_DATE('%m %e %G Day %j', CURRENT_DATE) | 01 11 2024 Day 011 |
FORMAT_DATE('%m %e %g Day %j', CURRENT_DATE) | 01 11 24 Day 011 |
FORMAT_DATE('%B %e %Y Day %j', CURRENT_DATE) | January 11 2024 Day 011 |
FORMAT_DATE('%b %e %Y Day %j', CURRENT_DATE) | Jan 11 2024 Day 011 |
FORMAT_DATE('%h %e %Y Day %j', CURRENT_DATE) | Jan 11 2024 Day 011 |
FORMAT_DATE('%B %e %E4Y Day %j', CURRENT_DATE) | January 11 2024 Day 011 |
FORMAT_DATE('%b %e %E4Y Day %j', CURRENT_DATE) | Jan 11 2024 Day 011 |
FORMAT_DATE('%h %e %E4Y Day %j', CURRENT_DATE) | Jan 11 2024 Day 011 |
FORMAT_DATE('%B %e %y Day %j', CURRENT_DATE) | January 11 24 Day 011 |
FORMAT_DATE('%b %e %y Day %j', CURRENT_DATE) | Jan 11 24 Day 011 |
FORMAT_DATE('%h %e %y Day %j', CURRENT_DATE) | Jan 11 24 Day 011 |
FORMAT_DATE('%B %e %G Day %j', CURRENT_DATE) | January 11 2024 Day 011 |
FORMAT_DATE('%b %e %G Day %j', CURRENT_DATE) | Jan 11 2024 Day 011 |
FORMAT_DATE('%h %e %G Day %j', CURRENT_DATE) | Jan 11 2024 Day 011 |
FORMAT_DATE('%B %e %g Day %j', CURRENT_DATE) | January 11 24 Day 011 |
FORMAT_DATE('%b %e %g Day %j', CURRENT_DATE) | Jan 11 24 Day 011 |
FORMAT_DATE('%h %e %g Day %j', CURRENT_DATE) | Jan 11 24 Day 011 |
FORMAT_DATE('%m%e%Y', CURRENT_DATE) | 01112024 |
FORMAT_DATE('%m%e%E4Y', CURRENT_DATE) | 01112024 |
FORMAT_DATE('%m%e%y', CURRENT_DATE) | 011124 |
FORMAT_DATE('%m%e%G', CURRENT_DATE) | 01112024 |
FORMAT_DATE('%m%e%g', CURRENT_DATE) | 011124 |
FORMAT_DATE('%B%e%Y', CURRENT_DATE) | January112024 |
FORMAT_DATE('%b%e%Y', CURRENT_DATE) | Jan112024 |
FORMAT_DATE('%h%e%Y', CURRENT_DATE) | Jan112024 |
FORMAT_DATE('%B%e%E4Y', CURRENT_DATE) | January112024 |
FORMAT_DATE('%b%e%E4Y', CURRENT_DATE) | Jan112024 |
FORMAT_DATE('%h%e%E4Y', CURRENT_DATE) | Jan112024 |
FORMAT_DATE('%B%e%y', CURRENT_DATE) | January1124 |
FORMAT_DATE('%b%e%y', CURRENT_DATE) | Jan1124 |
FORMAT_DATE('%h%e%y', CURRENT_DATE) | Jan1124 |
FORMAT_DATE('%B%e%G', CURRENT_DATE) | January112024 |
FORMAT_DATE('%b%e%G', CURRENT_DATE) | Jan112024 |
FORMAT_DATE('%h%e%G', CURRENT_DATE) | Jan112024 |
FORMAT_DATE('%B%e%g', CURRENT_DATE) | January1124 |
FORMAT_DATE('%b%e%g', CURRENT_DATE) | Jan1124 |
FORMAT_DATE('%h%e%g', CURRENT_DATE) | Jan1124 |
FORMAT_DATE('%m%e%Y Day %j', CURRENT_DATE) | 01112024 Day 011 |
FORMAT_DATE('%m%e%E4Y Day %j', CURRENT_DATE) | 01112024 Day 011 |
FORMAT_DATE('%m%e%y Day %j', CURRENT_DATE) | 011124 Day 011 |
FORMAT_DATE('%m%e%G Day %j', CURRENT_DATE) | 01112024 Day 011 |
FORMAT_DATE('%m%e%g Day %j', CURRENT_DATE) | 011124 Day 011 |
FORMAT_DATE('%B%e%Y Day %j', CURRENT_DATE) | January112024 Day 011 |
FORMAT_DATE('%b%e%Y Day %j', CURRENT_DATE) | Jan112024 Day 011 |
FORMAT_DATE('%h%e%Y Day %j', CURRENT_DATE) | Jan112024 Day 011 |
FORMAT_DATE('%B%e%E4Y Day %j', CURRENT_DATE) | January112024 Day 011 |
FORMAT_DATE('%b%e%E4Y Day %j', CURRENT_DATE) | Jan112024 Day 011 |
FORMAT_DATE('%h%e%E4Y Day %j', CURRENT_DATE) | Jan112024 Day 011 |
FORMAT_DATE('%B%e%y Day %j', CURRENT_DATE) | January1124 Day 011 |
FORMAT_DATE('%b%e%y Day %j', CURRENT_DATE) | Jan1124 Day 011 |
FORMAT_DATE('%h%e%y Day %j', CURRENT_DATE) | Jan1124 Day 011 |
FORMAT_DATE('%B%e%G Day %j', CURRENT_DATE) | January112024 Day 011 |
FORMAT_DATE('%b%e%G Day %j', CURRENT_DATE) | Jan112024 Day 011 |
FORMAT_DATE('%h%e%G Day %j', CURRENT_DATE) | Jan112024 Day 011 |
FORMAT_DATE('%B%e%g Day %j', CURRENT_DATE) | January1124 Day 011 |
FORMAT_DATE('%b%e%g Day %j', CURRENT_DATE) | Jan1124 Day 011 |
FORMAT_DATE('%h%e%g Day %j', CURRENT_DATE) | Jan1124 Day 011 |
FORMAT_DATE('%m-%e-%Y %A', CURRENT_DATE) | 01-11-2024 Thursday |
FORMAT_DATE('%m-%e-%E4Y %A', CURRENT_DATE) | 01-11-2024 Thursday |
FORMAT_DATE('%m-%e-%y %A', CURRENT_DATE) | 01-11-24 Thursday |
FORMAT_DATE('%m-%e-%G %A', CURRENT_DATE) | 01-11-2024 Thursday |
FORMAT_DATE('%m-%e-%g %A', CURRENT_DATE) | 01-11-24 Thursday |
FORMAT_DATE('%B-%e-%Y %A', CURRENT_DATE) | January-11-2024 Thursday |
FORMAT_DATE('%b-%e-%Y %A', CURRENT_DATE) | Jan-11-2024 Thursday |
FORMAT_DATE('%h-%e-%Y %A', CURRENT_DATE) | Jan-11-2024 Thursday |
FORMAT_DATE('%B-%e-%E4Y %A', CURRENT_DATE) | January-11-2024 Thursday |
FORMAT_DATE('%b-%e-%E4Y %A', CURRENT_DATE) | Jan-11-2024 Thursday |
FORMAT_DATE('%h-%e-%E4Y %A', CURRENT_DATE) | Jan-11-2024 Thursday |
FORMAT_DATE('%B-%e-%y %A', CURRENT_DATE) | January-11-24 Thursday |
FORMAT_DATE('%b-%e-%y %A', CURRENT_DATE) | Jan-11-24 Thursday |
FORMAT_DATE('%h-%e-%y %A', CURRENT_DATE) | Jan-11-24 Thursday |
FORMAT_DATE('%B-%e-%G %A', CURRENT_DATE) | January-11-2024 Thursday |
FORMAT_DATE('%b-%e-%G %A', CURRENT_DATE) | Jan-11-2024 Thursday |
FORMAT_DATE('%h-%e-%G %A', CURRENT_DATE) | Jan-11-2024 Thursday |
FORMAT_DATE('%B-%e-%g %A', CURRENT_DATE) | January-11-24 Thursday |
FORMAT_DATE('%b-%e-%g %A', CURRENT_DATE) | Jan-11-24 Thursday |
FORMAT_DATE('%h-%e-%g %A', CURRENT_DATE) | Jan-11-24 Thursday |
FORMAT_DATE('%m/%e/%Y %A', CURRENT_DATE) | 01/11/2024 Thursday |
FORMAT_DATE('%m/%e/%E4Y %A', CURRENT_DATE) | 01/11/2024 Thursday |
FORMAT_DATE('%m/%e/%y %A', CURRENT_DATE) | 01/11/24 Thursday |
FORMAT_DATE('%m/%e/%G %A', CURRENT_DATE) | 01/11/2024 Thursday |
FORMAT_DATE('%m/%e/%g %A', CURRENT_DATE) | 01/11/24 Thursday |
FORMAT_DATE('%B/%e/%Y %A', CURRENT_DATE) | January/11/2024 Thursday |
FORMAT_DATE('%b/%e/%Y %A', CURRENT_DATE) | Jan/11/2024 Thursday |
FORMAT_DATE('%h/%e/%Y %A', CURRENT_DATE) | Jan/11/2024 Thursday |
FORMAT_DATE('%B/%e/%E4Y %A', CURRENT_DATE) | January/11/2024 Thursday |
FORMAT_DATE('%b/%e/%E4Y %A', CURRENT_DATE) | Jan/11/2024 Thursday |
FORMAT_DATE('%h/%e/%E4Y %A', CURRENT_DATE) | Jan/11/2024 Thursday |
FORMAT_DATE('%B/%e/%y %A', CURRENT_DATE) | January/11/24 Thursday |
FORMAT_DATE('%b/%e/%y %A', CURRENT_DATE) | Jan/11/24 Thursday |
FORMAT_DATE('%h/%e/%y %A', CURRENT_DATE) | Jan/11/24 Thursday |
FORMAT_DATE('%B/%e/%G %A', CURRENT_DATE) | January/11/2024 Thursday |
FORMAT_DATE('%b/%e/%G %A', CURRENT_DATE) | Jan/11/2024 Thursday |
FORMAT_DATE('%h/%e/%G %A', CURRENT_DATE) | Jan/11/2024 Thursday |
FORMAT_DATE('%B/%e/%g %A', CURRENT_DATE) | January/11/24 Thursday |
FORMAT_DATE('%b/%e/%g %A', CURRENT_DATE) | Jan/11/24 Thursday |
FORMAT_DATE('%h/%e/%g %A', CURRENT_DATE) | Jan/11/24 Thursday |
FORMAT_DATE('%m:%e:%Y %A', CURRENT_DATE) | 01:11:2024 Thursday |
FORMAT_DATE('%m:%e:%E4Y %A', CURRENT_DATE) | 01:11:2024 Thursday |
FORMAT_DATE('%m:%e:%y %A', CURRENT_DATE) | 01:11:24 Thursday |
FORMAT_DATE('%m:%e:%G %A', CURRENT_DATE) | 01:11:2024 Thursday |
FORMAT_DATE('%m:%e:%g %A', CURRENT_DATE) | 01:11:24 Thursday |
FORMAT_DATE('%B:%e:%Y %A', CURRENT_DATE) | January:11:2024 Thursday |
FORMAT_DATE('%b:%e:%Y %A', CURRENT_DATE) | Jan:11:2024 Thursday |
FORMAT_DATE('%h:%e:%Y %A', CURRENT_DATE) | Jan:11:2024 Thursday |
FORMAT_DATE('%B:%e:%E4Y %A', CURRENT_DATE) | January:11:2024 Thursday |
FORMAT_DATE('%b:%e:%E4Y %A', CURRENT_DATE) | Jan:11:2024 Thursday |
FORMAT_DATE('%h:%e:%E4Y %A', CURRENT_DATE) | Jan:11:2024 Thursday |
FORMAT_DATE('%B:%e:%y %A', CURRENT_DATE) | January:11:24 Thursday |
FORMAT_DATE('%b:%e:%y %A', CURRENT_DATE) | Jan:11:24 Thursday |
FORMAT_DATE('%h:%e:%y %A', CURRENT_DATE) | Jan:11:24 Thursday |
FORMAT_DATE('%B:%e:%G %A', CURRENT_DATE) | January:11:2024 Thursday |
FORMAT_DATE('%b:%e:%G %A', CURRENT_DATE) | Jan:11:2024 Thursday |
FORMAT_DATE('%h:%e:%G %A', CURRENT_DATE) | Jan:11:2024 Thursday |
FORMAT_DATE('%B:%e:%g %A', CURRENT_DATE) | January:11:24 Thursday |
FORMAT_DATE('%b:%e:%g %A', CURRENT_DATE) | Jan:11:24 Thursday |
FORMAT_DATE('%h:%e:%g %A', CURRENT_DATE) | Jan:11:24 Thursday |
FORMAT_DATE('%m.%e.%Y %A', CURRENT_DATE) | 01.11.2024 Thursday |
FORMAT_DATE('%m.%e.%E4Y %A', CURRENT_DATE) | 01.11.2024 Thursday |
FORMAT_DATE('%m.%e.%y %A', CURRENT_DATE) | 01.11.24 Thursday |
FORMAT_DATE('%m.%e.%G %A', CURRENT_DATE) | 01.11.2024 Thursday |
FORMAT_DATE('%m.%e.%g %A', CURRENT_DATE) | 01.11.24 Thursday |
FORMAT_DATE('%B.%e.%Y %A', CURRENT_DATE) | January.11.2024 Thursday |
FORMAT_DATE('%b.%e.%Y %A', CURRENT_DATE) | Jan.11.2024 Thursday |
FORMAT_DATE('%h.%e.%Y %A', CURRENT_DATE) | Jan.11.2024 Thursday |
FORMAT_DATE('%B.%e.%E4Y %A', CURRENT_DATE) | January.11.2024 Thursday |
FORMAT_DATE('%b.%e.%E4Y %A', CURRENT_DATE) | Jan.11.2024 Thursday |
FORMAT_DATE('%h.%e.%E4Y %A', CURRENT_DATE) | Jan.11.2024 Thursday |
FORMAT_DATE('%B.%e.%y %A', CURRENT_DATE) | January.11.24 Thursday |
FORMAT_DATE('%b.%e.%y %A', CURRENT_DATE) | Jan.11.24 Thursday |
FORMAT_DATE('%h.%e.%y %A', CURRENT_DATE) | Jan.11.24 Thursday |
FORMAT_DATE('%B.%e.%G %A', CURRENT_DATE) | January.11.2024 Thursday |
FORMAT_DATE('%b.%e.%G %A', CURRENT_DATE) | Jan.11.2024 Thursday |
FORMAT_DATE('%h.%e.%G %A', CURRENT_DATE) | Jan.11.2024 Thursday |
FORMAT_DATE('%B.%e.%g %A', CURRENT_DATE) | January.11.24 Thursday |
FORMAT_DATE('%b.%e.%g %A', CURRENT_DATE) | Jan.11.24 Thursday |
FORMAT_DATE('%h.%e.%g %A', CURRENT_DATE) | Jan.11.24 Thursday |
FORMAT_DATE('%m %e %Y %A', CURRENT_DATE) | 01 11 2024 Thursday |
FORMAT_DATE('%m %e %E4Y %A', CURRENT_DATE) | 01 11 2024 Thursday |
FORMAT_DATE('%m %e %y %A', CURRENT_DATE) | 01 11 24 Thursday |
FORMAT_DATE('%m %e %G %A', CURRENT_DATE) | 01 11 2024 Thursday |
FORMAT_DATE('%m %e %g %A', CURRENT_DATE) | 01 11 24 Thursday |
FORMAT_DATE('%B %e %Y %A', CURRENT_DATE) | January 11 2024 Thursday |
FORMAT_DATE('%b %e %Y %A', CURRENT_DATE) | Jan 11 2024 Thursday |
FORMAT_DATE('%h %e %Y %A', CURRENT_DATE) | Jan 11 2024 Thursday |
FORMAT_DATE('%B %e %E4Y %A', CURRENT_DATE) | January 11 2024 Thursday |
FORMAT_DATE('%b %e %E4Y %A', CURRENT_DATE) | Jan 11 2024 Thursday |
FORMAT_DATE('%h %e %E4Y %A', CURRENT_DATE) | Jan 11 2024 Thursday |
FORMAT_DATE('%B %e %y %A', CURRENT_DATE) | January 11 24 Thursday |
FORMAT_DATE('%b %e %y %A', CURRENT_DATE) | Jan 11 24 Thursday |
FORMAT_DATE('%h %e %y %A', CURRENT_DATE) | Jan 11 24 Thursday |
FORMAT_DATE('%B %e %G %A', CURRENT_DATE) | January 11 2024 Thursday |
FORMAT_DATE('%b %e %G %A', CURRENT_DATE) | Jan 11 2024 Thursday |
FORMAT_DATE('%h %e %G %A', CURRENT_DATE) | Jan 11 2024 Thursday |
FORMAT_DATE('%B %e %g %A', CURRENT_DATE) | January 11 24 Thursday |
FORMAT_DATE('%b %e %g %A', CURRENT_DATE) | Jan 11 24 Thursday |
FORMAT_DATE('%h %e %g %A', CURRENT_DATE) | Jan 11 24 Thursday |
FORMAT_DATE('%m%e%Y %A', CURRENT_DATE) | 01112024 Thursday |
FORMAT_DATE('%m%e%E4Y %A', CURRENT_DATE) | 01112024 Thursday |
FORMAT_DATE('%m%e%y %A', CURRENT_DATE) | 011124 Thursday |
FORMAT_DATE('%m%e%G %A', CURRENT_DATE) | 01112024 Thursday |
FORMAT_DATE('%m%e%g %A', CURRENT_DATE) | 011124 Thursday |
FORMAT_DATE('%B%e%Y %A', CURRENT_DATE) | January112024 Thursday |
FORMAT_DATE('%b%e%Y %A', CURRENT_DATE) | Jan112024 Thursday |
FORMAT_DATE('%h%e%Y %A', CURRENT_DATE) | Jan112024 Thursday |
FORMAT_DATE('%B%e%E4Y %A', CURRENT_DATE) | January112024 Thursday |
FORMAT_DATE('%b%e%E4Y %A', CURRENT_DATE) | Jan112024 Thursday |
FORMAT_DATE('%h%e%E4Y %A', CURRENT_DATE) | Jan112024 Thursday |
FORMAT_DATE('%B%e%y %A', CURRENT_DATE) | January1124 Thursday |
FORMAT_DATE('%b%e%y %A', CURRENT_DATE) | Jan1124 Thursday |
FORMAT_DATE('%h%e%y %A', CURRENT_DATE) | Jan1124 Thursday |
FORMAT_DATE('%B%e%G %A', CURRENT_DATE) | January112024 Thursday |
FORMAT_DATE('%b%e%G %A', CURRENT_DATE) | Jan112024 Thursday |
FORMAT_DATE('%h%e%G %A', CURRENT_DATE) | Jan112024 Thursday |
FORMAT_DATE('%B%e%g %A', CURRENT_DATE) | January1124 Thursday |
FORMAT_DATE('%b%e%g %A', CURRENT_DATE) | Jan1124 Thursday |
FORMAT_DATE('%h%e%g %A', CURRENT_DATE) | Jan1124 Thursday |
FORMAT_DATE('%m-%e-%Y %a', CURRENT_DATE) | 01-11-2024 Thu |
FORMAT_DATE('%m-%e-%E4Y %a', CURRENT_DATE) | 01-11-2024 Thu |
FORMAT_DATE('%m-%e-%y %a', CURRENT_DATE) | 01-11-24 Thu |
FORMAT_DATE('%m-%e-%G %a', CURRENT_DATE) | 01-11-2024 Thu |
FORMAT_DATE('%m-%e-%g %a', CURRENT_DATE) | 01-11-24 Thu |
FORMAT_DATE('%B-%e-%Y %a', CURRENT_DATE) | January-11-2024 Thu |
FORMAT_DATE('%b-%e-%Y %a', CURRENT_DATE) | Jan-11-2024 Thu |
FORMAT_DATE('%h-%e-%Y %a', CURRENT_DATE) | Jan-11-2024 Thu |
FORMAT_DATE('%B-%e-%E4Y %a', CURRENT_DATE) | January-11-2024 Thu |
FORMAT_DATE('%b-%e-%E4Y %a', CURRENT_DATE) | Jan-11-2024 Thu |
FORMAT_DATE('%h-%e-%E4Y %a', CURRENT_DATE) | Jan-11-2024 Thu |
FORMAT_DATE('%B-%e-%y %a', CURRENT_DATE) | January-11-24 Thu |
FORMAT_DATE('%b-%e-%y %a', CURRENT_DATE) | Jan-11-24 Thu |
FORMAT_DATE('%h-%e-%y %a', CURRENT_DATE) | Jan-11-24 Thu |
FORMAT_DATE('%B-%e-%G %a', CURRENT_DATE) | January-11-2024 Thu |
FORMAT_DATE('%b-%e-%G %a', CURRENT_DATE) | Jan-11-2024 Thu |
FORMAT_DATE('%h-%e-%G %a', CURRENT_DATE) | Jan-11-2024 Thu |
FORMAT_DATE('%B-%e-%g %a', CURRENT_DATE) | January-11-24 Thu |
FORMAT_DATE('%b-%e-%g %a', CURRENT_DATE) | Jan-11-24 Thu |
FORMAT_DATE('%h-%e-%g %a', CURRENT_DATE) | Jan-11-24 Thu |
FORMAT_DATE('%m/%e/%Y %a', CURRENT_DATE) | 01/11/2024 Thu |
FORMAT_DATE('%m/%e/%E4Y %a', CURRENT_DATE) | 01/11/2024 Thu |
FORMAT_DATE('%m/%e/%y %a', CURRENT_DATE) | 01/11/24 Thu |
FORMAT_DATE('%m/%e/%G %a', CURRENT_DATE) | 01/11/2024 Thu |
FORMAT_DATE('%m/%e/%g %a', CURRENT_DATE) | 01/11/24 Thu |
FORMAT_DATE('%B/%e/%Y %a', CURRENT_DATE) | January/11/2024 Thu |
FORMAT_DATE('%b/%e/%Y %a', CURRENT_DATE) | Jan/11/2024 Thu |
FORMAT_DATE('%h/%e/%Y %a', CURRENT_DATE) | Jan/11/2024 Thu |
FORMAT_DATE('%B/%e/%E4Y %a', CURRENT_DATE) | January/11/2024 Thu |
FORMAT_DATE('%b/%e/%E4Y %a', CURRENT_DATE) | Jan/11/2024 Thu |
FORMAT_DATE('%h/%e/%E4Y %a', CURRENT_DATE) | Jan/11/2024 Thu |
FORMAT_DATE('%B/%e/%y %a', CURRENT_DATE) | January/11/24 Thu |
FORMAT_DATE('%b/%e/%y %a', CURRENT_DATE) | Jan/11/24 Thu |
FORMAT_DATE('%h/%e/%y %a', CURRENT_DATE) | Jan/11/24 Thu |
FORMAT_DATE('%B/%e/%G %a', CURRENT_DATE) | January/11/2024 Thu |
FORMAT_DATE('%b/%e/%G %a', CURRENT_DATE) | Jan/11/2024 Thu |
FORMAT_DATE('%h/%e/%G %a', CURRENT_DATE) | Jan/11/2024 Thu |
FORMAT_DATE('%B/%e/%g %a', CURRENT_DATE) | January/11/24 Thu |
FORMAT_DATE('%b/%e/%g %a', CURRENT_DATE) | Jan/11/24 Thu |
FORMAT_DATE('%h/%e/%g %a', CURRENT_DATE) | Jan/11/24 Thu |
FORMAT_DATE('%m:%e:%Y %a', CURRENT_DATE) | 01:11:2024 Thu |
FORMAT_DATE('%m:%e:%E4Y %a', CURRENT_DATE) | 01:11:2024 Thu |
FORMAT_DATE('%m:%e:%y %a', CURRENT_DATE) | 01:11:24 Thu |
FORMAT_DATE('%m:%e:%G %a', CURRENT_DATE) | 01:11:2024 Thu |
FORMAT_DATE('%m:%e:%g %a', CURRENT_DATE) | 01:11:24 Thu |
FORMAT_DATE('%B:%e:%Y %a', CURRENT_DATE) | January:11:2024 Thu |
FORMAT_DATE('%b:%e:%Y %a', CURRENT_DATE) | Jan:11:2024 Thu |
FORMAT_DATE('%h:%e:%Y %a', CURRENT_DATE) | Jan:11:2024 Thu |
FORMAT_DATE('%B:%e:%E4Y %a', CURRENT_DATE) | January:11:2024 Thu |
FORMAT_DATE('%b:%e:%E4Y %a', CURRENT_DATE) | Jan:11:2024 Thu |
FORMAT_DATE('%h:%e:%E4Y %a', CURRENT_DATE) | Jan:11:2024 Thu |
FORMAT_DATE('%B:%e:%y %a', CURRENT_DATE) | January:11:24 Thu |
FORMAT_DATE('%b:%e:%y %a', CURRENT_DATE) | Jan:11:24 Thu |
FORMAT_DATE('%h:%e:%y %a', CURRENT_DATE) | Jan:11:24 Thu |
FORMAT_DATE('%B:%e:%G %a', CURRENT_DATE) | January:11:2024 Thu |
FORMAT_DATE('%b:%e:%G %a', CURRENT_DATE) | Jan:11:2024 Thu |
FORMAT_DATE('%h:%e:%G %a', CURRENT_DATE) | Jan:11:2024 Thu |
FORMAT_DATE('%B:%e:%g %a', CURRENT_DATE) | January:11:24 Thu |
FORMAT_DATE('%b:%e:%g %a', CURRENT_DATE) | Jan:11:24 Thu |
FORMAT_DATE('%h:%e:%g %a', CURRENT_DATE) | Jan:11:24 Thu |
FORMAT_DATE('%m.%e.%Y %a', CURRENT_DATE) | 01.11.2024 Thu |
FORMAT_DATE('%m.%e.%E4Y %a', CURRENT_DATE) | 01.11.2024 Thu |
FORMAT_DATE('%m.%e.%y %a', CURRENT_DATE) | 01.11.24 Thu |
FORMAT_DATE('%m.%e.%G %a', CURRENT_DATE) | 01.11.2024 Thu |
FORMAT_DATE('%m.%e.%g %a', CURRENT_DATE) | 01.11.24 Thu |
FORMAT_DATE('%B.%e.%Y %a', CURRENT_DATE) | January.11.2024 Thu |
FORMAT_DATE('%b.%e.%Y %a', CURRENT_DATE) | Jan.11.2024 Thu |
FORMAT_DATE('%h.%e.%Y %a', CURRENT_DATE) | Jan.11.2024 Thu |
FORMAT_DATE('%B.%e.%E4Y %a', CURRENT_DATE) | January.11.2024 Thu |
FORMAT_DATE('%b.%e.%E4Y %a', CURRENT_DATE) | Jan.11.2024 Thu |
FORMAT_DATE('%h.%e.%E4Y %a', CURRENT_DATE) | Jan.11.2024 Thu |
FORMAT_DATE('%B.%e.%y %a', CURRENT_DATE) | January.11.24 Thu |
FORMAT_DATE('%b.%e.%y %a', CURRENT_DATE) | Jan.11.24 Thu |
FORMAT_DATE('%h.%e.%y %a', CURRENT_DATE) | Jan.11.24 Thu |
FORMAT_DATE('%B.%e.%G %a', CURRENT_DATE) | January.11.2024 Thu |
FORMAT_DATE('%b.%e.%G %a', CURRENT_DATE) | Jan.11.2024 Thu |
FORMAT_DATE('%h.%e.%G %a', CURRENT_DATE) | Jan.11.2024 Thu |
FORMAT_DATE('%B.%e.%g %a', CURRENT_DATE) | January.11.24 Thu |
FORMAT_DATE('%b.%e.%g %a', CURRENT_DATE) | Jan.11.24 Thu |
FORMAT_DATE('%h.%e.%g %a', CURRENT_DATE) | Jan.11.24 Thu |
FORMAT_DATE('%m %e %Y %a', CURRENT_DATE) | 01 11 2024 Thu |
FORMAT_DATE('%m %e %E4Y %a', CURRENT_DATE) | 01 11 2024 Thu |
FORMAT_DATE('%m %e %y %a', CURRENT_DATE) | 01 11 24 Thu |
FORMAT_DATE('%m %e %G %a', CURRENT_DATE) | 01 11 2024 Thu |
FORMAT_DATE('%m %e %g %a', CURRENT_DATE) | 01 11 24 Thu |
FORMAT_DATE('%B %e %Y %a', CURRENT_DATE) | January 11 2024 Thu |
FORMAT_DATE('%b %e %Y %a', CURRENT_DATE) | Jan 11 2024 Thu |
FORMAT_DATE('%h %e %Y %a', CURRENT_DATE) | Jan 11 2024 Thu |
FORMAT_DATE('%B %e %E4Y %a', CURRENT_DATE) | January 11 2024 Thu |
FORMAT_DATE('%b %e %E4Y %a', CURRENT_DATE) | Jan 11 2024 Thu |
FORMAT_DATE('%h %e %E4Y %a', CURRENT_DATE) | Jan 11 2024 Thu |
FORMAT_DATE('%B %e %y %a', CURRENT_DATE) | January 11 24 Thu |
FORMAT_DATE('%b %e %y %a', CURRENT_DATE) | Jan 11 24 Thu |
FORMAT_DATE('%h %e %y %a', CURRENT_DATE) | Jan 11 24 Thu |
FORMAT_DATE('%B %e %G %a', CURRENT_DATE) | January 11 2024 Thu |
FORMAT_DATE('%b %e %G %a', CURRENT_DATE) | Jan 11 2024 Thu |
FORMAT_DATE('%h %e %G %a', CURRENT_DATE) | Jan 11 2024 Thu |
FORMAT_DATE('%B %e %g %a', CURRENT_DATE) | January 11 24 Thu |
FORMAT_DATE('%b %e %g %a', CURRENT_DATE) | Jan 11 24 Thu |
FORMAT_DATE('%h %e %g %a', CURRENT_DATE) | Jan 11 24 Thu |
FORMAT_DATE('%m%e%Y %a', CURRENT_DATE) | 01112024 Thu |
FORMAT_DATE('%m%e%E4Y %a', CURRENT_DATE) | 01112024 Thu |
FORMAT_DATE('%m%e%y %a', CURRENT_DATE) | 011124 Thu |
FORMAT_DATE('%m%e%G %a', CURRENT_DATE) | 01112024 Thu |
FORMAT_DATE('%m%e%g %a', CURRENT_DATE) | 011124 Thu |
FORMAT_DATE('%B%e%Y %a', CURRENT_DATE) | January112024 Thu |
FORMAT_DATE('%b%e%Y %a', CURRENT_DATE) | Jan112024 Thu |
FORMAT_DATE('%h%e%Y %a', CURRENT_DATE) | Jan112024 Thu |
FORMAT_DATE('%B%e%E4Y %a', CURRENT_DATE) | January112024 Thu |
FORMAT_DATE('%b%e%E4Y %a', CURRENT_DATE) | Jan112024 Thu |
FORMAT_DATE('%h%e%E4Y %a', CURRENT_DATE) | Jan112024 Thu |
FORMAT_DATE('%B%e%y %a', CURRENT_DATE) | January1124 Thu |
FORMAT_DATE('%b%e%y %a', CURRENT_DATE) | Jan1124 Thu |
FORMAT_DATE('%h%e%y %a', CURRENT_DATE) | Jan1124 Thu |
FORMAT_DATE('%B%e%G %a', CURRENT_DATE) | January112024 Thu |
FORMAT_DATE('%b%e%G %a', CURRENT_DATE) | Jan112024 Thu |
FORMAT_DATE('%h%e%G %a', CURRENT_DATE) | Jan112024 Thu |
FORMAT_DATE('%B%e%g %a', CURRENT_DATE) | January1124 Thu |
FORMAT_DATE('%b%e%g %a', CURRENT_DATE) | Jan1124 Thu |
FORMAT_DATE('%h%e%g %a', CURRENT_DATE) | Jan1124 Thu |
FORMAT_DATE('%m-%e-%Y Quarter %Q', CURRENT_DATE) | 01-11-2024 Quarter 1 |
FORMAT_DATE('%m-%e-%E4Y Quarter %Q', CURRENT_DATE) | 01-11-2024 Quarter 1 |
FORMAT_DATE('%m-%e-%y Quarter %Q', CURRENT_DATE) | 01-11-24 Quarter 1 |
FORMAT_DATE('%m-%e-%G Quarter %Q', CURRENT_DATE) | 01-11-2024 Quarter 1 |
FORMAT_DATE('%m-%e-%g Quarter %Q', CURRENT_DATE) | 01-11-24 Quarter 1 |
FORMAT_DATE('%B-%e-%Y Quarter %Q', CURRENT_DATE) | January-11-2024 Quarter 1 |
FORMAT_DATE('%b-%e-%Y Quarter %Q', CURRENT_DATE) | Jan-11-2024 Quarter 1 |
FORMAT_DATE('%h-%e-%Y Quarter %Q', CURRENT_DATE) | Jan-11-2024 Quarter 1 |
FORMAT_DATE('%B-%e-%E4Y Quarter %Q', CURRENT_DATE) | January-11-2024 Quarter 1 |
FORMAT_DATE('%b-%e-%E4Y Quarter %Q', CURRENT_DATE) | Jan-11-2024 Quarter 1 |
FORMAT_DATE('%h-%e-%E4Y Quarter %Q', CURRENT_DATE) | Jan-11-2024 Quarter 1 |
FORMAT_DATE('%B-%e-%y Quarter %Q', CURRENT_DATE) | January-11-24 Quarter 1 |
FORMAT_DATE('%b-%e-%y Quarter %Q', CURRENT_DATE) | Jan-11-24 Quarter 1 |
FORMAT_DATE('%h-%e-%y Quarter %Q', CURRENT_DATE) | Jan-11-24 Quarter 1 |
FORMAT_DATE('%B-%e-%G Quarter %Q', CURRENT_DATE) | January-11-2024 Quarter 1 |
FORMAT_DATE('%b-%e-%G Quarter %Q', CURRENT_DATE) | Jan-11-2024 Quarter 1 |
FORMAT_DATE('%h-%e-%G Quarter %Q', CURRENT_DATE) | Jan-11-2024 Quarter 1 |
FORMAT_DATE('%B-%e-%g Quarter %Q', CURRENT_DATE) | January-11-24 Quarter 1 |
FORMAT_DATE('%b-%e-%g Quarter %Q', CURRENT_DATE) | Jan-11-24 Quarter 1 |
FORMAT_DATE('%h-%e-%g Quarter %Q', CURRENT_DATE) | Jan-11-24 Quarter 1 |
FORMAT_DATE('%m/%e/%Y Quarter %Q', CURRENT_DATE) | 01/11/2024 Quarter 1 |
FORMAT_DATE('%m/%e/%E4Y Quarter %Q', CURRENT_DATE) | 01/11/2024 Quarter 1 |
FORMAT_DATE('%m/%e/%y Quarter %Q', CURRENT_DATE) | 01/11/24 Quarter 1 |
FORMAT_DATE('%m/%e/%G Quarter %Q', CURRENT_DATE) | 01/11/2024 Quarter 1 |
FORMAT_DATE('%m/%e/%g Quarter %Q', CURRENT_DATE) | 01/11/24 Quarter 1 |
FORMAT_DATE('%B/%e/%Y Quarter %Q', CURRENT_DATE) | January/11/2024 Quarter 1 |
FORMAT_DATE('%b/%e/%Y Quarter %Q', CURRENT_DATE) | Jan/11/2024 Quarter 1 |
FORMAT_DATE('%h/%e/%Y Quarter %Q', CURRENT_DATE) | Jan/11/2024 Quarter 1 |
FORMAT_DATE('%B/%e/%E4Y Quarter %Q', CURRENT_DATE) | January/11/2024 Quarter 1 |
FORMAT_DATE('%b/%e/%E4Y Quarter %Q', CURRENT_DATE) | Jan/11/2024 Quarter 1 |
FORMAT_DATE('%h/%e/%E4Y Quarter %Q', CURRENT_DATE) | Jan/11/2024 Quarter 1 |
FORMAT_DATE('%B/%e/%y Quarter %Q', CURRENT_DATE) | January/11/24 Quarter 1 |
FORMAT_DATE('%b/%e/%y Quarter %Q', CURRENT_DATE) | Jan/11/24 Quarter 1 |
FORMAT_DATE('%h/%e/%y Quarter %Q', CURRENT_DATE) | Jan/11/24 Quarter 1 |
FORMAT_DATE('%B/%e/%G Quarter %Q', CURRENT_DATE) | January/11/2024 Quarter 1 |
FORMAT_DATE('%b/%e/%G Quarter %Q', CURRENT_DATE) | Jan/11/2024 Quarter 1 |
FORMAT_DATE('%h/%e/%G Quarter %Q', CURRENT_DATE) | Jan/11/2024 Quarter 1 |
FORMAT_DATE('%B/%e/%g Quarter %Q', CURRENT_DATE) | January/11/24 Quarter 1 |
FORMAT_DATE('%b/%e/%g Quarter %Q', CURRENT_DATE) | Jan/11/24 Quarter 1 |
FORMAT_DATE('%h/%e/%g Quarter %Q', CURRENT_DATE) | Jan/11/24 Quarter 1 |
FORMAT_DATE('%m:%e:%Y Quarter %Q', CURRENT_DATE) | 01:11:2024 Quarter 1 |
FORMAT_DATE('%m:%e:%E4Y Quarter %Q', CURRENT_DATE) | 01:11:2024 Quarter 1 |
FORMAT_DATE('%m:%e:%y Quarter %Q', CURRENT_DATE) | 01:11:24 Quarter 1 |
FORMAT_DATE('%m:%e:%G Quarter %Q', CURRENT_DATE) | 01:11:2024 Quarter 1 |
FORMAT_DATE('%m:%e:%g Quarter %Q', CURRENT_DATE) | 01:11:24 Quarter 1 |
FORMAT_DATE('%B:%e:%Y Quarter %Q', CURRENT_DATE) | January:11:2024 Quarter 1 |
FORMAT_DATE('%b:%e:%Y Quarter %Q', CURRENT_DATE) | Jan:11:2024 Quarter 1 |
FORMAT_DATE('%h:%e:%Y Quarter %Q', CURRENT_DATE) | Jan:11:2024 Quarter 1 |
FORMAT_DATE('%B:%e:%E4Y Quarter %Q', CURRENT_DATE) | January:11:2024 Quarter 1 |
FORMAT_DATE('%b:%e:%E4Y Quarter %Q', CURRENT_DATE) | Jan:11:2024 Quarter 1 |
FORMAT_DATE('%h:%e:%E4Y Quarter %Q', CURRENT_DATE) | Jan:11:2024 Quarter 1 |
FORMAT_DATE('%B:%e:%y Quarter %Q', CURRENT_DATE) | January:11:24 Quarter 1 |
FORMAT_DATE('%b:%e:%y Quarter %Q', CURRENT_DATE) | Jan:11:24 Quarter 1 |
FORMAT_DATE('%h:%e:%y Quarter %Q', CURRENT_DATE) | Jan:11:24 Quarter 1 |
FORMAT_DATE('%B:%e:%G Quarter %Q', CURRENT_DATE) | January:11:2024 Quarter 1 |
FORMAT_DATE('%b:%e:%G Quarter %Q', CURRENT_DATE) | Jan:11:2024 Quarter 1 |
FORMAT_DATE('%h:%e:%G Quarter %Q', CURRENT_DATE) | Jan:11:2024 Quarter 1 |
FORMAT_DATE('%B:%e:%g Quarter %Q', CURRENT_DATE) | January:11:24 Quarter 1 |
FORMAT_DATE('%b:%e:%g Quarter %Q', CURRENT_DATE) | Jan:11:24 Quarter 1 |
FORMAT_DATE('%h:%e:%g Quarter %Q', CURRENT_DATE) | Jan:11:24 Quarter 1 |
FORMAT_DATE('%m.%e.%Y Quarter %Q', CURRENT_DATE) | 01.11.2024 Quarter 1 |
FORMAT_DATE('%m.%e.%E4Y Quarter %Q', CURRENT_DATE) | 01.11.2024 Quarter 1 |
FORMAT_DATE('%m.%e.%y Quarter %Q', CURRENT_DATE) | 01.11.24 Quarter 1 |
FORMAT_DATE('%m.%e.%G Quarter %Q', CURRENT_DATE) | 01.11.2024 Quarter 1 |
FORMAT_DATE('%m.%e.%g Quarter %Q', CURRENT_DATE) | 01.11.24 Quarter 1 |
FORMAT_DATE('%B.%e.%Y Quarter %Q', CURRENT_DATE) | January.11.2024 Quarter 1 |
FORMAT_DATE('%b.%e.%Y Quarter %Q', CURRENT_DATE) | Jan.11.2024 Quarter 1 |
FORMAT_DATE('%h.%e.%Y Quarter %Q', CURRENT_DATE) | Jan.11.2024 Quarter 1 |
FORMAT_DATE('%B.%e.%E4Y Quarter %Q', CURRENT_DATE) | January.11.2024 Quarter 1 |
FORMAT_DATE('%b.%e.%E4Y Quarter %Q', CURRENT_DATE) | Jan.11.2024 Quarter 1 |
FORMAT_DATE('%h.%e.%E4Y Quarter %Q', CURRENT_DATE) | Jan.11.2024 Quarter 1 |
FORMAT_DATE('%B.%e.%y Quarter %Q', CURRENT_DATE) | January.11.24 Quarter 1 |
FORMAT_DATE('%b.%e.%y Quarter %Q', CURRENT_DATE) | Jan.11.24 Quarter 1 |
FORMAT_DATE('%h.%e.%y Quarter %Q', CURRENT_DATE) | Jan.11.24 Quarter 1 |
FORMAT_DATE('%B.%e.%G Quarter %Q', CURRENT_DATE) | January.11.2024 Quarter 1 |
FORMAT_DATE('%b.%e.%G Quarter %Q', CURRENT_DATE) | Jan.11.2024 Quarter 1 |
FORMAT_DATE('%h.%e.%G Quarter %Q', CURRENT_DATE) | Jan.11.2024 Quarter 1 |
FORMAT_DATE('%B.%e.%g Quarter %Q', CURRENT_DATE) | January.11.24 Quarter 1 |
FORMAT_DATE('%b.%e.%g Quarter %Q', CURRENT_DATE) | Jan.11.24 Quarter 1 |
FORMAT_DATE('%h.%e.%g Quarter %Q', CURRENT_DATE) | Jan.11.24 Quarter 1 |
FORMAT_DATE('%m %e %Y Quarter %Q', CURRENT_DATE) | 01 11 2024 Quarter 1 |
FORMAT_DATE('%m %e %E4Y Quarter %Q', CURRENT_DATE) | 01 11 2024 Quarter 1 |
FORMAT_DATE('%m %e %y Quarter %Q', CURRENT_DATE) | 01 11 24 Quarter 1 |
FORMAT_DATE('%m %e %G Quarter %Q', CURRENT_DATE) | 01 11 2024 Quarter 1 |
FORMAT_DATE('%m %e %g Quarter %Q', CURRENT_DATE) | 01 11 24 Quarter 1 |
FORMAT_DATE('%B %e %Y Quarter %Q', CURRENT_DATE) | January 11 2024 Quarter 1 |
FORMAT_DATE('%b %e %Y Quarter %Q', CURRENT_DATE) | Jan 11 2024 Quarter 1 |
FORMAT_DATE('%h %e %Y Quarter %Q', CURRENT_DATE) | Jan 11 2024 Quarter 1 |
FORMAT_DATE('%B %e %E4Y Quarter %Q', CURRENT_DATE) | January 11 2024 Quarter 1 |
FORMAT_DATE('%b %e %E4Y Quarter %Q', CURRENT_DATE) | Jan 11 2024 Quarter 1 |
FORMAT_DATE('%h %e %E4Y Quarter %Q', CURRENT_DATE) | Jan 11 2024 Quarter 1 |
FORMAT_DATE('%B %e %y Quarter %Q', CURRENT_DATE) | January 11 24 Quarter 1 |
FORMAT_DATE('%b %e %y Quarter %Q', CURRENT_DATE) | Jan 11 24 Quarter 1 |
FORMAT_DATE('%h %e %y Quarter %Q', CURRENT_DATE) | Jan 11 24 Quarter 1 |
FORMAT_DATE('%B %e %G Quarter %Q', CURRENT_DATE) | January 11 2024 Quarter 1 |
FORMAT_DATE('%b %e %G Quarter %Q', CURRENT_DATE) | Jan 11 2024 Quarter 1 |
FORMAT_DATE('%h %e %G Quarter %Q', CURRENT_DATE) | Jan 11 2024 Quarter 1 |
FORMAT_DATE('%B %e %g Quarter %Q', CURRENT_DATE) | January 11 24 Quarter 1 |
FORMAT_DATE('%b %e %g Quarter %Q', CURRENT_DATE) | Jan 11 24 Quarter 1 |
FORMAT_DATE('%h %e %g Quarter %Q', CURRENT_DATE) | Jan 11 24 Quarter 1 |
FORMAT_DATE('%m%e%Y Quarter %Q', CURRENT_DATE) | 01112024 Quarter 1 |
FORMAT_DATE('%m%e%E4Y Quarter %Q', CURRENT_DATE) | 01112024 Quarter 1 |
FORMAT_DATE('%m%e%y Quarter %Q', CURRENT_DATE) | 011124 Quarter 1 |
FORMAT_DATE('%m%e%G Quarter %Q', CURRENT_DATE) | 01112024 Quarter 1 |
FORMAT_DATE('%m%e%g Quarter %Q', CURRENT_DATE) | 011124 Quarter 1 |
FORMAT_DATE('%B%e%Y Quarter %Q', CURRENT_DATE) | January112024 Quarter 1 |
FORMAT_DATE('%b%e%Y Quarter %Q', CURRENT_DATE) | Jan112024 Quarter 1 |
FORMAT_DATE('%h%e%Y Quarter %Q', CURRENT_DATE) | Jan112024 Quarter 1 |
FORMAT_DATE('%B%e%E4Y Quarter %Q', CURRENT_DATE) | January112024 Quarter 1 |
FORMAT_DATE('%b%e%E4Y Quarter %Q', CURRENT_DATE) | Jan112024 Quarter 1 |
FORMAT_DATE('%h%e%E4Y Quarter %Q', CURRENT_DATE) | Jan112024 Quarter 1 |
FORMAT_DATE('%B%e%y Quarter %Q', CURRENT_DATE) | January1124 Quarter 1 |
FORMAT_DATE('%b%e%y Quarter %Q', CURRENT_DATE) | Jan1124 Quarter 1 |
FORMAT_DATE('%h%e%y Quarter %Q', CURRENT_DATE) | Jan1124 Quarter 1 |
FORMAT_DATE('%B%e%G Quarter %Q', CURRENT_DATE) | January112024 Quarter 1 |
FORMAT_DATE('%b%e%G Quarter %Q', CURRENT_DATE) | Jan112024 Quarter 1 |
FORMAT_DATE('%h%e%G Quarter %Q', CURRENT_DATE) | Jan112024 Quarter 1 |
FORMAT_DATE('%B%e%g Quarter %Q', CURRENT_DATE) | January1124 Quarter 1 |
FORMAT_DATE('%b%e%g Quarter %Q', CURRENT_DATE) | Jan1124 Quarter 1 |
FORMAT_DATE('%h%e%g Quarter %Q', CURRENT_DATE) | Jan1124 Quarter 1 |
FORMAT_DATE('%m-%e-%Y Week %U', CURRENT_DATE) | 01-11-2024 Week 01 |
FORMAT_DATE('%m-%e-%E4Y Week %U', CURRENT_DATE) | 01-11-2024 Week 01 |
FORMAT_DATE('%m-%e-%y Week %U', CURRENT_DATE) | 01-11-24 Week 01 |
FORMAT_DATE('%m-%e-%G Week %U', CURRENT_DATE) | 01-11-2024 Week 01 |
FORMAT_DATE('%m-%e-%g Week %U', CURRENT_DATE) | 01-11-24 Week 01 |
FORMAT_DATE('%B-%e-%Y Week %U', CURRENT_DATE) | January-11-2024 Week 01 |
FORMAT_DATE('%b-%e-%Y Week %U', CURRENT_DATE) | Jan-11-2024 Week 01 |
FORMAT_DATE('%h-%e-%Y Week %U', CURRENT_DATE) | Jan-11-2024 Week 01 |
FORMAT_DATE('%B-%e-%E4Y Week %U', CURRENT_DATE) | January-11-2024 Week 01 |
FORMAT_DATE('%b-%e-%E4Y Week %U', CURRENT_DATE) | Jan-11-2024 Week 01 |
FORMAT_DATE('%h-%e-%E4Y Week %U', CURRENT_DATE) | Jan-11-2024 Week 01 |
FORMAT_DATE('%B-%e-%y Week %U', CURRENT_DATE) | January-11-24 Week 01 |
FORMAT_DATE('%b-%e-%y Week %U', CURRENT_DATE) | Jan-11-24 Week 01 |
FORMAT_DATE('%h-%e-%y Week %U', CURRENT_DATE) | Jan-11-24 Week 01 |
FORMAT_DATE('%B-%e-%G Week %U', CURRENT_DATE) | January-11-2024 Week 01 |
FORMAT_DATE('%b-%e-%G Week %U', CURRENT_DATE) | Jan-11-2024 Week 01 |
FORMAT_DATE('%h-%e-%G Week %U', CURRENT_DATE) | Jan-11-2024 Week 01 |
FORMAT_DATE('%B-%e-%g Week %U', CURRENT_DATE) | January-11-24 Week 01 |
FORMAT_DATE('%b-%e-%g Week %U', CURRENT_DATE) | Jan-11-24 Week 01 |
FORMAT_DATE('%h-%e-%g Week %U', CURRENT_DATE) | Jan-11-24 Week 01 |
FORMAT_DATE('%m/%e/%Y Week %U', CURRENT_DATE) | 01/11/2024 Week 01 |
FORMAT_DATE('%m/%e/%E4Y Week %U', CURRENT_DATE) | 01/11/2024 Week 01 |
FORMAT_DATE('%m/%e/%y Week %U', CURRENT_DATE) | 01/11/24 Week 01 |
FORMAT_DATE('%m/%e/%G Week %U', CURRENT_DATE) | 01/11/2024 Week 01 |
FORMAT_DATE('%m/%e/%g Week %U', CURRENT_DATE) | 01/11/24 Week 01 |
FORMAT_DATE('%B/%e/%Y Week %U', CURRENT_DATE) | January/11/2024 Week 01 |
FORMAT_DATE('%b/%e/%Y Week %U', CURRENT_DATE) | Jan/11/2024 Week 01 |
FORMAT_DATE('%h/%e/%Y Week %U', CURRENT_DATE) | Jan/11/2024 Week 01 |
FORMAT_DATE('%B/%e/%E4Y Week %U', CURRENT_DATE) | January/11/2024 Week 01 |
FORMAT_DATE('%b/%e/%E4Y Week %U', CURRENT_DATE) | Jan/11/2024 Week 01 |
FORMAT_DATE('%h/%e/%E4Y Week %U', CURRENT_DATE) | Jan/11/2024 Week 01 |
FORMAT_DATE('%B/%e/%y Week %U', CURRENT_DATE) | January/11/24 Week 01 |
FORMAT_DATE('%b/%e/%y Week %U', CURRENT_DATE) | Jan/11/24 Week 01 |
FORMAT_DATE('%h/%e/%y Week %U', CURRENT_DATE) | Jan/11/24 Week 01 |
FORMAT_DATE('%B/%e/%G Week %U', CURRENT_DATE) | January/11/2024 Week 01 |
FORMAT_DATE('%b/%e/%G Week %U', CURRENT_DATE) | Jan/11/2024 Week 01 |
FORMAT_DATE('%h/%e/%G Week %U', CURRENT_DATE) | Jan/11/2024 Week 01 |
FORMAT_DATE('%B/%e/%g Week %U', CURRENT_DATE) | January/11/24 Week 01 |
FORMAT_DATE('%b/%e/%g Week %U', CURRENT_DATE) | Jan/11/24 Week 01 |
FORMAT_DATE('%h/%e/%g Week %U', CURRENT_DATE) | Jan/11/24 Week 01 |
FORMAT_DATE('%m:%e:%Y Week %U', CURRENT_DATE) | 01:11:2024 Week 01 |
FORMAT_DATE('%m:%e:%E4Y Week %U', CURRENT_DATE) | 01:11:2024 Week 01 |
FORMAT_DATE('%m:%e:%y Week %U', CURRENT_DATE) | 01:11:24 Week 01 |
FORMAT_DATE('%m:%e:%G Week %U', CURRENT_DATE) | 01:11:2024 Week 01 |
FORMAT_DATE('%m:%e:%g Week %U', CURRENT_DATE) | 01:11:24 Week 01 |
FORMAT_DATE('%B:%e:%Y Week %U', CURRENT_DATE) | January:11:2024 Week 01 |
FORMAT_DATE('%b:%e:%Y Week %U', CURRENT_DATE) | Jan:11:2024 Week 01 |
FORMAT_DATE('%h:%e:%Y Week %U', CURRENT_DATE) | Jan:11:2024 Week 01 |
FORMAT_DATE('%B:%e:%E4Y Week %U', CURRENT_DATE) | January:11:2024 Week 01 |
FORMAT_DATE('%b:%e:%E4Y Week %U', CURRENT_DATE) | Jan:11:2024 Week 01 |
FORMAT_DATE('%h:%e:%E4Y Week %U', CURRENT_DATE) | Jan:11:2024 Week 01 |
FORMAT_DATE('%B:%e:%y Week %U', CURRENT_DATE) | January:11:24 Week 01 |
FORMAT_DATE('%b:%e:%y Week %U', CURRENT_DATE) | Jan:11:24 Week 01 |
FORMAT_DATE('%h:%e:%y Week %U', CURRENT_DATE) | Jan:11:24 Week 01 |
FORMAT_DATE('%B:%e:%G Week %U', CURRENT_DATE) | January:11:2024 Week 01 |
FORMAT_DATE('%b:%e:%G Week %U', CURRENT_DATE) | Jan:11:2024 Week 01 |
FORMAT_DATE('%h:%e:%G Week %U', CURRENT_DATE) | Jan:11:2024 Week 01 |
FORMAT_DATE('%B:%e:%g Week %U', CURRENT_DATE) | January:11:24 Week 01 |
FORMAT_DATE('%b:%e:%g Week %U', CURRENT_DATE) | Jan:11:24 Week 01 |
FORMAT_DATE('%h:%e:%g Week %U', CURRENT_DATE) | Jan:11:24 Week 01 |
FORMAT_DATE('%m.%e.%Y Week %U', CURRENT_DATE) | 01.11.2024 Week 01 |
FORMAT_DATE('%m.%e.%E4Y Week %U', CURRENT_DATE) | 01.11.2024 Week 01 |
FORMAT_DATE('%m.%e.%y Week %U', CURRENT_DATE) | 01.11.24 Week 01 |
FORMAT_DATE('%m.%e.%G Week %U', CURRENT_DATE) | 01.11.2024 Week 01 |
FORMAT_DATE('%m.%e.%g Week %U', CURRENT_DATE) | 01.11.24 Week 01 |
FORMAT_DATE('%B.%e.%Y Week %U', CURRENT_DATE) | January.11.2024 Week 01 |
FORMAT_DATE('%b.%e.%Y Week %U', CURRENT_DATE) | Jan.11.2024 Week 01 |
FORMAT_DATE('%h.%e.%Y Week %U', CURRENT_DATE) | Jan.11.2024 Week 01 |
FORMAT_DATE('%B.%e.%E4Y Week %U', CURRENT_DATE) | January.11.2024 Week 01 |
FORMAT_DATE('%b.%e.%E4Y Week %U', CURRENT_DATE) | Jan.11.2024 Week 01 |
FORMAT_DATE('%h.%e.%E4Y Week %U', CURRENT_DATE) | Jan.11.2024 Week 01 |
FORMAT_DATE('%B.%e.%y Week %U', CURRENT_DATE) | January.11.24 Week 01 |
FORMAT_DATE('%b.%e.%y Week %U', CURRENT_DATE) | Jan.11.24 Week 01 |
FORMAT_DATE('%h.%e.%y Week %U', CURRENT_DATE) | Jan.11.24 Week 01 |
FORMAT_DATE('%B.%e.%G Week %U', CURRENT_DATE) | January.11.2024 Week 01 |
FORMAT_DATE('%b.%e.%G Week %U', CURRENT_DATE) | Jan.11.2024 Week 01 |
FORMAT_DATE('%h.%e.%G Week %U', CURRENT_DATE) | Jan.11.2024 Week 01 |
FORMAT_DATE('%B.%e.%g Week %U', CURRENT_DATE) | January.11.24 Week 01 |
FORMAT_DATE('%b.%e.%g Week %U', CURRENT_DATE) | Jan.11.24 Week 01 |
FORMAT_DATE('%h.%e.%g Week %U', CURRENT_DATE) | Jan.11.24 Week 01 |
FORMAT_DATE('%m %e %Y Week %U', CURRENT_DATE) | 01 11 2024 Week 01 |
FORMAT_DATE('%m %e %E4Y Week %U', CURRENT_DATE) | 01 11 2024 Week 01 |
FORMAT_DATE('%m %e %y Week %U', CURRENT_DATE) | 01 11 24 Week 01 |
FORMAT_DATE('%m %e %G Week %U', CURRENT_DATE) | 01 11 2024 Week 01 |
FORMAT_DATE('%m %e %g Week %U', CURRENT_DATE) | 01 11 24 Week 01 |
FORMAT_DATE('%B %e %Y Week %U', CURRENT_DATE) | January 11 2024 Week 01 |
FORMAT_DATE('%b %e %Y Week %U', CURRENT_DATE) | Jan 11 2024 Week 01 |
FORMAT_DATE('%h %e %Y Week %U', CURRENT_DATE) | Jan 11 2024 Week 01 |
FORMAT_DATE('%B %e %E4Y Week %U', CURRENT_DATE) | January 11 2024 Week 01 |
FORMAT_DATE('%b %e %E4Y Week %U', CURRENT_DATE) | Jan 11 2024 Week 01 |
FORMAT_DATE('%h %e %E4Y Week %U', CURRENT_DATE) | Jan 11 2024 Week 01 |
FORMAT_DATE('%B %e %y Week %U', CURRENT_DATE) | January 11 24 Week 01 |
FORMAT_DATE('%b %e %y Week %U', CURRENT_DATE) | Jan 11 24 Week 01 |
FORMAT_DATE('%h %e %y Week %U', CURRENT_DATE) | Jan 11 24 Week 01 |
FORMAT_DATE('%B %e %G Week %U', CURRENT_DATE) | January 11 2024 Week 01 |
FORMAT_DATE('%b %e %G Week %U', CURRENT_DATE) | Jan 11 2024 Week 01 |
FORMAT_DATE('%h %e %G Week %U', CURRENT_DATE) | Jan 11 2024 Week 01 |
FORMAT_DATE('%B %e %g Week %U', CURRENT_DATE) | January 11 24 Week 01 |
FORMAT_DATE('%b %e %g Week %U', CURRENT_DATE) | Jan 11 24 Week 01 |
FORMAT_DATE('%h %e %g Week %U', CURRENT_DATE) | Jan 11 24 Week 01 |
FORMAT_DATE('%m%e%Y Week %U', CURRENT_DATE) | 01112024 Week 01 |
FORMAT_DATE('%m%e%E4Y Week %U', CURRENT_DATE) | 01112024 Week 01 |
FORMAT_DATE('%m%e%y Week %U', CURRENT_DATE) | 011124 Week 01 |
FORMAT_DATE('%m%e%G Week %U', CURRENT_DATE) | 01112024 Week 01 |
FORMAT_DATE('%m%e%g Week %U', CURRENT_DATE) | 011124 Week 01 |
FORMAT_DATE('%B%e%Y Week %U', CURRENT_DATE) | January112024 Week 01 |
FORMAT_DATE('%b%e%Y Week %U', CURRENT_DATE) | Jan112024 Week 01 |
FORMAT_DATE('%h%e%Y Week %U', CURRENT_DATE) | Jan112024 Week 01 |
FORMAT_DATE('%B%e%E4Y Week %U', CURRENT_DATE) | January112024 Week 01 |
FORMAT_DATE('%b%e%E4Y Week %U', CURRENT_DATE) | Jan112024 Week 01 |
FORMAT_DATE('%h%e%E4Y Week %U', CURRENT_DATE) | Jan112024 Week 01 |
FORMAT_DATE('%B%e%y Week %U', CURRENT_DATE) | January1124 Week 01 |
FORMAT_DATE('%b%e%y Week %U', CURRENT_DATE) | Jan1124 Week 01 |
FORMAT_DATE('%h%e%y Week %U', CURRENT_DATE) | Jan1124 Week 01 |
FORMAT_DATE('%B%e%G Week %U', CURRENT_DATE) | January112024 Week 01 |
FORMAT_DATE('%b%e%G Week %U', CURRENT_DATE) | Jan112024 Week 01 |
FORMAT_DATE('%h%e%G Week %U', CURRENT_DATE) | Jan112024 Week 01 |
FORMAT_DATE('%B%e%g Week %U', CURRENT_DATE) | January1124 Week 01 |
FORMAT_DATE('%b%e%g Week %U', CURRENT_DATE) | Jan1124 Week 01 |
FORMAT_DATE('%h%e%g Week %U', CURRENT_DATE) | Jan1124 Week 01 |
FORMAT_DATE('%m-%e-%Y Week %W', CURRENT_DATE) | 01-11-2024 Week 02 |
FORMAT_DATE('%m-%e-%E4Y Week %W', CURRENT_DATE) | 01-11-2024 Week 02 |
FORMAT_DATE('%m-%e-%y Week %W', CURRENT_DATE) | 01-11-24 Week 02 |
FORMAT_DATE('%m-%e-%G Week %W', CURRENT_DATE) | 01-11-2024 Week 02 |
FORMAT_DATE('%m-%e-%g Week %W', CURRENT_DATE) | 01-11-24 Week 02 |
FORMAT_DATE('%B-%e-%Y Week %W', CURRENT_DATE) | January-11-2024 Week 02 |
FORMAT_DATE('%b-%e-%Y Week %W', CURRENT_DATE) | Jan-11-2024 Week 02 |
FORMAT_DATE('%h-%e-%Y Week %W', CURRENT_DATE) | Jan-11-2024 Week 02 |
FORMAT_DATE('%B-%e-%E4Y Week %W', CURRENT_DATE) | January-11-2024 Week 02 |
FORMAT_DATE('%b-%e-%E4Y Week %W', CURRENT_DATE) | Jan-11-2024 Week 02 |
FORMAT_DATE('%h-%e-%E4Y Week %W', CURRENT_DATE) | Jan-11-2024 Week 02 |
FORMAT_DATE('%B-%e-%y Week %W', CURRENT_DATE) | January-11-24 Week 02 |
FORMAT_DATE('%b-%e-%y Week %W', CURRENT_DATE) | Jan-11-24 Week 02 |
FORMAT_DATE('%h-%e-%y Week %W', CURRENT_DATE) | Jan-11-24 Week 02 |
FORMAT_DATE('%B-%e-%G Week %W', CURRENT_DATE) | January-11-2024 Week 02 |
FORMAT_DATE('%b-%e-%G Week %W', CURRENT_DATE) | Jan-11-2024 Week 02 |
FORMAT_DATE('%h-%e-%G Week %W', CURRENT_DATE) | Jan-11-2024 Week 02 |
FORMAT_DATE('%B-%e-%g Week %W', CURRENT_DATE) | January-11-24 Week 02 |
FORMAT_DATE('%b-%e-%g Week %W', CURRENT_DATE) | Jan-11-24 Week 02 |
FORMAT_DATE('%h-%e-%g Week %W', CURRENT_DATE) | Jan-11-24 Week 02 |
FORMAT_DATE('%m/%e/%Y Week %W', CURRENT_DATE) | 01/11/2024 Week 02 |
FORMAT_DATE('%m/%e/%E4Y Week %W', CURRENT_DATE) | 01/11/2024 Week 02 |
FORMAT_DATE('%m/%e/%y Week %W', CURRENT_DATE) | 01/11/24 Week 02 |
FORMAT_DATE('%m/%e/%G Week %W', CURRENT_DATE) | 01/11/2024 Week 02 |
FORMAT_DATE('%m/%e/%g Week %W', CURRENT_DATE) | 01/11/24 Week 02 |
FORMAT_DATE('%B/%e/%Y Week %W', CURRENT_DATE) | January/11/2024 Week 02 |
FORMAT_DATE('%b/%e/%Y Week %W', CURRENT_DATE) | Jan/11/2024 Week 02 |
FORMAT_DATE('%h/%e/%Y Week %W', CURRENT_DATE) | Jan/11/2024 Week 02 |
FORMAT_DATE('%B/%e/%E4Y Week %W', CURRENT_DATE) | January/11/2024 Week 02 |
FORMAT_DATE('%b/%e/%E4Y Week %W', CURRENT_DATE) | Jan/11/2024 Week 02 |
FORMAT_DATE('%h/%e/%E4Y Week %W', CURRENT_DATE) | Jan/11/2024 Week 02 |
FORMAT_DATE('%B/%e/%y Week %W', CURRENT_DATE) | January/11/24 Week 02 |
FORMAT_DATE('%b/%e/%y Week %W', CURRENT_DATE) | Jan/11/24 Week 02 |
FORMAT_DATE('%h/%e/%y Week %W', CURRENT_DATE) | Jan/11/24 Week 02 |
FORMAT_DATE('%B/%e/%G Week %W', CURRENT_DATE) | January/11/2024 Week 02 |
FORMAT_DATE('%b/%e/%G Week %W', CURRENT_DATE) | Jan/11/2024 Week 02 |
FORMAT_DATE('%h/%e/%G Week %W', CURRENT_DATE) | Jan/11/2024 Week 02 |
FORMAT_DATE('%B/%e/%g Week %W', CURRENT_DATE) | January/11/24 Week 02 |
FORMAT_DATE('%b/%e/%g Week %W', CURRENT_DATE) | Jan/11/24 Week 02 |
FORMAT_DATE('%h/%e/%g Week %W', CURRENT_DATE) | Jan/11/24 Week 02 |
FORMAT_DATE('%m:%e:%Y Week %W', CURRENT_DATE) | 01:11:2024 Week 02 |
FORMAT_DATE('%m:%e:%E4Y Week %W', CURRENT_DATE) | 01:11:2024 Week 02 |
FORMAT_DATE('%m:%e:%y Week %W', CURRENT_DATE) | 01:11:24 Week 02 |
FORMAT_DATE('%m:%e:%G Week %W', CURRENT_DATE) | 01:11:2024 Week 02 |
FORMAT_DATE('%m:%e:%g Week %W', CURRENT_DATE) | 01:11:24 Week 02 |
FORMAT_DATE('%B:%e:%Y Week %W', CURRENT_DATE) | January:11:2024 Week 02 |
FORMAT_DATE('%b:%e:%Y Week %W', CURRENT_DATE) | Jan:11:2024 Week 02 |
FORMAT_DATE('%h:%e:%Y Week %W', CURRENT_DATE) | Jan:11:2024 Week 02 |
FORMAT_DATE('%B:%e:%E4Y Week %W', CURRENT_DATE) | January:11:2024 Week 02 |
FORMAT_DATE('%b:%e:%E4Y Week %W', CURRENT_DATE) | Jan:11:2024 Week 02 |
FORMAT_DATE('%h:%e:%E4Y Week %W', CURRENT_DATE) | Jan:11:2024 Week 02 |
FORMAT_DATE('%B:%e:%y Week %W', CURRENT_DATE) | January:11:24 Week 02 |
FORMAT_DATE('%b:%e:%y Week %W', CURRENT_DATE) | Jan:11:24 Week 02 |
FORMAT_DATE('%h:%e:%y Week %W', CURRENT_DATE) | Jan:11:24 Week 02 |
FORMAT_DATE('%B:%e:%G Week %W', CURRENT_DATE) | January:11:2024 Week 02 |
FORMAT_DATE('%b:%e:%G Week %W', CURRENT_DATE) | Jan:11:2024 Week 02 |
FORMAT_DATE('%h:%e:%G Week %W', CURRENT_DATE) | Jan:11:2024 Week 02 |
FORMAT_DATE('%B:%e:%g Week %W', CURRENT_DATE) | January:11:24 Week 02 |
FORMAT_DATE('%b:%e:%g Week %W', CURRENT_DATE) | Jan:11:24 Week 02 |
FORMAT_DATE('%h:%e:%g Week %W', CURRENT_DATE) | Jan:11:24 Week 02 |
FORMAT_DATE('%m.%e.%Y Week %W', CURRENT_DATE) | 01.11.2024 Week 02 |
FORMAT_DATE('%m.%e.%E4Y Week %W', CURRENT_DATE) | 01.11.2024 Week 02 |
FORMAT_DATE('%m.%e.%y Week %W', CURRENT_DATE) | 01.11.24 Week 02 |
FORMAT_DATE('%m.%e.%G Week %W', CURRENT_DATE) | 01.11.2024 Week 02 |
FORMAT_DATE('%m.%e.%g Week %W', CURRENT_DATE) | 01.11.24 Week 02 |
FORMAT_DATE('%B.%e.%Y Week %W', CURRENT_DATE) | January.11.2024 Week 02 |
FORMAT_DATE('%b.%e.%Y Week %W', CURRENT_DATE) | Jan.11.2024 Week 02 |
FORMAT_DATE('%h.%e.%Y Week %W', CURRENT_DATE) | Jan.11.2024 Week 02 |
FORMAT_DATE('%B.%e.%E4Y Week %W', CURRENT_DATE) | January.11.2024 Week 02 |
FORMAT_DATE('%b.%e.%E4Y Week %W', CURRENT_DATE) | Jan.11.2024 Week 02 |
FORMAT_DATE('%h.%e.%E4Y Week %W', CURRENT_DATE) | Jan.11.2024 Week 02 |
FORMAT_DATE('%B.%e.%y Week %W', CURRENT_DATE) | January.11.24 Week 02 |
FORMAT_DATE('%b.%e.%y Week %W', CURRENT_DATE) | Jan.11.24 Week 02 |
FORMAT_DATE('%h.%e.%y Week %W', CURRENT_DATE) | Jan.11.24 Week 02 |
FORMAT_DATE('%B.%e.%G Week %W', CURRENT_DATE) | January.11.2024 Week 02 |
FORMAT_DATE('%b.%e.%G Week %W', CURRENT_DATE) | Jan.11.2024 Week 02 |
FORMAT_DATE('%h.%e.%G Week %W', CURRENT_DATE) | Jan.11.2024 Week 02 |
FORMAT_DATE('%B.%e.%g Week %W', CURRENT_DATE) | January.11.24 Week 02 |
FORMAT_DATE('%b.%e.%g Week %W', CURRENT_DATE) | Jan.11.24 Week 02 |
FORMAT_DATE('%h.%e.%g Week %W', CURRENT_DATE) | Jan.11.24 Week 02 |
FORMAT_DATE('%m %e %Y Week %W', CURRENT_DATE) | 01 11 2024 Week 02 |
FORMAT_DATE('%m %e %E4Y Week %W', CURRENT_DATE) | 01 11 2024 Week 02 |
FORMAT_DATE('%m %e %y Week %W', CURRENT_DATE) | 01 11 24 Week 02 |
FORMAT_DATE('%m %e %G Week %W', CURRENT_DATE) | 01 11 2024 Week 02 |
FORMAT_DATE('%m %e %g Week %W', CURRENT_DATE) | 01 11 24 Week 02 |
FORMAT_DATE('%B %e %Y Week %W', CURRENT_DATE) | January 11 2024 Week 02 |
FORMAT_DATE('%b %e %Y Week %W', CURRENT_DATE) | Jan 11 2024 Week 02 |
FORMAT_DATE('%h %e %Y Week %W', CURRENT_DATE) | Jan 11 2024 Week 02 |
FORMAT_DATE('%B %e %E4Y Week %W', CURRENT_DATE) | January 11 2024 Week 02 |
FORMAT_DATE('%b %e %E4Y Week %W', CURRENT_DATE) | Jan 11 2024 Week 02 |
FORMAT_DATE('%h %e %E4Y Week %W', CURRENT_DATE) | Jan 11 2024 Week 02 |
FORMAT_DATE('%B %e %y Week %W', CURRENT_DATE) | January 11 24 Week 02 |
FORMAT_DATE('%b %e %y Week %W', CURRENT_DATE) | Jan 11 24 Week 02 |
FORMAT_DATE('%h %e %y Week %W', CURRENT_DATE) | Jan 11 24 Week 02 |
FORMAT_DATE('%B %e %G Week %W', CURRENT_DATE) | January 11 2024 Week 02 |
FORMAT_DATE('%b %e %G Week %W', CURRENT_DATE) | Jan 11 2024 Week 02 |
FORMAT_DATE('%h %e %G Week %W', CURRENT_DATE) | Jan 11 2024 Week 02 |
FORMAT_DATE('%B %e %g Week %W', CURRENT_DATE) | January 11 24 Week 02 |
FORMAT_DATE('%b %e %g Week %W', CURRENT_DATE) | Jan 11 24 Week 02 |
FORMAT_DATE('%h %e %g Week %W', CURRENT_DATE) | Jan 11 24 Week 02 |
FORMAT_DATE('%m%e%Y Week %W', CURRENT_DATE) | 01112024 Week 02 |
FORMAT_DATE('%m%e%E4Y Week %W', CURRENT_DATE) | 01112024 Week 02 |
FORMAT_DATE('%m%e%y Week %W', CURRENT_DATE) | 011124 Week 02 |
FORMAT_DATE('%m%e%G Week %W', CURRENT_DATE) | 01112024 Week 02 |
FORMAT_DATE('%m%e%g Week %W', CURRENT_DATE) | 011124 Week 02 |
FORMAT_DATE('%B%e%Y Week %W', CURRENT_DATE) | January112024 Week 02 |
FORMAT_DATE('%b%e%Y Week %W', CURRENT_DATE) | Jan112024 Week 02 |
FORMAT_DATE('%h%e%Y Week %W', CURRENT_DATE) | Jan112024 Week 02 |
FORMAT_DATE('%B%e%E4Y Week %W', CURRENT_DATE) | January112024 Week 02 |
FORMAT_DATE('%b%e%E4Y Week %W', CURRENT_DATE) | Jan112024 Week 02 |
FORMAT_DATE('%h%e%E4Y Week %W', CURRENT_DATE) | Jan112024 Week 02 |
FORMAT_DATE('%B%e%y Week %W', CURRENT_DATE) | January1124 Week 02 |
FORMAT_DATE('%b%e%y Week %W', CURRENT_DATE) | Jan1124 Week 02 |
FORMAT_DATE('%h%e%y Week %W', CURRENT_DATE) | Jan1124 Week 02 |
FORMAT_DATE('%B%e%G Week %W', CURRENT_DATE) | January112024 Week 02 |
FORMAT_DATE('%b%e%G Week %W', CURRENT_DATE) | Jan112024 Week 02 |
FORMAT_DATE('%h%e%G Week %W', CURRENT_DATE) | Jan112024 Week 02 |
FORMAT_DATE('%B%e%g Week %W', CURRENT_DATE) | January1124 Week 02 |
FORMAT_DATE('%b%e%g Week %W', CURRENT_DATE) | Jan1124 Week 02 |
FORMAT_DATE('%h%e%g Week %W', CURRENT_DATE) | Jan1124 Week 02 |
FORMAT_DATE('%m-%e-%Y ISO Week %V', CURRENT_DATE) | 01-11-2024 ISO Week 02 |
FORMAT_DATE('%m-%e-%E4Y ISO Week %V', CURRENT_DATE) | 01-11-2024 ISO Week 02 |
FORMAT_DATE('%m-%e-%y ISO Week %V', CURRENT_DATE) | 01-11-24 ISO Week 02 |
FORMAT_DATE('%m-%e-%G ISO Week %V', CURRENT_DATE) | 01-11-2024 ISO Week 02 |
FORMAT_DATE('%m-%e-%g ISO Week %V', CURRENT_DATE) | 01-11-24 ISO Week 02 |
FORMAT_DATE('%B-%e-%Y ISO Week %V', CURRENT_DATE) | January-11-2024 ISO Week 02 |
FORMAT_DATE('%b-%e-%Y ISO Week %V', CURRENT_DATE) | Jan-11-2024 ISO Week 02 |
FORMAT_DATE('%h-%e-%Y ISO Week %V', CURRENT_DATE) | Jan-11-2024 ISO Week 02 |
FORMAT_DATE('%B-%e-%E4Y ISO Week %V', CURRENT_DATE) | January-11-2024 ISO Week 02 |
FORMAT_DATE('%b-%e-%E4Y ISO Week %V', CURRENT_DATE) | Jan-11-2024 ISO Week 02 |
FORMAT_DATE('%h-%e-%E4Y ISO Week %V', CURRENT_DATE) | Jan-11-2024 ISO Week 02 |
FORMAT_DATE('%B-%e-%y ISO Week %V', CURRENT_DATE) | January-11-24 ISO Week 02 |
FORMAT_DATE('%b-%e-%y ISO Week %V', CURRENT_DATE) | Jan-11-24 ISO Week 02 |
FORMAT_DATE('%h-%e-%y ISO Week %V', CURRENT_DATE) | Jan-11-24 ISO Week 02 |
FORMAT_DATE('%B-%e-%G ISO Week %V', CURRENT_DATE) | January-11-2024 ISO Week 02 |
FORMAT_DATE('%b-%e-%G ISO Week %V', CURRENT_DATE) | Jan-11-2024 ISO Week 02 |
FORMAT_DATE('%h-%e-%G ISO Week %V', CURRENT_DATE) | Jan-11-2024 ISO Week 02 |
FORMAT_DATE('%B-%e-%g ISO Week %V', CURRENT_DATE) | January-11-24 ISO Week 02 |
FORMAT_DATE('%b-%e-%g ISO Week %V', CURRENT_DATE) | Jan-11-24 ISO Week 02 |
FORMAT_DATE('%h-%e-%g ISO Week %V', CURRENT_DATE) | Jan-11-24 ISO Week 02 |
FORMAT_DATE('%m/%e/%Y ISO Week %V', CURRENT_DATE) | 01/11/2024 ISO Week 02 |
FORMAT_DATE('%m/%e/%E4Y ISO Week %V', CURRENT_DATE) | 01/11/2024 ISO Week 02 |
FORMAT_DATE('%m/%e/%y ISO Week %V', CURRENT_DATE) | 01/11/24 ISO Week 02 |
FORMAT_DATE('%m/%e/%G ISO Week %V', CURRENT_DATE) | 01/11/2024 ISO Week 02 |
FORMAT_DATE('%m/%e/%g ISO Week %V', CURRENT_DATE) | 01/11/24 ISO Week 02 |
FORMAT_DATE('%B/%e/%Y ISO Week %V', CURRENT_DATE) | January/11/2024 ISO Week 02 |
FORMAT_DATE('%b/%e/%Y ISO Week %V', CURRENT_DATE) | Jan/11/2024 ISO Week 02 |
FORMAT_DATE('%h/%e/%Y ISO Week %V', CURRENT_DATE) | Jan/11/2024 ISO Week 02 |
FORMAT_DATE('%B/%e/%E4Y ISO Week %V', CURRENT_DATE) | January/11/2024 ISO Week 02 |
FORMAT_DATE('%b/%e/%E4Y ISO Week %V', CURRENT_DATE) | Jan/11/2024 ISO Week 02 |
FORMAT_DATE('%h/%e/%E4Y ISO Week %V', CURRENT_DATE) | Jan/11/2024 ISO Week 02 |
FORMAT_DATE('%B/%e/%y ISO Week %V', CURRENT_DATE) | January/11/24 ISO Week 02 |
FORMAT_DATE('%b/%e/%y ISO Week %V', CURRENT_DATE) | Jan/11/24 ISO Week 02 |
FORMAT_DATE('%h/%e/%y ISO Week %V', CURRENT_DATE) | Jan/11/24 ISO Week 02 |
FORMAT_DATE('%B/%e/%G ISO Week %V', CURRENT_DATE) | January/11/2024 ISO Week 02 |
FORMAT_DATE('%b/%e/%G ISO Week %V', CURRENT_DATE) | Jan/11/2024 ISO Week 02 |
FORMAT_DATE('%h/%e/%G ISO Week %V', CURRENT_DATE) | Jan/11/2024 ISO Week 02 |
FORMAT_DATE('%B/%e/%g ISO Week %V', CURRENT_DATE) | January/11/24 ISO Week 02 |
FORMAT_DATE('%b/%e/%g ISO Week %V', CURRENT_DATE) | Jan/11/24 ISO Week 02 |
FORMAT_DATE('%h/%e/%g ISO Week %V', CURRENT_DATE) | Jan/11/24 ISO Week 02 |
FORMAT_DATE('%m:%e:%Y ISO Week %V', CURRENT_DATE) | 01:11:2024 ISO Week 02 |
FORMAT_DATE('%m:%e:%E4Y ISO Week %V', CURRENT_DATE) | 01:11:2024 ISO Week 02 |
FORMAT_DATE('%m:%e:%y ISO Week %V', CURRENT_DATE) | 01:11:24 ISO Week 02 |
FORMAT_DATE('%m:%e:%G ISO Week %V', CURRENT_DATE) | 01:11:2024 ISO Week 02 |
FORMAT_DATE('%m:%e:%g ISO Week %V', CURRENT_DATE) | 01:11:24 ISO Week 02 |
FORMAT_DATE('%B:%e:%Y ISO Week %V', CURRENT_DATE) | January:11:2024 ISO Week 02 |
FORMAT_DATE('%b:%e:%Y ISO Week %V', CURRENT_DATE) | Jan:11:2024 ISO Week 02 |
FORMAT_DATE('%h:%e:%Y ISO Week %V', CURRENT_DATE) | Jan:11:2024 ISO Week 02 |
FORMAT_DATE('%B:%e:%E4Y ISO Week %V', CURRENT_DATE) | January:11:2024 ISO Week 02 |
FORMAT_DATE('%b:%e:%E4Y ISO Week %V', CURRENT_DATE) | Jan:11:2024 ISO Week 02 |
FORMAT_DATE('%h:%e:%E4Y ISO Week %V', CURRENT_DATE) | Jan:11:2024 ISO Week 02 |
FORMAT_DATE('%B:%e:%y ISO Week %V', CURRENT_DATE) | January:11:24 ISO Week 02 |
FORMAT_DATE('%b:%e:%y ISO Week %V', CURRENT_DATE) | Jan:11:24 ISO Week 02 |
FORMAT_DATE('%h:%e:%y ISO Week %V', CURRENT_DATE) | Jan:11:24 ISO Week 02 |
FORMAT_DATE('%B:%e:%G ISO Week %V', CURRENT_DATE) | January:11:2024 ISO Week 02 |
FORMAT_DATE('%b:%e:%G ISO Week %V', CURRENT_DATE) | Jan:11:2024 ISO Week 02 |
FORMAT_DATE('%h:%e:%G ISO Week %V', CURRENT_DATE) | Jan:11:2024 ISO Week 02 |
FORMAT_DATE('%B:%e:%g ISO Week %V', CURRENT_DATE) | January:11:24 ISO Week 02 |
FORMAT_DATE('%b:%e:%g ISO Week %V', CURRENT_DATE) | Jan:11:24 ISO Week 02 |
FORMAT_DATE('%h:%e:%g ISO Week %V', CURRENT_DATE) | Jan:11:24 ISO Week 02 |
FORMAT_DATE('%m.%e.%Y ISO Week %V', CURRENT_DATE) | 01.11.2024 ISO Week 02 |
FORMAT_DATE('%m.%e.%E4Y ISO Week %V', CURRENT_DATE) | 01.11.2024 ISO Week 02 |
FORMAT_DATE('%m.%e.%y ISO Week %V', CURRENT_DATE) | 01.11.24 ISO Week 02 |
FORMAT_DATE('%m.%e.%G ISO Week %V', CURRENT_DATE) | 01.11.2024 ISO Week 02 |
FORMAT_DATE('%m.%e.%g ISO Week %V', CURRENT_DATE) | 01.11.24 ISO Week 02 |
FORMAT_DATE('%B.%e.%Y ISO Week %V', CURRENT_DATE) | January.11.2024 ISO Week 02 |
FORMAT_DATE('%b.%e.%Y ISO Week %V', CURRENT_DATE) | Jan.11.2024 ISO Week 02 |
FORMAT_DATE('%h.%e.%Y ISO Week %V', CURRENT_DATE) | Jan.11.2024 ISO Week 02 |
FORMAT_DATE('%B.%e.%E4Y ISO Week %V', CURRENT_DATE) | January.11.2024 ISO Week 02 |
FORMAT_DATE('%b.%e.%E4Y ISO Week %V', CURRENT_DATE) | Jan.11.2024 ISO Week 02 |
FORMAT_DATE('%h.%e.%E4Y ISO Week %V', CURRENT_DATE) | Jan.11.2024 ISO Week 02 |
FORMAT_DATE('%B.%e.%y ISO Week %V', CURRENT_DATE) | January.11.24 ISO Week 02 |
FORMAT_DATE('%b.%e.%y ISO Week %V', CURRENT_DATE) | Jan.11.24 ISO Week 02 |
FORMAT_DATE('%h.%e.%y ISO Week %V', CURRENT_DATE) | Jan.11.24 ISO Week 02 |
FORMAT_DATE('%B.%e.%G ISO Week %V', CURRENT_DATE) | January.11.2024 ISO Week 02 |
FORMAT_DATE('%b.%e.%G ISO Week %V', CURRENT_DATE) | Jan.11.2024 ISO Week 02 |
FORMAT_DATE('%h.%e.%G ISO Week %V', CURRENT_DATE) | Jan.11.2024 ISO Week 02 |
FORMAT_DATE('%B.%e.%g ISO Week %V', CURRENT_DATE) | January.11.24 ISO Week 02 |
FORMAT_DATE('%b.%e.%g ISO Week %V', CURRENT_DATE) | Jan.11.24 ISO Week 02 |
FORMAT_DATE('%h.%e.%g ISO Week %V', CURRENT_DATE) | Jan.11.24 ISO Week 02 |
FORMAT_DATE('%m %e %Y ISO Week %V', CURRENT_DATE) | 01 11 2024 ISO Week 02 |
FORMAT_DATE('%m %e %E4Y ISO Week %V', CURRENT_DATE) | 01 11 2024 ISO Week 02 |
FORMAT_DATE('%m %e %y ISO Week %V', CURRENT_DATE) | 01 11 24 ISO Week 02 |
FORMAT_DATE('%m %e %G ISO Week %V', CURRENT_DATE) | 01 11 2024 ISO Week 02 |
FORMAT_DATE('%m %e %g ISO Week %V', CURRENT_DATE) | 01 11 24 ISO Week 02 |
FORMAT_DATE('%B %e %Y ISO Week %V', CURRENT_DATE) | January 11 2024 ISO Week 02 |
FORMAT_DATE('%b %e %Y ISO Week %V', CURRENT_DATE) | Jan 11 2024 ISO Week 02 |
FORMAT_DATE('%h %e %Y ISO Week %V', CURRENT_DATE) | Jan 11 2024 ISO Week 02 |
FORMAT_DATE('%B %e %E4Y ISO Week %V', CURRENT_DATE) | January 11 2024 ISO Week 02 |
FORMAT_DATE('%b %e %E4Y ISO Week %V', CURRENT_DATE) | Jan 11 2024 ISO Week 02 |
FORMAT_DATE('%h %e %E4Y ISO Week %V', CURRENT_DATE) | Jan 11 2024 ISO Week 02 |
FORMAT_DATE('%B %e %y ISO Week %V', CURRENT_DATE) | January 11 24 ISO Week 02 |
FORMAT_DATE('%b %e %y ISO Week %V', CURRENT_DATE) | Jan 11 24 ISO Week 02 |
FORMAT_DATE('%h %e %y ISO Week %V', CURRENT_DATE) | Jan 11 24 ISO Week 02 |
FORMAT_DATE('%B %e %G ISO Week %V', CURRENT_DATE) | January 11 2024 ISO Week 02 |
FORMAT_DATE('%b %e %G ISO Week %V', CURRENT_DATE) | Jan 11 2024 ISO Week 02 |
FORMAT_DATE('%h %e %G ISO Week %V', CURRENT_DATE) | Jan 11 2024 ISO Week 02 |
FORMAT_DATE('%B %e %g ISO Week %V', CURRENT_DATE) | January 11 24 ISO Week 02 |
FORMAT_DATE('%b %e %g ISO Week %V', CURRENT_DATE) | Jan 11 24 ISO Week 02 |
FORMAT_DATE('%h %e %g ISO Week %V', CURRENT_DATE) | Jan 11 24 ISO Week 02 |
FORMAT_DATE('%m%e%Y ISO Week %V', CURRENT_DATE) | 01112024 ISO Week 02 |
FORMAT_DATE('%m%e%E4Y ISO Week %V', CURRENT_DATE) | 01112024 ISO Week 02 |
FORMAT_DATE('%m%e%y ISO Week %V', CURRENT_DATE) | 011124 ISO Week 02 |
FORMAT_DATE('%m%e%G ISO Week %V', CURRENT_DATE) | 01112024 ISO Week 02 |
FORMAT_DATE('%m%e%g ISO Week %V', CURRENT_DATE) | 011124 ISO Week 02 |
FORMAT_DATE('%B%e%Y ISO Week %V', CURRENT_DATE) | January112024 ISO Week 02 |
FORMAT_DATE('%b%e%Y ISO Week %V', CURRENT_DATE) | Jan112024 ISO Week 02 |
FORMAT_DATE('%h%e%Y ISO Week %V', CURRENT_DATE) | Jan112024 ISO Week 02 |
FORMAT_DATE('%B%e%E4Y ISO Week %V', CURRENT_DATE) | January112024 ISO Week 02 |
FORMAT_DATE('%b%e%E4Y ISO Week %V', CURRENT_DATE) | Jan112024 ISO Week 02 |
FORMAT_DATE('%h%e%E4Y ISO Week %V', CURRENT_DATE) | Jan112024 ISO Week 02 |
FORMAT_DATE('%B%e%y ISO Week %V', CURRENT_DATE) | January1124 ISO Week 02 |
FORMAT_DATE('%b%e%y ISO Week %V', CURRENT_DATE) | Jan1124 ISO Week 02 |
FORMAT_DATE('%h%e%y ISO Week %V', CURRENT_DATE) | Jan1124 ISO Week 02 |
FORMAT_DATE('%B%e%G ISO Week %V', CURRENT_DATE) | January112024 ISO Week 02 |
FORMAT_DATE('%b%e%G ISO Week %V', CURRENT_DATE) | Jan112024 ISO Week 02 |
FORMAT_DATE('%h%e%G ISO Week %V', CURRENT_DATE) | Jan112024 ISO Week 02 |
FORMAT_DATE('%B%e%g ISO Week %V', CURRENT_DATE) | January1124 ISO Week 02 |
FORMAT_DATE('%b%e%g ISO Week %V', CURRENT_DATE) | Jan1124 ISO Week 02 |
FORMAT_DATE('%h%e%g ISO Week %V', CURRENT_DATE) | Jan1124 ISO Week 02 |
FORMAT_DATE('%m-%d-%Y', CURRENT_DATE) | 01-11-2024 |
FORMAT_DATE('%m-%d-%E4Y', CURRENT_DATE) | 01-11-2024 |
FORMAT_DATE('%m-%d-%y', CURRENT_DATE) | 01-11-24 |
FORMAT_DATE('%m-%d-%G', CURRENT_DATE) | 01-11-2024 |
FORMAT_DATE('%m-%d-%g', CURRENT_DATE) | 01-11-24 |
FORMAT_DATE('%B-%d-%Y', CURRENT_DATE) | January-11-2024 |
FORMAT_DATE('%b-%d-%Y', CURRENT_DATE) | Jan-11-2024 |
FORMAT_DATE('%h-%d-%Y', CURRENT_DATE) | Jan-11-2024 |
FORMAT_DATE('%B-%d-%E4Y', CURRENT_DATE) | January-11-2024 |
FORMAT_DATE('%b-%d-%E4Y', CURRENT_DATE) | Jan-11-2024 |
FORMAT_DATE('%h-%d-%E4Y', CURRENT_DATE) | Jan-11-2024 |
FORMAT_DATE('%B-%d-%y', CURRENT_DATE) | January-11-24 |
FORMAT_DATE('%b-%d-%y', CURRENT_DATE) | Jan-11-24 |
FORMAT_DATE('%h-%d-%y', CURRENT_DATE) | Jan-11-24 |
FORMAT_DATE('%B-%d-%G', CURRENT_DATE) | January-11-2024 |
FORMAT_DATE('%b-%d-%G', CURRENT_DATE) | Jan-11-2024 |
FORMAT_DATE('%h-%d-%G', CURRENT_DATE) | Jan-11-2024 |
FORMAT_DATE('%B-%d-%g', CURRENT_DATE) | January-11-24 |
FORMAT_DATE('%b-%d-%g', CURRENT_DATE) | Jan-11-24 |
FORMAT_DATE('%h-%d-%g', CURRENT_DATE) | Jan-11-24 |
FORMAT_DATE('%m-%d-%Y Day %j', CURRENT_DATE) | 01-11-2024 Day 011 |
FORMAT_DATE('%m-%d-%E4Y Day %j', CURRENT_DATE) | 01-11-2024 Day 011 |
FORMAT_DATE('%m-%d-%y Day %j', CURRENT_DATE) | 01-11-24 Day 011 |
FORMAT_DATE('%m-%d-%G Day %j', CURRENT_DATE) | 01-11-2024 Day 011 |
FORMAT_DATE('%m-%d-%g Day %j', CURRENT_DATE) | 01-11-24 Day 011 |
FORMAT_DATE('%B-%d-%Y Day %j', CURRENT_DATE) | January-11-2024 Day 011 |
FORMAT_DATE('%b-%d-%Y Day %j', CURRENT_DATE) | Jan-11-2024 Day 011 |
FORMAT_DATE('%h-%d-%Y Day %j', CURRENT_DATE) | Jan-11-2024 Day 011 |
FORMAT_DATE('%B-%d-%E4Y Day %j', CURRENT_DATE) | January-11-2024 Day 011 |
FORMAT_DATE('%b-%d-%E4Y Day %j', CURRENT_DATE) | Jan-11-2024 Day 011 |
FORMAT_DATE('%h-%d-%E4Y Day %j', CURRENT_DATE) | Jan-11-2024 Day 011 |
FORMAT_DATE('%B-%d-%y Day %j', CURRENT_DATE) | January-11-24 Day 011 |
FORMAT_DATE('%b-%d-%y Day %j', CURRENT_DATE) | Jan-11-24 Day 011 |
FORMAT_DATE('%h-%d-%y Day %j', CURRENT_DATE) | Jan-11-24 Day 011 |
FORMAT_DATE('%B-%d-%G Day %j', CURRENT_DATE) | January-11-2024 Day 011 |
FORMAT_DATE('%b-%d-%G Day %j', CURRENT_DATE) | Jan-11-2024 Day 011 |
FORMAT_DATE('%h-%d-%G Day %j', CURRENT_DATE) | Jan-11-2024 Day 011 |
FORMAT_DATE('%B-%d-%g Day %j', CURRENT_DATE) | January-11-24 Day 011 |
FORMAT_DATE('%b-%d-%g Day %j', CURRENT_DATE) | Jan-11-24 Day 011 |
FORMAT_DATE('%h-%d-%g Day %j', CURRENT_DATE) | Jan-11-24 Day 011 |
FORMAT_DATE('%m/%d/%Y', CURRENT_DATE) | 01/11/2024 |
FORMAT_DATE('%m/%d/%E4Y', CURRENT_DATE) | 01/11/2024 |
FORMAT_DATE('%m/%d/%y', CURRENT_DATE) | 01/11/24 |
FORMAT_DATE('%m/%d/%G', CURRENT_DATE) | 01/11/2024 |
FORMAT_DATE('%m/%d/%g', CURRENT_DATE) | 01/11/24 |
FORMAT_DATE('%B/%d/%Y', CURRENT_DATE) | January/11/2024 |
FORMAT_DATE('%b/%d/%Y', CURRENT_DATE) | Jan/11/2024 |
FORMAT_DATE('%h/%d/%Y', CURRENT_DATE) | Jan/11/2024 |
FORMAT_DATE('%B/%d/%E4Y', CURRENT_DATE) | January/11/2024 |
FORMAT_DATE('%b/%d/%E4Y', CURRENT_DATE) | Jan/11/2024 |
FORMAT_DATE('%h/%d/%E4Y', CURRENT_DATE) | Jan/11/2024 |
FORMAT_DATE('%B/%d/%y', CURRENT_DATE) | January/11/24 |
FORMAT_DATE('%b/%d/%y', CURRENT_DATE) | Jan/11/24 |
FORMAT_DATE('%h/%d/%y', CURRENT_DATE) | Jan/11/24 |
FORMAT_DATE('%B/%d/%G', CURRENT_DATE) | January/11/2024 |
FORMAT_DATE('%b/%d/%G', CURRENT_DATE) | Jan/11/2024 |
FORMAT_DATE('%h/%d/%G', CURRENT_DATE) | Jan/11/2024 |
FORMAT_DATE('%B/%d/%g', CURRENT_DATE) | January/11/24 |
FORMAT_DATE('%b/%d/%g', CURRENT_DATE) | Jan/11/24 |
FORMAT_DATE('%h/%d/%g', CURRENT_DATE) | Jan/11/24 |
FORMAT_DATE('%m/%d/%Y Day %j', CURRENT_DATE) | 01/11/2024 Day 011 |
FORMAT_DATE('%m/%d/%E4Y Day %j', CURRENT_DATE) | 01/11/2024 Day 011 |
FORMAT_DATE('%m/%d/%y Day %j', CURRENT_DATE) | 01/11/24 Day 011 |
FORMAT_DATE('%m/%d/%G Day %j', CURRENT_DATE) | 01/11/2024 Day 011 |
FORMAT_DATE('%m/%d/%g Day %j', CURRENT_DATE) | 01/11/24 Day 011 |
FORMAT_DATE('%B/%d/%Y Day %j', CURRENT_DATE) | January/11/2024 Day 011 |
FORMAT_DATE('%b/%d/%Y Day %j', CURRENT_DATE) | Jan/11/2024 Day 011 |
FORMAT_DATE('%h/%d/%Y Day %j', CURRENT_DATE) | Jan/11/2024 Day 011 |
FORMAT_DATE('%B/%d/%E4Y Day %j', CURRENT_DATE) | January/11/2024 Day 011 |
FORMAT_DATE('%b/%d/%E4Y Day %j', CURRENT_DATE) | Jan/11/2024 Day 011 |
FORMAT_DATE('%h/%d/%E4Y Day %j', CURRENT_DATE) | Jan/11/2024 Day 011 |
FORMAT_DATE('%B/%d/%y Day %j', CURRENT_DATE) | January/11/24 Day 011 |
FORMAT_DATE('%b/%d/%y Day %j', CURRENT_DATE) | Jan/11/24 Day 011 |
FORMAT_DATE('%h/%d/%y Day %j', CURRENT_DATE) | Jan/11/24 Day 011 |
FORMAT_DATE('%B/%d/%G Day %j', CURRENT_DATE) | January/11/2024 Day 011 |
FORMAT_DATE('%b/%d/%G Day %j', CURRENT_DATE) | Jan/11/2024 Day 011 |
FORMAT_DATE('%h/%d/%G Day %j', CURRENT_DATE) | Jan/11/2024 Day 011 |
FORMAT_DATE('%B/%d/%g Day %j', CURRENT_DATE) | January/11/24 Day 011 |
FORMAT_DATE('%b/%d/%g Day %j', CURRENT_DATE) | Jan/11/24 Day 011 |
FORMAT_DATE('%h/%d/%g Day %j', CURRENT_DATE) | Jan/11/24 Day 011 |
FORMAT_DATE('%m:%d:%Y', CURRENT_DATE) | 01:11:2024 |
FORMAT_DATE('%m:%d:%E4Y', CURRENT_DATE) | 01:11:2024 |
FORMAT_DATE('%m:%d:%y', CURRENT_DATE) | 01:11:24 |
FORMAT_DATE('%m:%d:%G', CURRENT_DATE) | 01:11:2024 |
FORMAT_DATE('%m:%d:%g', CURRENT_DATE) | 01:11:24 |
FORMAT_DATE('%B:%d:%Y', CURRENT_DATE) | January:11:2024 |
FORMAT_DATE('%b:%d:%Y', CURRENT_DATE) | Jan:11:2024 |
FORMAT_DATE('%h:%d:%Y', CURRENT_DATE) | Jan:11:2024 |
FORMAT_DATE('%B:%d:%E4Y', CURRENT_DATE) | January:11:2024 |
FORMAT_DATE('%b:%d:%E4Y', CURRENT_DATE) | Jan:11:2024 |
FORMAT_DATE('%h:%d:%E4Y', CURRENT_DATE) | Jan:11:2024 |
FORMAT_DATE('%B:%d:%y', CURRENT_DATE) | January:11:24 |
FORMAT_DATE('%b:%d:%y', CURRENT_DATE) | Jan:11:24 |
FORMAT_DATE('%h:%d:%y', CURRENT_DATE) | Jan:11:24 |
FORMAT_DATE('%B:%d:%G', CURRENT_DATE) | January:11:2024 |
FORMAT_DATE('%b:%d:%G', CURRENT_DATE) | Jan:11:2024 |
FORMAT_DATE('%h:%d:%G', CURRENT_DATE) | Jan:11:2024 |
FORMAT_DATE('%B:%d:%g', CURRENT_DATE) | January:11:24 |
FORMAT_DATE('%b:%d:%g', CURRENT_DATE) | Jan:11:24 |
FORMAT_DATE('%h:%d:%g', CURRENT_DATE) | Jan:11:24 |
FORMAT_DATE('%m:%d:%Y Day %j', CURRENT_DATE) | 01:11:2024 Day 011 |
FORMAT_DATE('%m:%d:%E4Y Day %j', CURRENT_DATE) | 01:11:2024 Day 011 |
FORMAT_DATE('%m:%d:%y Day %j', CURRENT_DATE) | 01:11:24 Day 011 |
FORMAT_DATE('%m:%d:%G Day %j', CURRENT_DATE) | 01:11:2024 Day 011 |
FORMAT_DATE('%m:%d:%g Day %j', CURRENT_DATE) | 01:11:24 Day 011 |
FORMAT_DATE('%B:%d:%Y Day %j', CURRENT_DATE) | January:11:2024 Day 011 |
FORMAT_DATE('%b:%d:%Y Day %j', CURRENT_DATE) | Jan:11:2024 Day 011 |
FORMAT_DATE('%h:%d:%Y Day %j', CURRENT_DATE) | Jan:11:2024 Day 011 |
FORMAT_DATE('%B:%d:%E4Y Day %j', CURRENT_DATE) | January:11:2024 Day 011 |
FORMAT_DATE('%b:%d:%E4Y Day %j', CURRENT_DATE) | Jan:11:2024 Day 011 |
FORMAT_DATE('%h:%d:%E4Y Day %j', CURRENT_DATE) | Jan:11:2024 Day 011 |
FORMAT_DATE('%B:%d:%y Day %j', CURRENT_DATE) | January:11:24 Day 011 |
FORMAT_DATE('%b:%d:%y Day %j', CURRENT_DATE) | Jan:11:24 Day 011 |
FORMAT_DATE('%h:%d:%y Day %j', CURRENT_DATE) | Jan:11:24 Day 011 |
FORMAT_DATE('%B:%d:%G Day %j', CURRENT_DATE) | January:11:2024 Day 011 |
FORMAT_DATE('%b:%d:%G Day %j', CURRENT_DATE) | Jan:11:2024 Day 011 |
FORMAT_DATE('%h:%d:%G Day %j', CURRENT_DATE) | Jan:11:2024 Day 011 |
FORMAT_DATE('%B:%d:%g Day %j', CURRENT_DATE) | January:11:24 Day 011 |
FORMAT_DATE('%b:%d:%g Day %j', CURRENT_DATE) | Jan:11:24 Day 011 |
FORMAT_DATE('%h:%d:%g Day %j', CURRENT_DATE) | Jan:11:24 Day 011 |
FORMAT_DATE('%m.%d.%Y', CURRENT_DATE) | 01.11.2024 |
FORMAT_DATE('%m.%d.%E4Y', CURRENT_DATE) | 01.11.2024 |
FORMAT_DATE('%m.%d.%y', CURRENT_DATE) | 01.11.24 |
FORMAT_DATE('%m.%d.%G', CURRENT_DATE) | 01.11.2024 |
FORMAT_DATE('%m.%d.%g', CURRENT_DATE) | 01.11.24 |
FORMAT_DATE('%B.%d.%Y', CURRENT_DATE) | January.11.2024 |
FORMAT_DATE('%b.%d.%Y', CURRENT_DATE) | Jan.11.2024 |
FORMAT_DATE('%h.%d.%Y', CURRENT_DATE) | Jan.11.2024 |
FORMAT_DATE('%B.%d.%E4Y', CURRENT_DATE) | January.11.2024 |
FORMAT_DATE('%b.%d.%E4Y', CURRENT_DATE) | Jan.11.2024 |
FORMAT_DATE('%h.%d.%E4Y', CURRENT_DATE) | Jan.11.2024 |
FORMAT_DATE('%B.%d.%y', CURRENT_DATE) | January.11.24 |
FORMAT_DATE('%b.%d.%y', CURRENT_DATE) | Jan.11.24 |
FORMAT_DATE('%h.%d.%y', CURRENT_DATE) | Jan.11.24 |
FORMAT_DATE('%B.%d.%G', CURRENT_DATE) | January.11.2024 |
FORMAT_DATE('%b.%d.%G', CURRENT_DATE) | Jan.11.2024 |
FORMAT_DATE('%h.%d.%G', CURRENT_DATE) | Jan.11.2024 |
FORMAT_DATE('%B.%d.%g', CURRENT_DATE) | January.11.24 |
FORMAT_DATE('%b.%d.%g', CURRENT_DATE) | Jan.11.24 |
FORMAT_DATE('%h.%d.%g', CURRENT_DATE) | Jan.11.24 |
FORMAT_DATE('%m.%d.%Y Day %j', CURRENT_DATE) | 01.11.2024 Day 011 |
FORMAT_DATE('%m.%d.%E4Y Day %j', CURRENT_DATE) | 01.11.2024 Day 011 |
FORMAT_DATE('%m.%d.%y Day %j', CURRENT_DATE) | 01.11.24 Day 011 |
FORMAT_DATE('%m.%d.%G Day %j', CURRENT_DATE) | 01.11.2024 Day 011 |
FORMAT_DATE('%m.%d.%g Day %j', CURRENT_DATE) | 01.11.24 Day 011 |
FORMAT_DATE('%B.%d.%Y Day %j', CURRENT_DATE) | January.11.2024 Day 011 |
FORMAT_DATE('%b.%d.%Y Day %j', CURRENT_DATE) | Jan.11.2024 Day 011 |
FORMAT_DATE('%h.%d.%Y Day %j', CURRENT_DATE) | Jan.11.2024 Day 011 |
FORMAT_DATE('%B.%d.%E4Y Day %j', CURRENT_DATE) | January.11.2024 Day 011 |
FORMAT_DATE('%b.%d.%E4Y Day %j', CURRENT_DATE) | Jan.11.2024 Day 011 |
FORMAT_DATE('%h.%d.%E4Y Day %j', CURRENT_DATE) | Jan.11.2024 Day 011 |
FORMAT_DATE('%B.%d.%y Day %j', CURRENT_DATE) | January.11.24 Day 011 |
FORMAT_DATE('%b.%d.%y Day %j', CURRENT_DATE) | Jan.11.24 Day 011 |
FORMAT_DATE('%h.%d.%y Day %j', CURRENT_DATE) | Jan.11.24 Day 011 |
FORMAT_DATE('%B.%d.%G Day %j', CURRENT_DATE) | January.11.2024 Day 011 |
FORMAT_DATE('%b.%d.%G Day %j', CURRENT_DATE) | Jan.11.2024 Day 011 |
FORMAT_DATE('%h.%d.%G Day %j', CURRENT_DATE) | Jan.11.2024 Day 011 |
FORMAT_DATE('%B.%d.%g Day %j', CURRENT_DATE) | January.11.24 Day 011 |
FORMAT_DATE('%b.%d.%g Day %j', CURRENT_DATE) | Jan.11.24 Day 011 |
FORMAT_DATE('%h.%d.%g Day %j', CURRENT_DATE) | Jan.11.24 Day 011 |
FORMAT_DATE('%m %d %Y', CURRENT_DATE) | 01 11 2024 |
FORMAT_DATE('%m %d %E4Y', CURRENT_DATE) | 01 11 2024 |
FORMAT_DATE('%m %d %y', CURRENT_DATE) | 01 11 24 |
FORMAT_DATE('%m %d %G', CURRENT_DATE) | 01 11 2024 |
FORMAT_DATE('%m %d %g', CURRENT_DATE) | 01 11 24 |
FORMAT_DATE('%B %d %Y', CURRENT_DATE) | January 11 2024 |
FORMAT_DATE('%b %d %Y', CURRENT_DATE) | Jan 11 2024 |
FORMAT_DATE('%h %d %Y', CURRENT_DATE) | Jan 11 2024 |
FORMAT_DATE('%B %d %E4Y', CURRENT_DATE) | January 11 2024 |
FORMAT_DATE('%b %d %E4Y', CURRENT_DATE) | Jan 11 2024 |
FORMAT_DATE('%h %d %E4Y', CURRENT_DATE) | Jan 11 2024 |
FORMAT_DATE('%B %d %y', CURRENT_DATE) | January 11 24 |
FORMAT_DATE('%b %d %y', CURRENT_DATE) | Jan 11 24 |
FORMAT_DATE('%h %d %y', CURRENT_DATE) | Jan 11 24 |
FORMAT_DATE('%B %d %G', CURRENT_DATE) | January 11 2024 |
FORMAT_DATE('%b %d %G', CURRENT_DATE) | Jan 11 2024 |
FORMAT_DATE('%h %d %G', CURRENT_DATE) | Jan 11 2024 |
FORMAT_DATE('%B %d %g', CURRENT_DATE) | January 11 24 |
FORMAT_DATE('%b %d %g', CURRENT_DATE) | Jan 11 24 |
FORMAT_DATE('%h %d %g', CURRENT_DATE) | Jan 11 24 |
FORMAT_DATE('%m %d %Y Day %j', CURRENT_DATE) | 01 11 2024 Day 011 |
FORMAT_DATE('%m %d %E4Y Day %j', CURRENT_DATE) | 01 11 2024 Day 011 |
FORMAT_DATE('%m %d %y Day %j', CURRENT_DATE) | 01 11 24 Day 011 |
FORMAT_DATE('%m %d %G Day %j', CURRENT_DATE) | 01 11 2024 Day 011 |
FORMAT_DATE('%m %d %g Day %j', CURRENT_DATE) | 01 11 24 Day 011 |
FORMAT_DATE('%B %d %Y Day %j', CURRENT_DATE) | January 11 2024 Day 011 |
FORMAT_DATE('%b %d %Y Day %j', CURRENT_DATE) | Jan 11 2024 Day 011 |
FORMAT_DATE('%h %d %Y Day %j', CURRENT_DATE) | Jan 11 2024 Day 011 |
FORMAT_DATE('%B %d %E4Y Day %j', CURRENT_DATE) | January 11 2024 Day 011 |
FORMAT_DATE('%b %d %E4Y Day %j', CURRENT_DATE) | Jan 11 2024 Day 011 |
FORMAT_DATE('%h %d %E4Y Day %j', CURRENT_DATE) | Jan 11 2024 Day 011 |
FORMAT_DATE('%B %d %y Day %j', CURRENT_DATE) | January 11 24 Day 011 |
FORMAT_DATE('%b %d %y Day %j', CURRENT_DATE) | Jan 11 24 Day 011 |
FORMAT_DATE('%h %d %y Day %j', CURRENT_DATE) | Jan 11 24 Day 011 |
FORMAT_DATE('%B %d %G Day %j', CURRENT_DATE) | January 11 2024 Day 011 |
FORMAT_DATE('%b %d %G Day %j', CURRENT_DATE) | Jan 11 2024 Day 011 |
FORMAT_DATE('%h %d %G Day %j', CURRENT_DATE) | Jan 11 2024 Day 011 |
FORMAT_DATE('%B %d %g Day %j', CURRENT_DATE) | January 11 24 Day 011 |
FORMAT_DATE('%b %d %g Day %j', CURRENT_DATE) | Jan 11 24 Day 011 |
FORMAT_DATE('%h %d %g Day %j', CURRENT_DATE) | Jan 11 24 Day 011 |
FORMAT_DATE('%m%d%Y', CURRENT_DATE) | 01112024 |
FORMAT_DATE('%m%d%E4Y', CURRENT_DATE) | 01112024 |
FORMAT_DATE('%m%d%y', CURRENT_DATE) | 011124 |
FORMAT_DATE('%m%d%G', CURRENT_DATE) | 01112024 |
FORMAT_DATE('%m%d%g', CURRENT_DATE) | 011124 |
FORMAT_DATE('%B%d%Y', CURRENT_DATE) | January112024 |
FORMAT_DATE('%b%d%Y', CURRENT_DATE) | Jan112024 |
FORMAT_DATE('%h%d%Y', CURRENT_DATE) | Jan112024 |
FORMAT_DATE('%B%d%E4Y', CURRENT_DATE) | January112024 |
FORMAT_DATE('%b%d%E4Y', CURRENT_DATE) | Jan112024 |
FORMAT_DATE('%h%d%E4Y', CURRENT_DATE) | Jan112024 |
FORMAT_DATE('%B%d%y', CURRENT_DATE) | January1124 |
FORMAT_DATE('%b%d%y', CURRENT_DATE) | Jan1124 |
FORMAT_DATE('%h%d%y', CURRENT_DATE) | Jan1124 |
FORMAT_DATE('%B%d%G', CURRENT_DATE) | January112024 |
FORMAT_DATE('%b%d%G', CURRENT_DATE) | Jan112024 |
FORMAT_DATE('%h%d%G', CURRENT_DATE) | Jan112024 |
FORMAT_DATE('%B%d%g', CURRENT_DATE) | January1124 |
FORMAT_DATE('%b%d%g', CURRENT_DATE) | Jan1124 |
FORMAT_DATE('%h%d%g', CURRENT_DATE) | Jan1124 |
FORMAT_DATE('%m%d%Y Day %j', CURRENT_DATE) | 01112024 Day 011 |
FORMAT_DATE('%m%d%E4Y Day %j', CURRENT_DATE) | 01112024 Day 011 |
FORMAT_DATE('%m%d%y Day %j', CURRENT_DATE) | 011124 Day 011 |
FORMAT_DATE('%m%d%G Day %j', CURRENT_DATE) | 01112024 Day 011 |
FORMAT_DATE('%m%d%g Day %j', CURRENT_DATE) | 011124 Day 011 |
FORMAT_DATE('%B%d%Y Day %j', CURRENT_DATE) | January112024 Day 011 |
FORMAT_DATE('%b%d%Y Day %j', CURRENT_DATE) | Jan112024 Day 011 |
FORMAT_DATE('%h%d%Y Day %j', CURRENT_DATE) | Jan112024 Day 011 |
FORMAT_DATE('%B%d%E4Y Day %j', CURRENT_DATE) | January112024 Day 011 |
FORMAT_DATE('%b%d%E4Y Day %j', CURRENT_DATE) | Jan112024 Day 011 |
FORMAT_DATE('%h%d%E4Y Day %j', CURRENT_DATE) | Jan112024 Day 011 |
FORMAT_DATE('%B%d%y Day %j', CURRENT_DATE) | January1124 Day 011 |
FORMAT_DATE('%b%d%y Day %j', CURRENT_DATE) | Jan1124 Day 011 |
FORMAT_DATE('%h%d%y Day %j', CURRENT_DATE) | Jan1124 Day 011 |
FORMAT_DATE('%B%d%G Day %j', CURRENT_DATE) | January112024 Day 011 |
FORMAT_DATE('%b%d%G Day %j', CURRENT_DATE) | Jan112024 Day 011 |
FORMAT_DATE('%h%d%G Day %j', CURRENT_DATE) | Jan112024 Day 011 |
FORMAT_DATE('%B%d%g Day %j', CURRENT_DATE) | January1124 Day 011 |
FORMAT_DATE('%b%d%g Day %j', CURRENT_DATE) | Jan1124 Day 011 |
FORMAT_DATE('%h%d%g Day %j', CURRENT_DATE) | Jan1124 Day 011 |
FORMAT_DATE('%m-%d-%Y %A', CURRENT_DATE) | 01-11-2024 Thursday |
FORMAT_DATE('%m-%d-%E4Y %A', CURRENT_DATE) | 01-11-2024 Thursday |
FORMAT_DATE('%m-%d-%y %A', CURRENT_DATE) | 01-11-24 Thursday |
FORMAT_DATE('%m-%d-%G %A', CURRENT_DATE) | 01-11-2024 Thursday |
FORMAT_DATE('%m-%d-%g %A', CURRENT_DATE) | 01-11-24 Thursday |
FORMAT_DATE('%B-%d-%Y %A', CURRENT_DATE) | January-11-2024 Thursday |
FORMAT_DATE('%b-%d-%Y %A', CURRENT_DATE) | Jan-11-2024 Thursday |
FORMAT_DATE('%h-%d-%Y %A', CURRENT_DATE) | Jan-11-2024 Thursday |
FORMAT_DATE('%B-%d-%E4Y %A', CURRENT_DATE) | January-11-2024 Thursday |
FORMAT_DATE('%b-%d-%E4Y %A', CURRENT_DATE) | Jan-11-2024 Thursday |
FORMAT_DATE('%h-%d-%E4Y %A', CURRENT_DATE) | Jan-11-2024 Thursday |
FORMAT_DATE('%B-%d-%y %A', CURRENT_DATE) | January-11-24 Thursday |
FORMAT_DATE('%b-%d-%y %A', CURRENT_DATE) | Jan-11-24 Thursday |
FORMAT_DATE('%h-%d-%y %A', CURRENT_DATE) | Jan-11-24 Thursday |
FORMAT_DATE('%B-%d-%G %A', CURRENT_DATE) | January-11-2024 Thursday |
FORMAT_DATE('%b-%d-%G %A', CURRENT_DATE) | Jan-11-2024 Thursday |
FORMAT_DATE('%h-%d-%G %A', CURRENT_DATE) | Jan-11-2024 Thursday |
FORMAT_DATE('%B-%d-%g %A', CURRENT_DATE) | January-11-24 Thursday |
FORMAT_DATE('%b-%d-%g %A', CURRENT_DATE) | Jan-11-24 Thursday |
FORMAT_DATE('%h-%d-%g %A', CURRENT_DATE) | Jan-11-24 Thursday |
FORMAT_DATE('%m/%d/%Y %A', CURRENT_DATE) | 01/11/2024 Thursday |
FORMAT_DATE('%m/%d/%E4Y %A', CURRENT_DATE) | 01/11/2024 Thursday |
FORMAT_DATE('%m/%d/%y %A', CURRENT_DATE) | 01/11/24 Thursday |
FORMAT_DATE('%m/%d/%G %A', CURRENT_DATE) | 01/11/2024 Thursday |
FORMAT_DATE('%m/%d/%g %A', CURRENT_DATE) | 01/11/24 Thursday |
FORMAT_DATE('%B/%d/%Y %A', CURRENT_DATE) | January/11/2024 Thursday |
FORMAT_DATE('%b/%d/%Y %A', CURRENT_DATE) | Jan/11/2024 Thursday |
FORMAT_DATE('%h/%d/%Y %A', CURRENT_DATE) | Jan/11/2024 Thursday |
FORMAT_DATE('%B/%d/%E4Y %A', CURRENT_DATE) | January/11/2024 Thursday |
FORMAT_DATE('%b/%d/%E4Y %A', CURRENT_DATE) | Jan/11/2024 Thursday |
FORMAT_DATE('%h/%d/%E4Y %A', CURRENT_DATE) | Jan/11/2024 Thursday |
FORMAT_DATE('%B/%d/%y %A', CURRENT_DATE) | January/11/24 Thursday |
FORMAT_DATE('%b/%d/%y %A', CURRENT_DATE) | Jan/11/24 Thursday |
FORMAT_DATE('%h/%d/%y %A', CURRENT_DATE) | Jan/11/24 Thursday |
FORMAT_DATE('%B/%d/%G %A', CURRENT_DATE) | January/11/2024 Thursday |
FORMAT_DATE('%b/%d/%G %A', CURRENT_DATE) | Jan/11/2024 Thursday |
FORMAT_DATE('%h/%d/%G %A', CURRENT_DATE) | Jan/11/2024 Thursday |
FORMAT_DATE('%B/%d/%g %A', CURRENT_DATE) | January/11/24 Thursday |
FORMAT_DATE('%b/%d/%g %A', CURRENT_DATE) | Jan/11/24 Thursday |
FORMAT_DATE('%h/%d/%g %A', CURRENT_DATE) | Jan/11/24 Thursday |
FORMAT_DATE('%m:%d:%Y %A', CURRENT_DATE) | 01:11:2024 Thursday |
FORMAT_DATE('%m:%d:%E4Y %A', CURRENT_DATE) | 01:11:2024 Thursday |
FORMAT_DATE('%m:%d:%y %A', CURRENT_DATE) | 01:11:24 Thursday |
FORMAT_DATE('%m:%d:%G %A', CURRENT_DATE) | 01:11:2024 Thursday |
FORMAT_DATE('%m:%d:%g %A', CURRENT_DATE) | 01:11:24 Thursday |
FORMAT_DATE('%B:%d:%Y %A', CURRENT_DATE) | January:11:2024 Thursday |
FORMAT_DATE('%b:%d:%Y %A', CURRENT_DATE) | Jan:11:2024 Thursday |
FORMAT_DATE('%h:%d:%Y %A', CURRENT_DATE) | Jan:11:2024 Thursday |
FORMAT_DATE('%B:%d:%E4Y %A', CURRENT_DATE) | January:11:2024 Thursday |
FORMAT_DATE('%b:%d:%E4Y %A', CURRENT_DATE) | Jan:11:2024 Thursday |
FORMAT_DATE('%h:%d:%E4Y %A', CURRENT_DATE) | Jan:11:2024 Thursday |
FORMAT_DATE('%B:%d:%y %A', CURRENT_DATE) | January:11:24 Thursday |
FORMAT_DATE('%b:%d:%y %A', CURRENT_DATE) | Jan:11:24 Thursday |
FORMAT_DATE('%h:%d:%y %A', CURRENT_DATE) | Jan:11:24 Thursday |
FORMAT_DATE('%B:%d:%G %A', CURRENT_DATE) | January:11:2024 Thursday |
FORMAT_DATE('%b:%d:%G %A', CURRENT_DATE) | Jan:11:2024 Thursday |
FORMAT_DATE('%h:%d:%G %A', CURRENT_DATE) | Jan:11:2024 Thursday |
FORMAT_DATE('%B:%d:%g %A', CURRENT_DATE) | January:11:24 Thursday |
FORMAT_DATE('%b:%d:%g %A', CURRENT_DATE) | Jan:11:24 Thursday |
FORMAT_DATE('%h:%d:%g %A', CURRENT_DATE) | Jan:11:24 Thursday |
FORMAT_DATE('%m.%d.%Y %A', CURRENT_DATE) | 01.11.2024 Thursday |
FORMAT_DATE('%m.%d.%E4Y %A', CURRENT_DATE) | 01.11.2024 Thursday |
FORMAT_DATE('%m.%d.%y %A', CURRENT_DATE) | 01.11.24 Thursday |
FORMAT_DATE('%m.%d.%G %A', CURRENT_DATE) | 01.11.2024 Thursday |
FORMAT_DATE('%m.%d.%g %A', CURRENT_DATE) | 01.11.24 Thursday |
FORMAT_DATE('%B.%d.%Y %A', CURRENT_DATE) | January.11.2024 Thursday |
FORMAT_DATE('%b.%d.%Y %A', CURRENT_DATE) | Jan.11.2024 Thursday |
FORMAT_DATE('%h.%d.%Y %A', CURRENT_DATE) | Jan.11.2024 Thursday |
FORMAT_DATE('%B.%d.%E4Y %A', CURRENT_DATE) | January.11.2024 Thursday |
FORMAT_DATE('%b.%d.%E4Y %A', CURRENT_DATE) | Jan.11.2024 Thursday |
FORMAT_DATE('%h.%d.%E4Y %A', CURRENT_DATE) | Jan.11.2024 Thursday |
FORMAT_DATE('%B.%d.%y %A', CURRENT_DATE) | January.11.24 Thursday |
FORMAT_DATE('%b.%d.%y %A', CURRENT_DATE) | Jan.11.24 Thursday |
FORMAT_DATE('%h.%d.%y %A', CURRENT_DATE) | Jan.11.24 Thursday |
FORMAT_DATE('%B.%d.%G %A', CURRENT_DATE) | January.11.2024 Thursday |
FORMAT_DATE('%b.%d.%G %A', CURRENT_DATE) | Jan.11.2024 Thursday |
FORMAT_DATE('%h.%d.%G %A', CURRENT_DATE) | Jan.11.2024 Thursday |
FORMAT_DATE('%B.%d.%g %A', CURRENT_DATE) | January.11.24 Thursday |
FORMAT_DATE('%b.%d.%g %A', CURRENT_DATE) | Jan.11.24 Thursday |
FORMAT_DATE('%h.%d.%g %A', CURRENT_DATE) | Jan.11.24 Thursday |
FORMAT_DATE('%m %d %Y %A', CURRENT_DATE) | 01 11 2024 Thursday |
FORMAT_DATE('%m %d %E4Y %A', CURRENT_DATE) | 01 11 2024 Thursday |
FORMAT_DATE('%m %d %y %A', CURRENT_DATE) | 01 11 24 Thursday |
FORMAT_DATE('%m %d %G %A', CURRENT_DATE) | 01 11 2024 Thursday |
FORMAT_DATE('%m %d %g %A', CURRENT_DATE) | 01 11 24 Thursday |
FORMAT_DATE('%B %d %Y %A', CURRENT_DATE) | January 11 2024 Thursday |
FORMAT_DATE('%b %d %Y %A', CURRENT_DATE) | Jan 11 2024 Thursday |
FORMAT_DATE('%h %d %Y %A', CURRENT_DATE) | Jan 11 2024 Thursday |
FORMAT_DATE('%B %d %E4Y %A', CURRENT_DATE) | January 11 2024 Thursday |
FORMAT_DATE('%b %d %E4Y %A', CURRENT_DATE) | Jan 11 2024 Thursday |
FORMAT_DATE('%h %d %E4Y %A', CURRENT_DATE) | Jan 11 2024 Thursday |
FORMAT_DATE('%B %d %y %A', CURRENT_DATE) | January 11 24 Thursday |
FORMAT_DATE('%b %d %y %A', CURRENT_DATE) | Jan 11 24 Thursday |
FORMAT_DATE('%h %d %y %A', CURRENT_DATE) | Jan 11 24 Thursday |
FORMAT_DATE('%B %d %G %A', CURRENT_DATE) | January 11 2024 Thursday |
FORMAT_DATE('%b %d %G %A', CURRENT_DATE) | Jan 11 2024 Thursday |
FORMAT_DATE('%h %d %G %A', CURRENT_DATE) | Jan 11 2024 Thursday |
FORMAT_DATE('%B %d %g %A', CURRENT_DATE) | January 11 24 Thursday |
FORMAT_DATE('%b %d %g %A', CURRENT_DATE) | Jan 11 24 Thursday |
FORMAT_DATE('%h %d %g %A', CURRENT_DATE) | Jan 11 24 Thursday |
FORMAT_DATE('%m%d%Y %A', CURRENT_DATE) | 01112024 Thursday |
FORMAT_DATE('%m%d%E4Y %A', CURRENT_DATE) | 01112024 Thursday |
FORMAT_DATE('%m%d%y %A', CURRENT_DATE) | 011124 Thursday |
FORMAT_DATE('%m%d%G %A', CURRENT_DATE) | 01112024 Thursday |
FORMAT_DATE('%m%d%g %A', CURRENT_DATE) | 011124 Thursday |
FORMAT_DATE('%B%d%Y %A', CURRENT_DATE) | January112024 Thursday |
FORMAT_DATE('%b%d%Y %A', CURRENT_DATE) | Jan112024 Thursday |
FORMAT_DATE('%h%d%Y %A', CURRENT_DATE) | Jan112024 Thursday |
FORMAT_DATE('%B%d%E4Y %A', CURRENT_DATE) | January112024 Thursday |
FORMAT_DATE('%b%d%E4Y %A', CURRENT_DATE) | Jan112024 Thursday |
FORMAT_DATE('%h%d%E4Y %A', CURRENT_DATE) | Jan112024 Thursday |
FORMAT_DATE('%B%d%y %A', CURRENT_DATE) | January1124 Thursday |
FORMAT_DATE('%b%d%y %A', CURRENT_DATE) | Jan1124 Thursday |
FORMAT_DATE('%h%d%y %A', CURRENT_DATE) | Jan1124 Thursday |
FORMAT_DATE('%B%d%G %A', CURRENT_DATE) | January112024 Thursday |
FORMAT_DATE('%b%d%G %A', CURRENT_DATE) | Jan112024 Thursday |
FORMAT_DATE('%h%d%G %A', CURRENT_DATE) | Jan112024 Thursday |
FORMAT_DATE('%B%d%g %A', CURRENT_DATE) | January1124 Thursday |
FORMAT_DATE('%b%d%g %A', CURRENT_DATE) | Jan1124 Thursday |
FORMAT_DATE('%h%d%g %A', CURRENT_DATE) | Jan1124 Thursday |
FORMAT_DATE('%m-%d-%Y %a', CURRENT_DATE) | 01-11-2024 Thu |
FORMAT_DATE('%m-%d-%E4Y %a', CURRENT_DATE) | 01-11-2024 Thu |
FORMAT_DATE('%m-%d-%y %a', CURRENT_DATE) | 01-11-24 Thu |
FORMAT_DATE('%m-%d-%G %a', CURRENT_DATE) | 01-11-2024 Thu |
FORMAT_DATE('%m-%d-%g %a', CURRENT_DATE) | 01-11-24 Thu |
FORMAT_DATE('%B-%d-%Y %a', CURRENT_DATE) | January-11-2024 Thu |
FORMAT_DATE('%b-%d-%Y %a', CURRENT_DATE) | Jan-11-2024 Thu |
FORMAT_DATE('%h-%d-%Y %a', CURRENT_DATE) | Jan-11-2024 Thu |
FORMAT_DATE('%B-%d-%E4Y %a', CURRENT_DATE) | January-11-2024 Thu |
FORMAT_DATE('%b-%d-%E4Y %a', CURRENT_DATE) | Jan-11-2024 Thu |
FORMAT_DATE('%h-%d-%E4Y %a', CURRENT_DATE) | Jan-11-2024 Thu |
FORMAT_DATE('%B-%d-%y %a', CURRENT_DATE) | January-11-24 Thu |
FORMAT_DATE('%b-%d-%y %a', CURRENT_DATE) | Jan-11-24 Thu |
FORMAT_DATE('%h-%d-%y %a', CURRENT_DATE) | Jan-11-24 Thu |
FORMAT_DATE('%B-%d-%G %a', CURRENT_DATE) | January-11-2024 Thu |
FORMAT_DATE('%b-%d-%G %a', CURRENT_DATE) | Jan-11-2024 Thu |
FORMAT_DATE('%h-%d-%G %a', CURRENT_DATE) | Jan-11-2024 Thu |
FORMAT_DATE('%B-%d-%g %a', CURRENT_DATE) | January-11-24 Thu |
FORMAT_DATE('%b-%d-%g %a', CURRENT_DATE) | Jan-11-24 Thu |
FORMAT_DATE('%h-%d-%g %a', CURRENT_DATE) | Jan-11-24 Thu |
FORMAT_DATE('%m/%d/%Y %a', CURRENT_DATE) | 01/11/2024 Thu |
FORMAT_DATE('%m/%d/%E4Y %a', CURRENT_DATE) | 01/11/2024 Thu |
FORMAT_DATE('%m/%d/%y %a', CURRENT_DATE) | 01/11/24 Thu |
FORMAT_DATE('%m/%d/%G %a', CURRENT_DATE) | 01/11/2024 Thu |
FORMAT_DATE('%m/%d/%g %a', CURRENT_DATE) | 01/11/24 Thu |
FORMAT_DATE('%B/%d/%Y %a', CURRENT_DATE) | January/11/2024 Thu |
FORMAT_DATE('%b/%d/%Y %a', CURRENT_DATE) | Jan/11/2024 Thu |
FORMAT_DATE('%h/%d/%Y %a', CURRENT_DATE) | Jan/11/2024 Thu |
FORMAT_DATE('%B/%d/%E4Y %a', CURRENT_DATE) | January/11/2024 Thu |
FORMAT_DATE('%b/%d/%E4Y %a', CURRENT_DATE) | Jan/11/2024 Thu |
FORMAT_DATE('%h/%d/%E4Y %a', CURRENT_DATE) | Jan/11/2024 Thu |
FORMAT_DATE('%B/%d/%y %a', CURRENT_DATE) | January/11/24 Thu |
FORMAT_DATE('%b/%d/%y %a', CURRENT_DATE) | Jan/11/24 Thu |
FORMAT_DATE('%h/%d/%y %a', CURRENT_DATE) | Jan/11/24 Thu |
FORMAT_DATE('%B/%d/%G %a', CURRENT_DATE) | January/11/2024 Thu |
FORMAT_DATE('%b/%d/%G %a', CURRENT_DATE) | Jan/11/2024 Thu |
FORMAT_DATE('%h/%d/%G %a', CURRENT_DATE) | Jan/11/2024 Thu |
FORMAT_DATE('%B/%d/%g %a', CURRENT_DATE) | January/11/24 Thu |
FORMAT_DATE('%b/%d/%g %a', CURRENT_DATE) | Jan/11/24 Thu |
FORMAT_DATE('%h/%d/%g %a', CURRENT_DATE) | Jan/11/24 Thu |
FORMAT_DATE('%m:%d:%Y %a', CURRENT_DATE) | 01:11:2024 Thu |
FORMAT_DATE('%m:%d:%E4Y %a', CURRENT_DATE) | 01:11:2024 Thu |
FORMAT_DATE('%m:%d:%y %a', CURRENT_DATE) | 01:11:24 Thu |
FORMAT_DATE('%m:%d:%G %a', CURRENT_DATE) | 01:11:2024 Thu |
FORMAT_DATE('%m:%d:%g %a', CURRENT_DATE) | 01:11:24 Thu |
FORMAT_DATE('%B:%d:%Y %a', CURRENT_DATE) | January:11:2024 Thu |
FORMAT_DATE('%b:%d:%Y %a', CURRENT_DATE) | Jan:11:2024 Thu |
FORMAT_DATE('%h:%d:%Y %a', CURRENT_DATE) | Jan:11:2024 Thu |
FORMAT_DATE('%B:%d:%E4Y %a', CURRENT_DATE) | January:11:2024 Thu |
FORMAT_DATE('%b:%d:%E4Y %a', CURRENT_DATE) | Jan:11:2024 Thu |
FORMAT_DATE('%h:%d:%E4Y %a', CURRENT_DATE) | Jan:11:2024 Thu |
FORMAT_DATE('%B:%d:%y %a', CURRENT_DATE) | January:11:24 Thu |
FORMAT_DATE('%b:%d:%y %a', CURRENT_DATE) | Jan:11:24 Thu |
FORMAT_DATE('%h:%d:%y %a', CURRENT_DATE) | Jan:11:24 Thu |
FORMAT_DATE('%B:%d:%G %a', CURRENT_DATE) | January:11:2024 Thu |
FORMAT_DATE('%b:%d:%G %a', CURRENT_DATE) | Jan:11:2024 Thu |
FORMAT_DATE('%h:%d:%G %a', CURRENT_DATE) | Jan:11:2024 Thu |
FORMAT_DATE('%B:%d:%g %a', CURRENT_DATE) | January:11:24 Thu |
FORMAT_DATE('%b:%d:%g %a', CURRENT_DATE) | Jan:11:24 Thu |
FORMAT_DATE('%h:%d:%g %a', CURRENT_DATE) | Jan:11:24 Thu |
FORMAT_DATE('%m.%d.%Y %a', CURRENT_DATE) | 01.11.2024 Thu |
FORMAT_DATE('%m.%d.%E4Y %a', CURRENT_DATE) | 01.11.2024 Thu |
FORMAT_DATE('%m.%d.%y %a', CURRENT_DATE) | 01.11.24 Thu |
FORMAT_DATE('%m.%d.%G %a', CURRENT_DATE) | 01.11.2024 Thu |
FORMAT_DATE('%m.%d.%g %a', CURRENT_DATE) | 01.11.24 Thu |
FORMAT_DATE('%B.%d.%Y %a', CURRENT_DATE) | January.11.2024 Thu |
FORMAT_DATE('%b.%d.%Y %a', CURRENT_DATE) | Jan.11.2024 Thu |
FORMAT_DATE('%h.%d.%Y %a', CURRENT_DATE) | Jan.11.2024 Thu |
FORMAT_DATE('%B.%d.%E4Y %a', CURRENT_DATE) | January.11.2024 Thu |
FORMAT_DATE('%b.%d.%E4Y %a', CURRENT_DATE) | Jan.11.2024 Thu |
FORMAT_DATE('%h.%d.%E4Y %a', CURRENT_DATE) | Jan.11.2024 Thu |
FORMAT_DATE('%B.%d.%y %a', CURRENT_DATE) | January.11.24 Thu |
FORMAT_DATE('%b.%d.%y %a', CURRENT_DATE) | Jan.11.24 Thu |
FORMAT_DATE('%h.%d.%y %a', CURRENT_DATE) | Jan.11.24 Thu |
FORMAT_DATE('%B.%d.%G %a', CURRENT_DATE) | January.11.2024 Thu |
FORMAT_DATE('%b.%d.%G %a', CURRENT_DATE) | Jan.11.2024 Thu |
FORMAT_DATE('%h.%d.%G %a', CURRENT_DATE) | Jan.11.2024 Thu |
FORMAT_DATE('%B.%d.%g %a', CURRENT_DATE) | January.11.24 Thu |
FORMAT_DATE('%b.%d.%g %a', CURRENT_DATE) | Jan.11.24 Thu |
FORMAT_DATE('%h.%d.%g %a', CURRENT_DATE) | Jan.11.24 Thu |
FORMAT_DATE('%m %d %Y %a', CURRENT_DATE) | 01 11 2024 Thu |
FORMAT_DATE('%m %d %E4Y %a', CURRENT_DATE) | 01 11 2024 Thu |
FORMAT_DATE('%m %d %y %a', CURRENT_DATE) | 01 11 24 Thu |
FORMAT_DATE('%m %d %G %a', CURRENT_DATE) | 01 11 2024 Thu |
FORMAT_DATE('%m %d %g %a', CURRENT_DATE) | 01 11 24 Thu |
FORMAT_DATE('%B %d %Y %a', CURRENT_DATE) | January 11 2024 Thu |
FORMAT_DATE('%b %d %Y %a', CURRENT_DATE) | Jan 11 2024 Thu |
FORMAT_DATE('%h %d %Y %a', CURRENT_DATE) | Jan 11 2024 Thu |
FORMAT_DATE('%B %d %E4Y %a', CURRENT_DATE) | January 11 2024 Thu |
FORMAT_DATE('%b %d %E4Y %a', CURRENT_DATE) | Jan 11 2024 Thu |
FORMAT_DATE('%h %d %E4Y %a', CURRENT_DATE) | Jan 11 2024 Thu |
FORMAT_DATE('%B %d %y %a', CURRENT_DATE) | January 11 24 Thu |
FORMAT_DATE('%b %d %y %a', CURRENT_DATE) | Jan 11 24 Thu |
FORMAT_DATE('%h %d %y %a', CURRENT_DATE) | Jan 11 24 Thu |
FORMAT_DATE('%B %d %G %a', CURRENT_DATE) | January 11 2024 Thu |
FORMAT_DATE('%b %d %G %a', CURRENT_DATE) | Jan 11 2024 Thu |
FORMAT_DATE('%h %d %G %a', CURRENT_DATE) | Jan 11 2024 Thu |
FORMAT_DATE('%B %d %g %a', CURRENT_DATE) | January 11 24 Thu |
FORMAT_DATE('%b %d %g %a', CURRENT_DATE) | Jan 11 24 Thu |
FORMAT_DATE('%h %d %g %a', CURRENT_DATE) | Jan 11 24 Thu |
FORMAT_DATE('%m%d%Y %a', CURRENT_DATE) | 01112024 Thu |
FORMAT_DATE('%m%d%E4Y %a', CURRENT_DATE) | 01112024 Thu |
FORMAT_DATE('%m%d%y %a', CURRENT_DATE) | 011124 Thu |
FORMAT_DATE('%m%d%G %a', CURRENT_DATE) | 01112024 Thu |
FORMAT_DATE('%m%d%g %a', CURRENT_DATE) | 011124 Thu |
FORMAT_DATE('%B%d%Y %a', CURRENT_DATE) | January112024 Thu |
FORMAT_DATE('%b%d%Y %a', CURRENT_DATE) | Jan112024 Thu |
FORMAT_DATE('%h%d%Y %a', CURRENT_DATE) | Jan112024 Thu |
FORMAT_DATE('%B%d%E4Y %a', CURRENT_DATE) | January112024 Thu |
FORMAT_DATE('%b%d%E4Y %a', CURRENT_DATE) | Jan112024 Thu |
FORMAT_DATE('%h%d%E4Y %a', CURRENT_DATE) | Jan112024 Thu |
FORMAT_DATE('%B%d%y %a', CURRENT_DATE) | January1124 Thu |
FORMAT_DATE('%b%d%y %a', CURRENT_DATE) | Jan1124 Thu |
FORMAT_DATE('%h%d%y %a', CURRENT_DATE) | Jan1124 Thu |
FORMAT_DATE('%B%d%G %a', CURRENT_DATE) | January112024 Thu |
FORMAT_DATE('%b%d%G %a', CURRENT_DATE) | Jan112024 Thu |
FORMAT_DATE('%h%d%G %a', CURRENT_DATE) | Jan112024 Thu |
FORMAT_DATE('%B%d%g %a', CURRENT_DATE) | January1124 Thu |
FORMAT_DATE('%b%d%g %a', CURRENT_DATE) | Jan1124 Thu |
FORMAT_DATE('%h%d%g %a', CURRENT_DATE) | Jan1124 Thu |
FORMAT_DATE('%m-%d-%Y Quarter %Q', CURRENT_DATE) | 01-11-2024 Quarter 1 |
FORMAT_DATE('%m-%d-%E4Y Quarter %Q', CURRENT_DATE) | 01-11-2024 Quarter 1 |
FORMAT_DATE('%m-%d-%y Quarter %Q', CURRENT_DATE) | 01-11-24 Quarter 1 |
FORMAT_DATE('%m-%d-%G Quarter %Q', CURRENT_DATE) | 01-11-2024 Quarter 1 |
FORMAT_DATE('%m-%d-%g Quarter %Q', CURRENT_DATE) | 01-11-24 Quarter 1 |
FORMAT_DATE('%B-%d-%Y Quarter %Q', CURRENT_DATE) | January-11-2024 Quarter 1 |
FORMAT_DATE('%b-%d-%Y Quarter %Q', CURRENT_DATE) | Jan-11-2024 Quarter 1 |
FORMAT_DATE('%h-%d-%Y Quarter %Q', CURRENT_DATE) | Jan-11-2024 Quarter 1 |
FORMAT_DATE('%B-%d-%E4Y Quarter %Q', CURRENT_DATE) | January-11-2024 Quarter 1 |
FORMAT_DATE('%b-%d-%E4Y Quarter %Q', CURRENT_DATE) | Jan-11-2024 Quarter 1 |
FORMAT_DATE('%h-%d-%E4Y Quarter %Q', CURRENT_DATE) | Jan-11-2024 Quarter 1 |
FORMAT_DATE('%B-%d-%y Quarter %Q', CURRENT_DATE) | January-11-24 Quarter 1 |
FORMAT_DATE('%b-%d-%y Quarter %Q', CURRENT_DATE) | Jan-11-24 Quarter 1 |
FORMAT_DATE('%h-%d-%y Quarter %Q', CURRENT_DATE) | Jan-11-24 Quarter 1 |
FORMAT_DATE('%B-%d-%G Quarter %Q', CURRENT_DATE) | January-11-2024 Quarter 1 |
FORMAT_DATE('%b-%d-%G Quarter %Q', CURRENT_DATE) | Jan-11-2024 Quarter 1 |
FORMAT_DATE('%h-%d-%G Quarter %Q', CURRENT_DATE) | Jan-11-2024 Quarter 1 |
FORMAT_DATE('%B-%d-%g Quarter %Q', CURRENT_DATE) | January-11-24 Quarter 1 |
FORMAT_DATE('%b-%d-%g Quarter %Q', CURRENT_DATE) | Jan-11-24 Quarter 1 |
FORMAT_DATE('%h-%d-%g Quarter %Q', CURRENT_DATE) | Jan-11-24 Quarter 1 |
FORMAT_DATE('%m/%d/%Y Quarter %Q', CURRENT_DATE) | 01/11/2024 Quarter 1 |
FORMAT_DATE('%m/%d/%E4Y Quarter %Q', CURRENT_DATE) | 01/11/2024 Quarter 1 |
FORMAT_DATE('%m/%d/%y Quarter %Q', CURRENT_DATE) | 01/11/24 Quarter 1 |
FORMAT_DATE('%m/%d/%G Quarter %Q', CURRENT_DATE) | 01/11/2024 Quarter 1 |
FORMAT_DATE('%m/%d/%g Quarter %Q', CURRENT_DATE) | 01/11/24 Quarter 1 |
FORMAT_DATE('%B/%d/%Y Quarter %Q', CURRENT_DATE) | January/11/2024 Quarter 1 |
FORMAT_DATE('%b/%d/%Y Quarter %Q', CURRENT_DATE) | Jan/11/2024 Quarter 1 |
FORMAT_DATE('%h/%d/%Y Quarter %Q', CURRENT_DATE) | Jan/11/2024 Quarter 1 |
FORMAT_DATE('%B/%d/%E4Y Quarter %Q', CURRENT_DATE) | January/11/2024 Quarter 1 |
FORMAT_DATE('%b/%d/%E4Y Quarter %Q', CURRENT_DATE) | Jan/11/2024 Quarter 1 |
FORMAT_DATE('%h/%d/%E4Y Quarter %Q', CURRENT_DATE) | Jan/11/2024 Quarter 1 |
FORMAT_DATE('%B/%d/%y Quarter %Q', CURRENT_DATE) | January/11/24 Quarter 1 |
FORMAT_DATE('%b/%d/%y Quarter %Q', CURRENT_DATE) | Jan/11/24 Quarter 1 |
FORMAT_DATE('%h/%d/%y Quarter %Q', CURRENT_DATE) | Jan/11/24 Quarter 1 |
FORMAT_DATE('%B/%d/%G Quarter %Q', CURRENT_DATE) | January/11/2024 Quarter 1 |
FORMAT_DATE('%b/%d/%G Quarter %Q', CURRENT_DATE) | Jan/11/2024 Quarter 1 |
FORMAT_DATE('%h/%d/%G Quarter %Q', CURRENT_DATE) | Jan/11/2024 Quarter 1 |
FORMAT_DATE('%B/%d/%g Quarter %Q', CURRENT_DATE) | January/11/24 Quarter 1 |
FORMAT_DATE('%b/%d/%g Quarter %Q', CURRENT_DATE) | Jan/11/24 Quarter 1 |
FORMAT_DATE('%h/%d/%g Quarter %Q', CURRENT_DATE) | Jan/11/24 Quarter 1 |
FORMAT_DATE('%m:%d:%Y Quarter %Q', CURRENT_DATE) | 01:11:2024 Quarter 1 |
FORMAT_DATE('%m:%d:%E4Y Quarter %Q', CURRENT_DATE) | 01:11:2024 Quarter 1 |
FORMAT_DATE('%m:%d:%y Quarter %Q', CURRENT_DATE) | 01:11:24 Quarter 1 |
FORMAT_DATE('%m:%d:%G Quarter %Q', CURRENT_DATE) | 01:11:2024 Quarter 1 |
FORMAT_DATE('%m:%d:%g Quarter %Q', CURRENT_DATE) | 01:11:24 Quarter 1 |
FORMAT_DATE('%B:%d:%Y Quarter %Q', CURRENT_DATE) | January:11:2024 Quarter 1 |
FORMAT_DATE('%b:%d:%Y Quarter %Q', CURRENT_DATE) | Jan:11:2024 Quarter 1 |
FORMAT_DATE('%h:%d:%Y Quarter %Q', CURRENT_DATE) | Jan:11:2024 Quarter 1 |
FORMAT_DATE('%B:%d:%E4Y Quarter %Q', CURRENT_DATE) | January:11:2024 Quarter 1 |
FORMAT_DATE('%b:%d:%E4Y Quarter %Q', CURRENT_DATE) | Jan:11:2024 Quarter 1 |
FORMAT_DATE('%h:%d:%E4Y Quarter %Q', CURRENT_DATE) | Jan:11:2024 Quarter 1 |
FORMAT_DATE('%B:%d:%y Quarter %Q', CURRENT_DATE) | January:11:24 Quarter 1 |
FORMAT_DATE('%b:%d:%y Quarter %Q', CURRENT_DATE) | Jan:11:24 Quarter 1 |
FORMAT_DATE('%h:%d:%y Quarter %Q', CURRENT_DATE) | Jan:11:24 Quarter 1 |
FORMAT_DATE('%B:%d:%G Quarter %Q', CURRENT_DATE) | January:11:2024 Quarter 1 |
FORMAT_DATE('%b:%d:%G Quarter %Q', CURRENT_DATE) | Jan:11:2024 Quarter 1 |
FORMAT_DATE('%h:%d:%G Quarter %Q', CURRENT_DATE) | Jan:11:2024 Quarter 1 |
FORMAT_DATE('%B:%d:%g Quarter %Q', CURRENT_DATE) | January:11:24 Quarter 1 |
FORMAT_DATE('%b:%d:%g Quarter %Q', CURRENT_DATE) | Jan:11:24 Quarter 1 |
FORMAT_DATE('%h:%d:%g Quarter %Q', CURRENT_DATE) | Jan:11:24 Quarter 1 |
FORMAT_DATE('%m.%d.%Y Quarter %Q', CURRENT_DATE) | 01.11.2024 Quarter 1 |
FORMAT_DATE('%m.%d.%E4Y Quarter %Q', CURRENT_DATE) | 01.11.2024 Quarter 1 |
FORMAT_DATE('%m.%d.%y Quarter %Q', CURRENT_DATE) | 01.11.24 Quarter 1 |
FORMAT_DATE('%m.%d.%G Quarter %Q', CURRENT_DATE) | 01.11.2024 Quarter 1 |
FORMAT_DATE('%m.%d.%g Quarter %Q', CURRENT_DATE) | 01.11.24 Quarter 1 |
FORMAT_DATE('%B.%d.%Y Quarter %Q', CURRENT_DATE) | January.11.2024 Quarter 1 |
FORMAT_DATE('%b.%d.%Y Quarter %Q', CURRENT_DATE) | Jan.11.2024 Quarter 1 |
FORMAT_DATE('%h.%d.%Y Quarter %Q', CURRENT_DATE) | Jan.11.2024 Quarter 1 |
FORMAT_DATE('%B.%d.%E4Y Quarter %Q', CURRENT_DATE) | January.11.2024 Quarter 1 |
FORMAT_DATE('%b.%d.%E4Y Quarter %Q', CURRENT_DATE) | Jan.11.2024 Quarter 1 |
FORMAT_DATE('%h.%d.%E4Y Quarter %Q', CURRENT_DATE) | Jan.11.2024 Quarter 1 |
FORMAT_DATE('%B.%d.%y Quarter %Q', CURRENT_DATE) | January.11.24 Quarter 1 |
FORMAT_DATE('%b.%d.%y Quarter %Q', CURRENT_DATE) | Jan.11.24 Quarter 1 |
FORMAT_DATE('%h.%d.%y Quarter %Q', CURRENT_DATE) | Jan.11.24 Quarter 1 |
FORMAT_DATE('%B.%d.%G Quarter %Q', CURRENT_DATE) | January.11.2024 Quarter 1 |
FORMAT_DATE('%b.%d.%G Quarter %Q', CURRENT_DATE) | Jan.11.2024 Quarter 1 |
FORMAT_DATE('%h.%d.%G Quarter %Q', CURRENT_DATE) | Jan.11.2024 Quarter 1 |
FORMAT_DATE('%B.%d.%g Quarter %Q', CURRENT_DATE) | January.11.24 Quarter 1 |
FORMAT_DATE('%b.%d.%g Quarter %Q', CURRENT_DATE) | Jan.11.24 Quarter 1 |
FORMAT_DATE('%h.%d.%g Quarter %Q', CURRENT_DATE) | Jan.11.24 Quarter 1 |
FORMAT_DATE('%m %d %Y Quarter %Q', CURRENT_DATE) | 01 11 2024 Quarter 1 |
FORMAT_DATE('%m %d %E4Y Quarter %Q', CURRENT_DATE) | 01 11 2024 Quarter 1 |
FORMAT_DATE('%m %d %y Quarter %Q', CURRENT_DATE) | 01 11 24 Quarter 1 |
FORMAT_DATE('%m %d %G Quarter %Q', CURRENT_DATE) | 01 11 2024 Quarter 1 |
FORMAT_DATE('%m %d %g Quarter %Q', CURRENT_DATE) | 01 11 24 Quarter 1 |
FORMAT_DATE('%B %d %Y Quarter %Q', CURRENT_DATE) | January 11 2024 Quarter 1 |
FORMAT_DATE('%b %d %Y Quarter %Q', CURRENT_DATE) | Jan 11 2024 Quarter 1 |
FORMAT_DATE('%h %d %Y Quarter %Q', CURRENT_DATE) | Jan 11 2024 Quarter 1 |
FORMAT_DATE('%B %d %E4Y Quarter %Q', CURRENT_DATE) | January 11 2024 Quarter 1 |
FORMAT_DATE('%b %d %E4Y Quarter %Q', CURRENT_DATE) | Jan 11 2024 Quarter 1 |
FORMAT_DATE('%h %d %E4Y Quarter %Q', CURRENT_DATE) | Jan 11 2024 Quarter 1 |
FORMAT_DATE('%B %d %y Quarter %Q', CURRENT_DATE) | January 11 24 Quarter 1 |
FORMAT_DATE('%b %d %y Quarter %Q', CURRENT_DATE) | Jan 11 24 Quarter 1 |
FORMAT_DATE('%h %d %y Quarter %Q', CURRENT_DATE) | Jan 11 24 Quarter 1 |
FORMAT_DATE('%B %d %G Quarter %Q', CURRENT_DATE) | January 11 2024 Quarter 1 |
FORMAT_DATE('%b %d %G Quarter %Q', CURRENT_DATE) | Jan 11 2024 Quarter 1 |
FORMAT_DATE('%h %d %G Quarter %Q', CURRENT_DATE) | Jan 11 2024 Quarter 1 |
FORMAT_DATE('%B %d %g Quarter %Q', CURRENT_DATE) | January 11 24 Quarter 1 |
FORMAT_DATE('%b %d %g Quarter %Q', CURRENT_DATE) | Jan 11 24 Quarter 1 |
FORMAT_DATE('%h %d %g Quarter %Q', CURRENT_DATE) | Jan 11 24 Quarter 1 |
FORMAT_DATE('%m%d%Y Quarter %Q', CURRENT_DATE) | 01112024 Quarter 1 |
FORMAT_DATE('%m%d%E4Y Quarter %Q', CURRENT_DATE) | 01112024 Quarter 1 |
FORMAT_DATE('%m%d%y Quarter %Q', CURRENT_DATE) | 011124 Quarter 1 |
FORMAT_DATE('%m%d%G Quarter %Q', CURRENT_DATE) | 01112024 Quarter 1 |
FORMAT_DATE('%m%d%g Quarter %Q', CURRENT_DATE) | 011124 Quarter 1 |
FORMAT_DATE('%B%d%Y Quarter %Q', CURRENT_DATE) | January112024 Quarter 1 |
FORMAT_DATE('%b%d%Y Quarter %Q', CURRENT_DATE) | Jan112024 Quarter 1 |
FORMAT_DATE('%h%d%Y Quarter %Q', CURRENT_DATE) | Jan112024 Quarter 1 |
FORMAT_DATE('%B%d%E4Y Quarter %Q', CURRENT_DATE) | January112024 Quarter 1 |
FORMAT_DATE('%b%d%E4Y Quarter %Q', CURRENT_DATE) | Jan112024 Quarter 1 |
FORMAT_DATE('%h%d%E4Y Quarter %Q', CURRENT_DATE) | Jan112024 Quarter 1 |
FORMAT_DATE('%B%d%y Quarter %Q', CURRENT_DATE) | January1124 Quarter 1 |
FORMAT_DATE('%b%d%y Quarter %Q', CURRENT_DATE) | Jan1124 Quarter 1 |
FORMAT_DATE('%h%d%y Quarter %Q', CURRENT_DATE) | Jan1124 Quarter 1 |
FORMAT_DATE('%B%d%G Quarter %Q', CURRENT_DATE) | January112024 Quarter 1 |
FORMAT_DATE('%b%d%G Quarter %Q', CURRENT_DATE) | Jan112024 Quarter 1 |
FORMAT_DATE('%h%d%G Quarter %Q', CURRENT_DATE) | Jan112024 Quarter 1 |
FORMAT_DATE('%B%d%g Quarter %Q', CURRENT_DATE) | January1124 Quarter 1 |
FORMAT_DATE('%b%d%g Quarter %Q', CURRENT_DATE) | Jan1124 Quarter 1 |
FORMAT_DATE('%h%d%g Quarter %Q', CURRENT_DATE) | Jan1124 Quarter 1 |
FORMAT_DATE('%m-%d-%Y Week %U', CURRENT_DATE) | 01-11-2024 Week 01 |
FORMAT_DATE('%m-%d-%E4Y Week %U', CURRENT_DATE) | 01-11-2024 Week 01 |
FORMAT_DATE('%m-%d-%y Week %U', CURRENT_DATE) | 01-11-24 Week 01 |
FORMAT_DATE('%m-%d-%G Week %U', CURRENT_DATE) | 01-11-2024 Week 01 |
FORMAT_DATE('%m-%d-%g Week %U', CURRENT_DATE) | 01-11-24 Week 01 |
FORMAT_DATE('%B-%d-%Y Week %U', CURRENT_DATE) | January-11-2024 Week 01 |
FORMAT_DATE('%b-%d-%Y Week %U', CURRENT_DATE) | Jan-11-2024 Week 01 |
FORMAT_DATE('%h-%d-%Y Week %U', CURRENT_DATE) | Jan-11-2024 Week 01 |
FORMAT_DATE('%B-%d-%E4Y Week %U', CURRENT_DATE) | January-11-2024 Week 01 |
FORMAT_DATE('%b-%d-%E4Y Week %U', CURRENT_DATE) | Jan-11-2024 Week 01 |
FORMAT_DATE('%h-%d-%E4Y Week %U', CURRENT_DATE) | Jan-11-2024 Week 01 |
FORMAT_DATE('%B-%d-%y Week %U', CURRENT_DATE) | January-11-24 Week 01 |
FORMAT_DATE('%b-%d-%y Week %U', CURRENT_DATE) | Jan-11-24 Week 01 |
FORMAT_DATE('%h-%d-%y Week %U', CURRENT_DATE) | Jan-11-24 Week 01 |
FORMAT_DATE('%B-%d-%G Week %U', CURRENT_DATE) | January-11-2024 Week 01 |
FORMAT_DATE('%b-%d-%G Week %U', CURRENT_DATE) | Jan-11-2024 Week 01 |
FORMAT_DATE('%h-%d-%G Week %U', CURRENT_DATE) | Jan-11-2024 Week 01 |
FORMAT_DATE('%B-%d-%g Week %U', CURRENT_DATE) | January-11-24 Week 01 |
FORMAT_DATE('%b-%d-%g Week %U', CURRENT_DATE) | Jan-11-24 Week 01 |
FORMAT_DATE('%h-%d-%g Week %U', CURRENT_DATE) | Jan-11-24 Week 01 |
FORMAT_DATE('%m/%d/%Y Week %U', CURRENT_DATE) | 01/11/2024 Week 01 |
FORMAT_DATE('%m/%d/%E4Y Week %U', CURRENT_DATE) | 01/11/2024 Week 01 |
FORMAT_DATE('%m/%d/%y Week %U', CURRENT_DATE) | 01/11/24 Week 01 |
FORMAT_DATE('%m/%d/%G Week %U', CURRENT_DATE) | 01/11/2024 Week 01 |
FORMAT_DATE('%m/%d/%g Week %U', CURRENT_DATE) | 01/11/24 Week 01 |
FORMAT_DATE('%B/%d/%Y Week %U', CURRENT_DATE) | January/11/2024 Week 01 |
FORMAT_DATE('%b/%d/%Y Week %U', CURRENT_DATE) | Jan/11/2024 Week 01 |
FORMAT_DATE('%h/%d/%Y Week %U', CURRENT_DATE) | Jan/11/2024 Week 01 |
FORMAT_DATE('%B/%d/%E4Y Week %U', CURRENT_DATE) | January/11/2024 Week 01 |
FORMAT_DATE('%b/%d/%E4Y Week %U', CURRENT_DATE) | Jan/11/2024 Week 01 |
FORMAT_DATE('%h/%d/%E4Y Week %U', CURRENT_DATE) | Jan/11/2024 Week 01 |
FORMAT_DATE('%B/%d/%y Week %U', CURRENT_DATE) | January/11/24 Week 01 |
FORMAT_DATE('%b/%d/%y Week %U', CURRENT_DATE) | Jan/11/24 Week 01 |
FORMAT_DATE('%h/%d/%y Week %U', CURRENT_DATE) | Jan/11/24 Week 01 |
FORMAT_DATE('%B/%d/%G Week %U', CURRENT_DATE) | January/11/2024 Week 01 |
FORMAT_DATE('%b/%d/%G Week %U', CURRENT_DATE) | Jan/11/2024 Week 01 |
FORMAT_DATE('%h/%d/%G Week %U', CURRENT_DATE) | Jan/11/2024 Week 01 |
FORMAT_DATE('%B/%d/%g Week %U', CURRENT_DATE) | January/11/24 Week 01 |
FORMAT_DATE('%b/%d/%g Week %U', CURRENT_DATE) | Jan/11/24 Week 01 |
FORMAT_DATE('%h/%d/%g Week %U', CURRENT_DATE) | Jan/11/24 Week 01 |
FORMAT_DATE('%m:%d:%Y Week %U', CURRENT_DATE) | 01:11:2024 Week 01 |
FORMAT_DATE('%m:%d:%E4Y Week %U', CURRENT_DATE) | 01:11:2024 Week 01 |
FORMAT_DATE('%m:%d:%y Week %U', CURRENT_DATE) | 01:11:24 Week 01 |
FORMAT_DATE('%m:%d:%G Week %U', CURRENT_DATE) | 01:11:2024 Week 01 |
FORMAT_DATE('%m:%d:%g Week %U', CURRENT_DATE) | 01:11:24 Week 01 |
FORMAT_DATE('%B:%d:%Y Week %U', CURRENT_DATE) | January:11:2024 Week 01 |
FORMAT_DATE('%b:%d:%Y Week %U', CURRENT_DATE) | Jan:11:2024 Week 01 |
FORMAT_DATE('%h:%d:%Y Week %U', CURRENT_DATE) | Jan:11:2024 Week 01 |
FORMAT_DATE('%B:%d:%E4Y Week %U', CURRENT_DATE) | January:11:2024 Week 01 |
FORMAT_DATE('%b:%d:%E4Y Week %U', CURRENT_DATE) | Jan:11:2024 Week 01 |
FORMAT_DATE('%h:%d:%E4Y Week %U', CURRENT_DATE) | Jan:11:2024 Week 01 |
FORMAT_DATE('%B:%d:%y Week %U', CURRENT_DATE) | January:11:24 Week 01 |
FORMAT_DATE('%b:%d:%y Week %U', CURRENT_DATE) | Jan:11:24 Week 01 |
FORMAT_DATE('%h:%d:%y Week %U', CURRENT_DATE) | Jan:11:24 Week 01 |
FORMAT_DATE('%B:%d:%G Week %U', CURRENT_DATE) | January:11:2024 Week 01 |
FORMAT_DATE('%b:%d:%G Week %U', CURRENT_DATE) | Jan:11:2024 Week 01 |
FORMAT_DATE('%h:%d:%G Week %U', CURRENT_DATE) | Jan:11:2024 Week 01 |
FORMAT_DATE('%B:%d:%g Week %U', CURRENT_DATE) | January:11:24 Week 01 |
FORMAT_DATE('%b:%d:%g Week %U', CURRENT_DATE) | Jan:11:24 Week 01 |
FORMAT_DATE('%h:%d:%g Week %U', CURRENT_DATE) | Jan:11:24 Week 01 |
FORMAT_DATE('%m.%d.%Y Week %U', CURRENT_DATE) | 01.11.2024 Week 01 |
FORMAT_DATE('%m.%d.%E4Y Week %U', CURRENT_DATE) | 01.11.2024 Week 01 |
FORMAT_DATE('%m.%d.%y Week %U', CURRENT_DATE) | 01.11.24 Week 01 |
FORMAT_DATE('%m.%d.%G Week %U', CURRENT_DATE) | 01.11.2024 Week 01 |
FORMAT_DATE('%m.%d.%g Week %U', CURRENT_DATE) | 01.11.24 Week 01 |
FORMAT_DATE('%B.%d.%Y Week %U', CURRENT_DATE) | January.11.2024 Week 01 |
FORMAT_DATE('%b.%d.%Y Week %U', CURRENT_DATE) | Jan.11.2024 Week 01 |
FORMAT_DATE('%h.%d.%Y Week %U', CURRENT_DATE) | Jan.11.2024 Week 01 |
FORMAT_DATE('%B.%d.%E4Y Week %U', CURRENT_DATE) | January.11.2024 Week 01 |
FORMAT_DATE('%b.%d.%E4Y Week %U', CURRENT_DATE) | Jan.11.2024 Week 01 |
FORMAT_DATE('%h.%d.%E4Y Week %U', CURRENT_DATE) | Jan.11.2024 Week 01 |
FORMAT_DATE('%B.%d.%y Week %U', CURRENT_DATE) | January.11.24 Week 01 |
FORMAT_DATE('%b.%d.%y Week %U', CURRENT_DATE) | Jan.11.24 Week 01 |
FORMAT_DATE('%h.%d.%y Week %U', CURRENT_DATE) | Jan.11.24 Week 01 |
FORMAT_DATE('%B.%d.%G Week %U', CURRENT_DATE) | January.11.2024 Week 01 |
FORMAT_DATE('%b.%d.%G Week %U', CURRENT_DATE) | Jan.11.2024 Week 01 |
FORMAT_DATE('%h.%d.%G Week %U', CURRENT_DATE) | Jan.11.2024 Week 01 |
FORMAT_DATE('%B.%d.%g Week %U', CURRENT_DATE) | January.11.24 Week 01 |
FORMAT_DATE('%b.%d.%g Week %U', CURRENT_DATE) | Jan.11.24 Week 01 |
FORMAT_DATE('%h.%d.%g Week %U', CURRENT_DATE) | Jan.11.24 Week 01 |
FORMAT_DATE('%m %d %Y Week %U', CURRENT_DATE) | 01 11 2024 Week 01 |
FORMAT_DATE('%m %d %E4Y Week %U', CURRENT_DATE) | 01 11 2024 Week 01 |
FORMAT_DATE('%m %d %y Week %U', CURRENT_DATE) | 01 11 24 Week 01 |
FORMAT_DATE('%m %d %G Week %U', CURRENT_DATE) | 01 11 2024 Week 01 |
FORMAT_DATE('%m %d %g Week %U', CURRENT_DATE) | 01 11 24 Week 01 |
FORMAT_DATE('%B %d %Y Week %U', CURRENT_DATE) | January 11 2024 Week 01 |
FORMAT_DATE('%b %d %Y Week %U', CURRENT_DATE) | Jan 11 2024 Week 01 |
FORMAT_DATE('%h %d %Y Week %U', CURRENT_DATE) | Jan 11 2024 Week 01 |
FORMAT_DATE('%B %d %E4Y Week %U', CURRENT_DATE) | January 11 2024 Week 01 |
FORMAT_DATE('%b %d %E4Y Week %U', CURRENT_DATE) | Jan 11 2024 Week 01 |
FORMAT_DATE('%h %d %E4Y Week %U', CURRENT_DATE) | Jan 11 2024 Week 01 |
FORMAT_DATE('%B %d %y Week %U', CURRENT_DATE) | January 11 24 Week 01 |
FORMAT_DATE('%b %d %y Week %U', CURRENT_DATE) | Jan 11 24 Week 01 |
FORMAT_DATE('%h %d %y Week %U', CURRENT_DATE) | Jan 11 24 Week 01 |
FORMAT_DATE('%B %d %G Week %U', CURRENT_DATE) | January 11 2024 Week 01 |
FORMAT_DATE('%b %d %G Week %U', CURRENT_DATE) | Jan 11 2024 Week 01 |
FORMAT_DATE('%h %d %G Week %U', CURRENT_DATE) | Jan 11 2024 Week 01 |
FORMAT_DATE('%B %d %g Week %U', CURRENT_DATE) | January 11 24 Week 01 |
FORMAT_DATE('%b %d %g Week %U', CURRENT_DATE) | Jan 11 24 Week 01 |
FORMAT_DATE('%h %d %g Week %U', CURRENT_DATE) | Jan 11 24 Week 01 |
FORMAT_DATE('%m%d%Y Week %U', CURRENT_DATE) | 01112024 Week 01 |
FORMAT_DATE('%m%d%E4Y Week %U', CURRENT_DATE) | 01112024 Week 01 |
FORMAT_DATE('%m%d%y Week %U', CURRENT_DATE) | 011124 Week 01 |
FORMAT_DATE('%m%d%G Week %U', CURRENT_DATE) | 01112024 Week 01 |
FORMAT_DATE('%m%d%g Week %U', CURRENT_DATE) | 011124 Week 01 |
FORMAT_DATE('%B%d%Y Week %U', CURRENT_DATE) | January112024 Week 01 |
FORMAT_DATE('%b%d%Y Week %U', CURRENT_DATE) | Jan112024 Week 01 |
FORMAT_DATE('%h%d%Y Week %U', CURRENT_DATE) | Jan112024 Week 01 |
FORMAT_DATE('%B%d%E4Y Week %U', CURRENT_DATE) | January112024 Week 01 |
FORMAT_DATE('%b%d%E4Y Week %U', CURRENT_DATE) | Jan112024 Week 01 |
FORMAT_DATE('%h%d%E4Y Week %U', CURRENT_DATE) | Jan112024 Week 01 |
FORMAT_DATE('%B%d%y Week %U', CURRENT_DATE) | January1124 Week 01 |
FORMAT_DATE('%b%d%y Week %U', CURRENT_DATE) | Jan1124 Week 01 |
FORMAT_DATE('%h%d%y Week %U', CURRENT_DATE) | Jan1124 Week 01 |
FORMAT_DATE('%B%d%G Week %U', CURRENT_DATE) | January112024 Week 01 |
FORMAT_DATE('%b%d%G Week %U', CURRENT_DATE) | Jan112024 Week 01 |
FORMAT_DATE('%h%d%G Week %U', CURRENT_DATE) | Jan112024 Week 01 |
FORMAT_DATE('%B%d%g Week %U', CURRENT_DATE) | January1124 Week 01 |
FORMAT_DATE('%b%d%g Week %U', CURRENT_DATE) | Jan1124 Week 01 |
FORMAT_DATE('%h%d%g Week %U', CURRENT_DATE) | Jan1124 Week 01 |
FORMAT_DATE('%m-%d-%Y Week %W', CURRENT_DATE) | 01-11-2024 Week 02 |
FORMAT_DATE('%m-%d-%E4Y Week %W', CURRENT_DATE) | 01-11-2024 Week 02 |
FORMAT_DATE('%m-%d-%y Week %W', CURRENT_DATE) | 01-11-24 Week 02 |
FORMAT_DATE('%m-%d-%G Week %W', CURRENT_DATE) | 01-11-2024 Week 02 |
FORMAT_DATE('%m-%d-%g Week %W', CURRENT_DATE) | 01-11-24 Week 02 |
FORMAT_DATE('%B-%d-%Y Week %W', CURRENT_DATE) | January-11-2024 Week 02 |
FORMAT_DATE('%b-%d-%Y Week %W', CURRENT_DATE) | Jan-11-2024 Week 02 |
FORMAT_DATE('%h-%d-%Y Week %W', CURRENT_DATE) | Jan-11-2024 Week 02 |
FORMAT_DATE('%B-%d-%E4Y Week %W', CURRENT_DATE) | January-11-2024 Week 02 |
FORMAT_DATE('%b-%d-%E4Y Week %W', CURRENT_DATE) | Jan-11-2024 Week 02 |
FORMAT_DATE('%h-%d-%E4Y Week %W', CURRENT_DATE) | Jan-11-2024 Week 02 |
FORMAT_DATE('%B-%d-%y Week %W', CURRENT_DATE) | January-11-24 Week 02 |
FORMAT_DATE('%b-%d-%y Week %W', CURRENT_DATE) | Jan-11-24 Week 02 |
FORMAT_DATE('%h-%d-%y Week %W', CURRENT_DATE) | Jan-11-24 Week 02 |
FORMAT_DATE('%B-%d-%G Week %W', CURRENT_DATE) | January-11-2024 Week 02 |
FORMAT_DATE('%b-%d-%G Week %W', CURRENT_DATE) | Jan-11-2024 Week 02 |
FORMAT_DATE('%h-%d-%G Week %W', CURRENT_DATE) | Jan-11-2024 Week 02 |
FORMAT_DATE('%B-%d-%g Week %W', CURRENT_DATE) | January-11-24 Week 02 |
FORMAT_DATE('%b-%d-%g Week %W', CURRENT_DATE) | Jan-11-24 Week 02 |
FORMAT_DATE('%h-%d-%g Week %W', CURRENT_DATE) | Jan-11-24 Week 02 |
FORMAT_DATE('%m/%d/%Y Week %W', CURRENT_DATE) | 01/11/2024 Week 02 |
FORMAT_DATE('%m/%d/%E4Y Week %W', CURRENT_DATE) | 01/11/2024 Week 02 |
FORMAT_DATE('%m/%d/%y Week %W', CURRENT_DATE) | 01/11/24 Week 02 |
FORMAT_DATE('%m/%d/%G Week %W', CURRENT_DATE) | 01/11/2024 Week 02 |
FORMAT_DATE('%m/%d/%g Week %W', CURRENT_DATE) | 01/11/24 Week 02 |
FORMAT_DATE('%B/%d/%Y Week %W', CURRENT_DATE) | January/11/2024 Week 02 |
FORMAT_DATE('%b/%d/%Y Week %W', CURRENT_DATE) | Jan/11/2024 Week 02 |
FORMAT_DATE('%h/%d/%Y Week %W', CURRENT_DATE) | Jan/11/2024 Week 02 |
FORMAT_DATE('%B/%d/%E4Y Week %W', CURRENT_DATE) | January/11/2024 Week 02 |
FORMAT_DATE('%b/%d/%E4Y Week %W', CURRENT_DATE) | Jan/11/2024 Week 02 |
FORMAT_DATE('%h/%d/%E4Y Week %W', CURRENT_DATE) | Jan/11/2024 Week 02 |
FORMAT_DATE('%B/%d/%y Week %W', CURRENT_DATE) | January/11/24 Week 02 |
FORMAT_DATE('%b/%d/%y Week %W', CURRENT_DATE) | Jan/11/24 Week 02 |
FORMAT_DATE('%h/%d/%y Week %W', CURRENT_DATE) | Jan/11/24 Week 02 |
FORMAT_DATE('%B/%d/%G Week %W', CURRENT_DATE) | January/11/2024 Week 02 |
FORMAT_DATE('%b/%d/%G Week %W', CURRENT_DATE) | Jan/11/2024 Week 02 |
FORMAT_DATE('%h/%d/%G Week %W', CURRENT_DATE) | Jan/11/2024 Week 02 |
FORMAT_DATE('%B/%d/%g Week %W', CURRENT_DATE) | January/11/24 Week 02 |
FORMAT_DATE('%b/%d/%g Week %W', CURRENT_DATE) | Jan/11/24 Week 02 |
FORMAT_DATE('%h/%d/%g Week %W', CURRENT_DATE) | Jan/11/24 Week 02 |
FORMAT_DATE('%m:%d:%Y Week %W', CURRENT_DATE) | 01:11:2024 Week 02 |
FORMAT_DATE('%m:%d:%E4Y Week %W', CURRENT_DATE) | 01:11:2024 Week 02 |
FORMAT_DATE('%m:%d:%y Week %W', CURRENT_DATE) | 01:11:24 Week 02 |
FORMAT_DATE('%m:%d:%G Week %W', CURRENT_DATE) | 01:11:2024 Week 02 |
FORMAT_DATE('%m:%d:%g Week %W', CURRENT_DATE) | 01:11:24 Week 02 |
FORMAT_DATE('%B:%d:%Y Week %W', CURRENT_DATE) | January:11:2024 Week 02 |
FORMAT_DATE('%b:%d:%Y Week %W', CURRENT_DATE) | Jan:11:2024 Week 02 |
FORMAT_DATE('%h:%d:%Y Week %W', CURRENT_DATE) | Jan:11:2024 Week 02 |
FORMAT_DATE('%B:%d:%E4Y Week %W', CURRENT_DATE) | January:11:2024 Week 02 |
FORMAT_DATE('%b:%d:%E4Y Week %W', CURRENT_DATE) | Jan:11:2024 Week 02 |
FORMAT_DATE('%h:%d:%E4Y Week %W', CURRENT_DATE) | Jan:11:2024 Week 02 |
FORMAT_DATE('%B:%d:%y Week %W', CURRENT_DATE) | January:11:24 Week 02 |
FORMAT_DATE('%b:%d:%y Week %W', CURRENT_DATE) | Jan:11:24 Week 02 |
FORMAT_DATE('%h:%d:%y Week %W', CURRENT_DATE) | Jan:11:24 Week 02 |
FORMAT_DATE('%B:%d:%G Week %W', CURRENT_DATE) | January:11:2024 Week 02 |
FORMAT_DATE('%b:%d:%G Week %W', CURRENT_DATE) | Jan:11:2024 Week 02 |
FORMAT_DATE('%h:%d:%G Week %W', CURRENT_DATE) | Jan:11:2024 Week 02 |
FORMAT_DATE('%B:%d:%g Week %W', CURRENT_DATE) | January:11:24 Week 02 |
FORMAT_DATE('%b:%d:%g Week %W', CURRENT_DATE) | Jan:11:24 Week 02 |
FORMAT_DATE('%h:%d:%g Week %W', CURRENT_DATE) | Jan:11:24 Week 02 |
FORMAT_DATE('%m.%d.%Y Week %W', CURRENT_DATE) | 01.11.2024 Week 02 |
FORMAT_DATE('%m.%d.%E4Y Week %W', CURRENT_DATE) | 01.11.2024 Week 02 |
FORMAT_DATE('%m.%d.%y Week %W', CURRENT_DATE) | 01.11.24 Week 02 |
FORMAT_DATE('%m.%d.%G Week %W', CURRENT_DATE) | 01.11.2024 Week 02 |
FORMAT_DATE('%m.%d.%g Week %W', CURRENT_DATE) | 01.11.24 Week 02 |
FORMAT_DATE('%B.%d.%Y Week %W', CURRENT_DATE) | January.11.2024 Week 02 |
FORMAT_DATE('%b.%d.%Y Week %W', CURRENT_DATE) | Jan.11.2024 Week 02 |
FORMAT_DATE('%h.%d.%Y Week %W', CURRENT_DATE) | Jan.11.2024 Week 02 |
FORMAT_DATE('%B.%d.%E4Y Week %W', CURRENT_DATE) | January.11.2024 Week 02 |
FORMAT_DATE('%b.%d.%E4Y Week %W', CURRENT_DATE) | Jan.11.2024 Week 02 |
FORMAT_DATE('%h.%d.%E4Y Week %W', CURRENT_DATE) | Jan.11.2024 Week 02 |
FORMAT_DATE('%B.%d.%y Week %W', CURRENT_DATE) | January.11.24 Week 02 |
FORMAT_DATE('%b.%d.%y Week %W', CURRENT_DATE) | Jan.11.24 Week 02 |
FORMAT_DATE('%h.%d.%y Week %W', CURRENT_DATE) | Jan.11.24 Week 02 |
FORMAT_DATE('%B.%d.%G Week %W', CURRENT_DATE) | January.11.2024 Week 02 |
FORMAT_DATE('%b.%d.%G Week %W', CURRENT_DATE) | Jan.11.2024 Week 02 |
FORMAT_DATE('%h.%d.%G Week %W', CURRENT_DATE) | Jan.11.2024 Week 02 |
FORMAT_DATE('%B.%d.%g Week %W', CURRENT_DATE) | January.11.24 Week 02 |
FORMAT_DATE('%b.%d.%g Week %W', CURRENT_DATE) | Jan.11.24 Week 02 |
FORMAT_DATE('%h.%d.%g Week %W', CURRENT_DATE) | Jan.11.24 Week 02 |
FORMAT_DATE('%m %d %Y Week %W', CURRENT_DATE) | 01 11 2024 Week 02 |
FORMAT_DATE('%m %d %E4Y Week %W', CURRENT_DATE) | 01 11 2024 Week 02 |
FORMAT_DATE('%m %d %y Week %W', CURRENT_DATE) | 01 11 24 Week 02 |
FORMAT_DATE('%m %d %G Week %W', CURRENT_DATE) | 01 11 2024 Week 02 |
FORMAT_DATE('%m %d %g Week %W', CURRENT_DATE) | 01 11 24 Week 02 |
FORMAT_DATE('%B %d %Y Week %W', CURRENT_DATE) | January 11 2024 Week 02 |
FORMAT_DATE('%b %d %Y Week %W', CURRENT_DATE) | Jan 11 2024 Week 02 |
FORMAT_DATE('%h %d %Y Week %W', CURRENT_DATE) | Jan 11 2024 Week 02 |
FORMAT_DATE('%B %d %E4Y Week %W', CURRENT_DATE) | January 11 2024 Week 02 |
FORMAT_DATE('%b %d %E4Y Week %W', CURRENT_DATE) | Jan 11 2024 Week 02 |
FORMAT_DATE('%h %d %E4Y Week %W', CURRENT_DATE) | Jan 11 2024 Week 02 |
FORMAT_DATE('%B %d %y Week %W', CURRENT_DATE) | January 11 24 Week 02 |
FORMAT_DATE('%b %d %y Week %W', CURRENT_DATE) | Jan 11 24 Week 02 |
FORMAT_DATE('%h %d %y Week %W', CURRENT_DATE) | Jan 11 24 Week 02 |
FORMAT_DATE('%B %d %G Week %W', CURRENT_DATE) | January 11 2024 Week 02 |
FORMAT_DATE('%b %d %G Week %W', CURRENT_DATE) | Jan 11 2024 Week 02 |
FORMAT_DATE('%h %d %G Week %W', CURRENT_DATE) | Jan 11 2024 Week 02 |
FORMAT_DATE('%B %d %g Week %W', CURRENT_DATE) | January 11 24 Week 02 |
FORMAT_DATE('%b %d %g Week %W', CURRENT_DATE) | Jan 11 24 Week 02 |
FORMAT_DATE('%h %d %g Week %W', CURRENT_DATE) | Jan 11 24 Week 02 |
FORMAT_DATE('%m%d%Y Week %W', CURRENT_DATE) | 01112024 Week 02 |
FORMAT_DATE('%m%d%E4Y Week %W', CURRENT_DATE) | 01112024 Week 02 |
FORMAT_DATE('%m%d%y Week %W', CURRENT_DATE) | 011124 Week 02 |
FORMAT_DATE('%m%d%G Week %W', CURRENT_DATE) | 01112024 Week 02 |
FORMAT_DATE('%m%d%g Week %W', CURRENT_DATE) | 011124 Week 02 |
FORMAT_DATE('%B%d%Y Week %W', CURRENT_DATE) | January112024 Week 02 |
FORMAT_DATE('%b%d%Y Week %W', CURRENT_DATE) | Jan112024 Week 02 |
FORMAT_DATE('%h%d%Y Week %W', CURRENT_DATE) | Jan112024 Week 02 |
FORMAT_DATE('%B%d%E4Y Week %W', CURRENT_DATE) | January112024 Week 02 |
FORMAT_DATE('%b%d%E4Y Week %W', CURRENT_DATE) | Jan112024 Week 02 |
FORMAT_DATE('%h%d%E4Y Week %W', CURRENT_DATE) | Jan112024 Week 02 |
FORMAT_DATE('%B%d%y Week %W', CURRENT_DATE) | January1124 Week 02 |
FORMAT_DATE('%b%d%y Week %W', CURRENT_DATE) | Jan1124 Week 02 |
FORMAT_DATE('%h%d%y Week %W', CURRENT_DATE) | Jan1124 Week 02 |
FORMAT_DATE('%B%d%G Week %W', CURRENT_DATE) | January112024 Week 02 |
FORMAT_DATE('%b%d%G Week %W', CURRENT_DATE) | Jan112024 Week 02 |
FORMAT_DATE('%h%d%G Week %W', CURRENT_DATE) | Jan112024 Week 02 |
FORMAT_DATE('%B%d%g Week %W', CURRENT_DATE) | January1124 Week 02 |
FORMAT_DATE('%b%d%g Week %W', CURRENT_DATE) | Jan1124 Week 02 |
FORMAT_DATE('%h%d%g Week %W', CURRENT_DATE) | Jan1124 Week 02 |
FORMAT_DATE('%m-%d-%Y ISO Week %V', CURRENT_DATE) | 01-11-2024 ISO Week 02 |
FORMAT_DATE('%m-%d-%E4Y ISO Week %V', CURRENT_DATE) | 01-11-2024 ISO Week 02 |
FORMAT_DATE('%m-%d-%y ISO Week %V', CURRENT_DATE) | 01-11-24 ISO Week 02 |
FORMAT_DATE('%m-%d-%G ISO Week %V', CURRENT_DATE) | 01-11-2024 ISO Week 02 |
FORMAT_DATE('%m-%d-%g ISO Week %V', CURRENT_DATE) | 01-11-24 ISO Week 02 |
FORMAT_DATE('%B-%d-%Y ISO Week %V', CURRENT_DATE) | January-11-2024 ISO Week 02 |
FORMAT_DATE('%b-%d-%Y ISO Week %V', CURRENT_DATE) | Jan-11-2024 ISO Week 02 |
FORMAT_DATE('%h-%d-%Y ISO Week %V', CURRENT_DATE) | Jan-11-2024 ISO Week 02 |
FORMAT_DATE('%B-%d-%E4Y ISO Week %V', CURRENT_DATE) | January-11-2024 ISO Week 02 |
FORMAT_DATE('%b-%d-%E4Y ISO Week %V', CURRENT_DATE) | Jan-11-2024 ISO Week 02 |
FORMAT_DATE('%h-%d-%E4Y ISO Week %V', CURRENT_DATE) | Jan-11-2024 ISO Week 02 |
FORMAT_DATE('%B-%d-%y ISO Week %V', CURRENT_DATE) | January-11-24 ISO Week 02 |
FORMAT_DATE('%b-%d-%y ISO Week %V', CURRENT_DATE) | Jan-11-24 ISO Week 02 |
FORMAT_DATE('%h-%d-%y ISO Week %V', CURRENT_DATE) | Jan-11-24 ISO Week 02 |
FORMAT_DATE('%B-%d-%G ISO Week %V', CURRENT_DATE) | January-11-2024 ISO Week 02 |
FORMAT_DATE('%b-%d-%G ISO Week %V', CURRENT_DATE) | Jan-11-2024 ISO Week 02 |
FORMAT_DATE('%h-%d-%G ISO Week %V', CURRENT_DATE) | Jan-11-2024 ISO Week 02 |
FORMAT_DATE('%B-%d-%g ISO Week %V', CURRENT_DATE) | January-11-24 ISO Week 02 |
FORMAT_DATE('%b-%d-%g ISO Week %V', CURRENT_DATE) | Jan-11-24 ISO Week 02 |
FORMAT_DATE('%h-%d-%g ISO Week %V', CURRENT_DATE) | Jan-11-24 ISO Week 02 |
FORMAT_DATE('%m/%d/%Y ISO Week %V', CURRENT_DATE) | 01/11/2024 ISO Week 02 |
FORMAT_DATE('%m/%d/%E4Y ISO Week %V', CURRENT_DATE) | 01/11/2024 ISO Week 02 |
FORMAT_DATE('%m/%d/%y ISO Week %V', CURRENT_DATE) | 01/11/24 ISO Week 02 |
FORMAT_DATE('%m/%d/%G ISO Week %V', CURRENT_DATE) | 01/11/2024 ISO Week 02 |
FORMAT_DATE('%m/%d/%g ISO Week %V', CURRENT_DATE) | 01/11/24 ISO Week 02 |
FORMAT_DATE('%B/%d/%Y ISO Week %V', CURRENT_DATE) | January/11/2024 ISO Week 02 |
FORMAT_DATE('%b/%d/%Y ISO Week %V', CURRENT_DATE) | Jan/11/2024 ISO Week 02 |
FORMAT_DATE('%h/%d/%Y ISO Week %V', CURRENT_DATE) | Jan/11/2024 ISO Week 02 |
FORMAT_DATE('%B/%d/%E4Y ISO Week %V', CURRENT_DATE) | January/11/2024 ISO Week 02 |
FORMAT_DATE('%b/%d/%E4Y ISO Week %V', CURRENT_DATE) | Jan/11/2024 ISO Week 02 |
FORMAT_DATE('%h/%d/%E4Y ISO Week %V', CURRENT_DATE) | Jan/11/2024 ISO Week 02 |
FORMAT_DATE('%B/%d/%y ISO Week %V', CURRENT_DATE) | January/11/24 ISO Week 02 |
FORMAT_DATE('%b/%d/%y ISO Week %V', CURRENT_DATE) | Jan/11/24 ISO Week 02 |
FORMAT_DATE('%h/%d/%y ISO Week %V', CURRENT_DATE) | Jan/11/24 ISO Week 02 |
FORMAT_DATE('%B/%d/%G ISO Week %V', CURRENT_DATE) | January/11/2024 ISO Week 02 |
FORMAT_DATE('%b/%d/%G ISO Week %V', CURRENT_DATE) | Jan/11/2024 ISO Week 02 |
FORMAT_DATE('%h/%d/%G ISO Week %V', CURRENT_DATE) | Jan/11/2024 ISO Week 02 |
FORMAT_DATE('%B/%d/%g ISO Week %V', CURRENT_DATE) | January/11/24 ISO Week 02 |
FORMAT_DATE('%b/%d/%g ISO Week %V', CURRENT_DATE) | Jan/11/24 ISO Week 02 |
FORMAT_DATE('%h/%d/%g ISO Week %V', CURRENT_DATE) | Jan/11/24 ISO Week 02 |
FORMAT_DATE('%m:%d:%Y ISO Week %V', CURRENT_DATE) | 01:11:2024 ISO Week 02 |
FORMAT_DATE('%m:%d:%E4Y ISO Week %V', CURRENT_DATE) | 01:11:2024 ISO Week 02 |
FORMAT_DATE('%m:%d:%y ISO Week %V', CURRENT_DATE) | 01:11:24 ISO Week 02 |
FORMAT_DATE('%m:%d:%G ISO Week %V', CURRENT_DATE) | 01:11:2024 ISO Week 02 |
FORMAT_DATE('%m:%d:%g ISO Week %V', CURRENT_DATE) | 01:11:24 ISO Week 02 |
FORMAT_DATE('%B:%d:%Y ISO Week %V', CURRENT_DATE) | January:11:2024 ISO Week 02 |
FORMAT_DATE('%b:%d:%Y ISO Week %V', CURRENT_DATE) | Jan:11:2024 ISO Week 02 |
FORMAT_DATE('%h:%d:%Y ISO Week %V', CURRENT_DATE) | Jan:11:2024 ISO Week 02 |
FORMAT_DATE('%B:%d:%E4Y ISO Week %V', CURRENT_DATE) | January:11:2024 ISO Week 02 |
FORMAT_DATE('%b:%d:%E4Y ISO Week %V', CURRENT_DATE) | Jan:11:2024 ISO Week 02 |
FORMAT_DATE('%h:%d:%E4Y ISO Week %V', CURRENT_DATE) | Jan:11:2024 ISO Week 02 |
FORMAT_DATE('%B:%d:%y ISO Week %V', CURRENT_DATE) | January:11:24 ISO Week 02 |
FORMAT_DATE('%b:%d:%y ISO Week %V', CURRENT_DATE) | Jan:11:24 ISO Week 02 |
FORMAT_DATE('%h:%d:%y ISO Week %V', CURRENT_DATE) | Jan:11:24 ISO Week 02 |
FORMAT_DATE('%B:%d:%G ISO Week %V', CURRENT_DATE) | January:11:2024 ISO Week 02 |
FORMAT_DATE('%b:%d:%G ISO Week %V', CURRENT_DATE) | Jan:11:2024 ISO Week 02 |
FORMAT_DATE('%h:%d:%G ISO Week %V', CURRENT_DATE) | Jan:11:2024 ISO Week 02 |
FORMAT_DATE('%B:%d:%g ISO Week %V', CURRENT_DATE) | January:11:24 ISO Week 02 |
FORMAT_DATE('%b:%d:%g ISO Week %V', CURRENT_DATE) | Jan:11:24 ISO Week 02 |
FORMAT_DATE('%h:%d:%g ISO Week %V', CURRENT_DATE) | Jan:11:24 ISO Week 02 |
FORMAT_DATE('%m.%d.%Y ISO Week %V', CURRENT_DATE) | 01.11.2024 ISO Week 02 |
FORMAT_DATE('%m.%d.%E4Y ISO Week %V', CURRENT_DATE) | 01.11.2024 ISO Week 02 |
FORMAT_DATE('%m.%d.%y ISO Week %V', CURRENT_DATE) | 01.11.24 ISO Week 02 |
FORMAT_DATE('%m.%d.%G ISO Week %V', CURRENT_DATE) | 01.11.2024 ISO Week 02 |
FORMAT_DATE('%m.%d.%g ISO Week %V', CURRENT_DATE) | 01.11.24 ISO Week 02 |
FORMAT_DATE('%B.%d.%Y ISO Week %V', CURRENT_DATE) | January.11.2024 ISO Week 02 |
FORMAT_DATE('%b.%d.%Y ISO Week %V', CURRENT_DATE) | Jan.11.2024 ISO Week 02 |
FORMAT_DATE('%h.%d.%Y ISO Week %V', CURRENT_DATE) | Jan.11.2024 ISO Week 02 |
FORMAT_DATE('%B.%d.%E4Y ISO Week %V', CURRENT_DATE) | January.11.2024 ISO Week 02 |
FORMAT_DATE('%b.%d.%E4Y ISO Week %V', CURRENT_DATE) | Jan.11.2024 ISO Week 02 |
FORMAT_DATE('%h.%d.%E4Y ISO Week %V', CURRENT_DATE) | Jan.11.2024 ISO Week 02 |
FORMAT_DATE('%B.%d.%y ISO Week %V', CURRENT_DATE) | January.11.24 ISO Week 02 |
FORMAT_DATE('%b.%d.%y ISO Week %V', CURRENT_DATE) | Jan.11.24 ISO Week 02 |
FORMAT_DATE('%h.%d.%y ISO Week %V', CURRENT_DATE) | Jan.11.24 ISO Week 02 |
FORMAT_DATE('%B.%d.%G ISO Week %V', CURRENT_DATE) | January.11.2024 ISO Week 02 |
FORMAT_DATE('%b.%d.%G ISO Week %V', CURRENT_DATE) | Jan.11.2024 ISO Week 02 |
FORMAT_DATE('%h.%d.%G ISO Week %V', CURRENT_DATE) | Jan.11.2024 ISO Week 02 |
FORMAT_DATE('%B.%d.%g ISO Week %V', CURRENT_DATE) | January.11.24 ISO Week 02 |
FORMAT_DATE('%b.%d.%g ISO Week %V', CURRENT_DATE) | Jan.11.24 ISO Week 02 |
FORMAT_DATE('%h.%d.%g ISO Week %V', CURRENT_DATE) | Jan.11.24 ISO Week 02 |
FORMAT_DATE('%m %d %Y ISO Week %V', CURRENT_DATE) | 01 11 2024 ISO Week 02 |
FORMAT_DATE('%m %d %E4Y ISO Week %V', CURRENT_DATE) | 01 11 2024 ISO Week 02 |
FORMAT_DATE('%m %d %y ISO Week %V', CURRENT_DATE) | 01 11 24 ISO Week 02 |
FORMAT_DATE('%m %d %G ISO Week %V', CURRENT_DATE) | 01 11 2024 ISO Week 02 |
FORMAT_DATE('%m %d %g ISO Week %V', CURRENT_DATE) | 01 11 24 ISO Week 02 |
FORMAT_DATE('%B %d %Y ISO Week %V', CURRENT_DATE) | January 11 2024 ISO Week 02 |
FORMAT_DATE('%b %d %Y ISO Week %V', CURRENT_DATE) | Jan 11 2024 ISO Week 02 |
FORMAT_DATE('%h %d %Y ISO Week %V', CURRENT_DATE) | Jan 11 2024 ISO Week 02 |
FORMAT_DATE('%B %d %E4Y ISO Week %V', CURRENT_DATE) | January 11 2024 ISO Week 02 |
FORMAT_DATE('%b %d %E4Y ISO Week %V', CURRENT_DATE) | Jan 11 2024 ISO Week 02 |
FORMAT_DATE('%h %d %E4Y ISO Week %V', CURRENT_DATE) | Jan 11 2024 ISO Week 02 |
FORMAT_DATE('%B %d %y ISO Week %V', CURRENT_DATE) | January 11 24 ISO Week 02 |
FORMAT_DATE('%b %d %y ISO Week %V', CURRENT_DATE) | Jan 11 24 ISO Week 02 |
FORMAT_DATE('%h %d %y ISO Week %V', CURRENT_DATE) | Jan 11 24 ISO Week 02 |
FORMAT_DATE('%B %d %G ISO Week %V', CURRENT_DATE) | January 11 2024 ISO Week 02 |
FORMAT_DATE('%b %d %G ISO Week %V', CURRENT_DATE) | Jan 11 2024 ISO Week 02 |
FORMAT_DATE('%h %d %G ISO Week %V', CURRENT_DATE) | Jan 11 2024 ISO Week 02 |
FORMAT_DATE('%B %d %g ISO Week %V', CURRENT_DATE) | January 11 24 ISO Week 02 |
FORMAT_DATE('%b %d %g ISO Week %V', CURRENT_DATE) | Jan 11 24 ISO Week 02 |
FORMAT_DATE('%h %d %g ISO Week %V', CURRENT_DATE) | Jan 11 24 ISO Week 02 |
FORMAT_DATE('%m%d%Y ISO Week %V', CURRENT_DATE) | 01112024 ISO Week 02 |
FORMAT_DATE('%m%d%E4Y ISO Week %V', CURRENT_DATE) | 01112024 ISO Week 02 |
FORMAT_DATE('%m%d%y ISO Week %V', CURRENT_DATE) | 011124 ISO Week 02 |
FORMAT_DATE('%m%d%G ISO Week %V', CURRENT_DATE) | 01112024 ISO Week 02 |
FORMAT_DATE('%m%d%g ISO Week %V', CURRENT_DATE) | 011124 ISO Week 02 |
FORMAT_DATE('%B%d%Y ISO Week %V', CURRENT_DATE) | January112024 ISO Week 02 |
FORMAT_DATE('%b%d%Y ISO Week %V', CURRENT_DATE) | Jan112024 ISO Week 02 |
FORMAT_DATE('%h%d%Y ISO Week %V', CURRENT_DATE) | Jan112024 ISO Week 02 |
FORMAT_DATE('%B%d%E4Y ISO Week %V', CURRENT_DATE) | January112024 ISO Week 02 |
FORMAT_DATE('%b%d%E4Y ISO Week %V', CURRENT_DATE) | Jan112024 ISO Week 02 |
FORMAT_DATE('%h%d%E4Y ISO Week %V', CURRENT_DATE) | Jan112024 ISO Week 02 |
FORMAT_DATE('%B%d%y ISO Week %V', CURRENT_DATE) | January1124 ISO Week 02 |
FORMAT_DATE('%b%d%y ISO Week %V', CURRENT_DATE) | Jan1124 ISO Week 02 |
FORMAT_DATE('%h%d%y ISO Week %V', CURRENT_DATE) | Jan1124 ISO Week 02 |
FORMAT_DATE('%B%d%G ISO Week %V', CURRENT_DATE) | January112024 ISO Week 02 |
FORMAT_DATE('%b%d%G ISO Week %V', CURRENT_DATE) | Jan112024 ISO Week 02 |
FORMAT_DATE('%h%d%G ISO Week %V', CURRENT_DATE) | Jan112024 ISO Week 02 |
FORMAT_DATE('%B%d%g ISO Week %V', CURRENT_DATE) | January1124 ISO Week 02 |
FORMAT_DATE('%b%d%g ISO Week %V', CURRENT_DATE) | Jan1124 ISO Week 02 |
FORMAT_DATE('%h%d%g ISO Week %V', CURRENT_DATE) | Jan1124 ISO Week 02 |
FORMAT_DATE('%A %B %d, %Y', CURRENT_DATE) | Thursday January 11, 2024 |
FORMAT_DATE('%a %B %d, %Y', CURRENT_DATE) | Thu January 11, 2024 |
FORMAT_DATE('%A %b %d, %Y', CURRENT_DATE) | Thursday Jan 11, 2024 |
FORMAT_DATE('%a %b %d, %Y', CURRENT_DATE) | Thu Jan 11, 2024 |
FORMAT_DATE('%A %B %e, %Y', CURRENT_DATE) | Thursday January 11, 2024 |
FORMAT_DATE('%a %B %e, %Y', CURRENT_DATE) | Thu January 11, 2024 |
FORMAT_DATE('%A %b %e, %Y', CURRENT_DATE) | Thursday Jan 11, 2024 |
FORMAT_DATE('%a %b %e, %Y', CURRENT_DATE) | Thu Jan 11, 2024 |
FORMAT_DATE('%A %B %d, %y', CURRENT_DATE) | Thursday January 11, 24 |
FORMAT_DATE('%a %B %d, %y', CURRENT_DATE) | Thu January 11, 24 |
FORMAT_DATE('%A %b %d, %y', CURRENT_DATE) | Thursday Jan 11, 24 |
FORMAT_DATE('%a %b %d, %y', CURRENT_DATE) | Thu Jan 11, 24 |
FORMAT_DATE('%A %B %e, %y', CURRENT_DATE) | Thursday January 11, 24 |
FORMAT_DATE('%a %B %e, %y', CURRENT_DATE) | Thu January 11, 24 |
FORMAT_DATE('%A %b %e, %y', CURRENT_DATE) | Thursday Jan 11, 24 |
FORMAT_DATE('%a %b %e, %y', CURRENT_DATE) | Thu Jan 11, 24 |
FORMAT_DATE('%A %B %d, %E4Y', CURRENT_DATE) | Thursday January 11, 2024 |
FORMAT_DATE('%a %B %d, %E4Y', CURRENT_DATE) | Thu January 11, 2024 |
FORMAT_DATE('%A %b %d, %E4Y', CURRENT_DATE) | Thursday Jan 11, 2024 |
FORMAT_DATE('%a %b %d, %E4Y', CURRENT_DATE) | Thu Jan 11, 2024 |
FORMAT_DATE('%A %B %e, %E4Y', CURRENT_DATE) | Thursday January 11, 2024 |
FORMAT_DATE('%a %B %e, %E4Y', CURRENT_DATE) | Thu January 11, 2024 |
FORMAT_DATE('%A %b %e, %E4Y', CURRENT_DATE) | Thursday Jan 11, 2024 |
FORMAT_DATE('%a %b %e, %E4Y', CURRENT_DATE) | Thu Jan 11, 2024 |
FORMAT_DATE('%A %B %d, %G', CURRENT_DATE) | Thursday January 11, 2024 |
FORMAT_DATE('%a %B %d, %G', CURRENT_DATE) | Thu January 11, 2024 |
FORMAT_DATE('%A %b %d, %G', CURRENT_DATE) | Thursday Jan 11, 2024 |
FORMAT_DATE('%a %b %d, %G', CURRENT_DATE) | Thu Jan 11, 2024 |
FORMAT_DATE('%A %B %e, %G', CURRENT_DATE) | Thursday January 11, 2024 |
FORMAT_DATE('%a %B %e, %G', CURRENT_DATE) | Thu January 11, 2024 |
FORMAT_DATE('%A %b %e, %G', CURRENT_DATE) | Thursday Jan 11, 2024 |
FORMAT_DATE('%a %b %e, %G', CURRENT_DATE) | Thu Jan 11, 2024 |
FORMAT_DATE('%A %B %d, %g', CURRENT_DATE) | Thursday January 11, 24 |
FORMAT_DATE('%a %B %d, %g', CURRENT_DATE) | Thu January 11, 24 |
FORMAT_DATE('%A %b %d, %g', CURRENT_DATE) | Thursday Jan 11, 24 |
FORMAT_DATE('%a %b %d, %g', CURRENT_DATE) | Thu Jan 11, 24 |
FORMAT_DATE('%A %B %e, %g', CURRENT_DATE) | Thursday January 11, 24 |
FORMAT_DATE('%a %B %e, %g', CURRENT_DATE) | Thu January 11, 24 |
FORMAT_DATE('%A %b %e, %g', CURRENT_DATE) | Thursday Jan 11, 24 |
FORMAT_DATE('%a %b %e, %g', CURRENT_DATE) | Thu Jan 11, 24 |
DATE '2024-12-31' as TODAYS_DATE | 2024-12-31 |
FORMAT_DATE('%A', DATE '2024-12-31') AS FULL_WEEK_NAME -- The full weekday name | Tuesday |
FORMAT_DATE('%a', DATE '2024-12-31') AS ABB_WEEK_NAME -- The abbreviated weekday name | Tue |
FORMAT_DATE('%B', DATE '2024-12-31') AS FULL_MNTH_NAME -- The full month name | December |
FORMAT_DATE('%b', DATE '2024-12-31') AS ABB_MNTH_NAME -- The abbreviated month name | Dec |
FORMAT_DATE('%h', DATE '2024-12-31') AS ABB_MNTH_NAME2 -- The abbreviated month name | Dec |
FORMAT_DATE('%C', DATE '2024-12-31') AS CNTRY_YR_DIV_100 -- The century (a year divided by 100 and truncated to an integer) number (00-99) | 20 |
FORMAT_DATE('%D', DATE '2024-12-31') AS MMDDYY -- The date in the format %m/%d/%y | 12/31/24 |
FORMAT_DATE('%d', DATE '2024-12-31') AS DAY_OF_MNTH_01_31 -- The day of the month as a decimal number (01-31) | 31 |
FORMAT_DATE('%e', DATE '2024-12-31') AS DAY_OF_MNTH_1_31-- The day of month as a decimal number (1-31); single digits preceded by a space | 31 |
FORMAT_DATE('%F', DATE '2024-12-31') AS YYYY_MM_DD -- The date in the format %Y-%m-%d. | 2024-12-31 |
FORMAT_DATE('%G', DATE '2024-12-31') AS ISO_YYYY -- The ISO 8601 year with century as a decimal number | 2025 |
FORMAT_DATE('%g', DATE '2024-12-31') AS ISO_YY -- The ISO 8601 year without century as a decimal number (00-99) | 25 |
FORMAT_DATE('%j', DATE '2024-12-31') AS DAY_OF_YR_001_366 -- The day of the year as a decimal number (001-366) | 366 |
FORMAT_DATE('%m', DATE '2024-12-31') AS MONTH_01_31 -- The month as a decimal number (01-12) | 12 |
FORMAT_DATE('%n', DATE '2024-12-31') AS NEWLINE -- A newline character | |
FORMAT_DATE('%Q', DATE '2024-12-31') AS QTR_1_4 -- The quarter as a decimal number (1-4) | 4 |
FORMAT_DATE('%t', DATE '2024-12-31') AS TAB -- A tab character | |
FORMAT_DATE('%U', DATE '2024-12-31') AS WK_NUM_YR_SUN_FIRST -- The week number of the year (Sunday as the first day of the week) | 52 |
FORMAT_DATE('%u', DATE '2024-12-31') AS WK_DAY_1_7_Mon_First -- The weekday (Monday as the first day of the week) as a decimal number (1-7) | 2 |
FORMAT_DATE('%V', DATE '2024-12-31') AS ISO_WK_NUM_YR_MON_FIRST -- The ISO 8601-week number of the year (Monday as the first day of the week) | 01 |
FORMAT_DATE('%W', DATE '2024-12-31') AS WK_NUM_YR_MON_FIRST -- The week number of the year (Monday as the first day of the week) | 53 |
FORMAT_DATE('%w', DATE '2024-12-31') AS WK_DAY_SUN_FIRST_0_6 -- The weekday (Sunday as the first day of the week) as a decimal number (0-6) | 2 |
FORMAT_DATE('%x', DATE '2024-12-31') AS MM_DD_YY -- The date representation in MM/DD/YY format | 12/31/24 |
FORMAT_DATE('%Y', DATE '2024-12-31') AS YR_YYYY -- The year with century as a decimal number | 2024 |
FORMAT_DATE('%y', DATE '2024-12-31') AS YR_YY -- The year without century as a decimal number (00-99) | 24 |
FORMAT_DATE('%E4Y', DATE '2024-12-31') AS YYYY_0001_9999 -- Four-character years (0001 ... 9999) | 2024 |
FORMAT_DATE('%H', TIMESTAMP '2024-12-31 17:30:22.123456') AS HOUR_24 -- Time and Timestamp Hour (00-23) | 17 |
FORMAT_DATE('%I', TIMESTAMP '2024-12-31 17:30:22.123456') AS HOUR_12 -- Time and Timestamp Hour (01-12) | 05 |
FORMAT_DATE('%M', TIMESTAMP '2024-12-31 17:30:22.123456') AS MIN_TS_TIME -- Time and Timestamp Minute (00-59) | 30 |
FORMAT_DATE('%S', TIMESTAMP '2024-12-31 17:30:22.123456') AS SEC_TS_TIME -- Time and Timestamp Second (00-59) | 22 |
FORMAT_DATE('%P', TIMESTAMP '2024-12-31 17:30:22.123456') AS AM_OR_PM -- Time and Timestamp AM or PM | pm |
FORMAT_DATE('%Y-%m', DATE '2024-12-31') as YYYYMM | 2024-12 |
FORMAT_DATE('%E4Y-%m', DATE '2024-12-31') as YYYYMM2 | 2024-12 |
FORMAT_DATE('%y-%m', DATE '2024-12-31') as YYMM | 24-12 |
FORMAT_DATE('%G-%m', DATE '2024-12-31') as IYYYMM | 2025-12 |
FORMAT_DATE('%g-%m', DATE '2024-12-31') as IYMM | 25-12 |
FORMAT_DATE('%Y-%B', DATE '2024-12-31') as YYYYMONTH | 2024-December |
FORMAT_DATE('%E4Y-%B', DATE '2024-12-31') as YYYYMONTH2 | 2024-December |
FORMAT_DATE('%y-%B', DATE '2024-12-31') as YYMONTH | 24-December |
FORMAT_DATE('%G-%B', DATE '2024-12-31') as IYYYMONTH | 2025-December |
FORMAT_DATE('%g-%B', DATE '2024-12-31') as IYMONTH | 25-December |
FORMAT_DATE('%Y-%b', DATE '2024-12-31') as YYYYMON | 2024-Dec |
FORMAT_DATE('%E4Y-%b', DATE '2024-12-31') as YYYYMON2 | 2024-Dec |
FORMAT_DATE('%y-%b', DATE '2024-12-31') as YYMON | 24-Dec |
FORMAT_DATE('%G-%b', DATE '2024-12-31') as IYYYMON | 2025-Dec |
FORMAT_DATE('%g-%b', DATE '2024-12-31') as IYMON | 25-Dec |
FORMAT_DATE('%Y-%h', DATE '2024-12-31') as YYYYMON2 | 2024-Dec |
FORMAT_DATE('%E4Y-%h', DATE '2024-12-31') as YYYYMON3 | 2024-Dec |
FORMAT_DATE('%y-%h', DATE '2024-12-31') as YYMON2 | 24-Dec |
FORMAT_DATE('%G-%h', DATE '2024-12-31') as IYYYMON2 | 2025-Dec |
FORMAT_DATE('%g-%h', DATE '2024-12-31') as IYMON2 | 25-Dec |
FORMAT_DATE('%m-%Y', DATE '2024-12-31') as MMYYYY | 12-2024 |
FORMAT_DATE('%m-%E4Y', DATE '2024-12-31') as MM2YYYY | 12-2024 |
FORMAT_DATE('%m-%y', DATE '2024-12-31') as MMYY | 12-24 |
FORMAT_DATE('%m-%G', DATE '2024-12-31') as MMIYYY | 12-2025 |
FORMAT_DATE('%m-%g', DATE '2024-12-31') as MMIY | 12-25 |
FORMAT_DATE('%B-%Y', DATE '2024-12-31') as MONTHYYYY | December-2024 |
FORMAT_DATE('%B-%E4Y', DATE '2024-12-31') as MONTH2YYYY | December-2024 |
FORMAT_DATE('%B%y', DATE '2024-12-31') as MONTHYY | December24 |
FORMAT_DATE('%B-%G', DATE '2024-12-31') as MONTHIYYY | December-2025 |
FORMAT_DATE('%B-%g', DATE '2024-12-31') as MONTHIY | December-25 |
FORMAT_DATE('%b-%Y', DATE '2024-12-31') as MONYYYY | Dec-2024 |
FORMAT_DATE('%b-%E4Y', DATE '2024-12-31') as MON2YYYY | Dec-2024 |
FORMAT_DATE('%b-%y', DATE '2024-12-31') as MONYY | Dec-24 |
FORMAT_DATE('%b-%G', DATE '2024-12-31') as MONIYYY | Dec-2025 |
FORMAT_DATE('%b-%g', DATE '2024-12-31') as MONIY | Dec-25 |
FORMAT_DATE('%h-%Y', DATE '2024-12-31') as MON2YYYY | Dec-2024 |
FORMAT_DATE('%h-%E4Y', DATE '2024-12-31') as MON3YYYY | Dec-2024 |
FORMAT_DATE('%h-%y', DATE '2024-12-31') as MON2YY | Dec-24 |
FORMAT_DATE('%h-%G', DATE '2024-12-31') as MON2IYYY | Dec-2025 |
FORMAT_DATE('%h-%g', DATE '2024-12-31') as MON2IY | Dec-25 |
FORMAT_DATE('%m-%d', DATE '2024-12-31') as MM_DD_01_31 | 12-31 |
FORMAT_DATE('%m-%e', DATE '2024-12-31') as MM_D_1_31 | 12-31 |
FORMAT_DATE('%B-%d', DATE '2024-12-31') as MONTH_DD_01_31 | December-31 |
FORMAT_DATE('%B-%e', DATE '2024-12-31') as MONTH_D_1_31 | December-31 |
FORMAT_DATE('%b-%d', DATE '2024-12-31') as MON_DD_01_31 | Dec-31 |
FORMAT_DATE('%b-%e', DATE '2024-12-31') as MON_D_1_31 | Dec-31 |
FORMAT_DATE('%h-%d', DATE '2024-12-31') as MON2_DD_01_31 | Dec-31 |
FORMAT_DATE('%h-%e', DATE '2024-12-31') as MON2_D_1_31 | Dec-31 |
FORMAT_DATE('%d-%m', DATE '2024-12-31') as DD_01_31_MM | 31-12 |
FORMAT_DATE('%e-%m', DATE '2024-12-31') as D_1_31_MM | 31-12 |
FORMAT_DATE('%d-%B', DATE '2024-12-31') as DD_01_31_MONTH | 31-December |
FORMAT_DATE('%e-%B', DATE '2024-12-31') as D_1_31_MONTH | 31-December |
FORMAT_DATE('%d-%b', DATE '2024-12-31') as DD_01_31_MON | 31-Dec |
FORMAT_DATE('%e-%b', DATE '2024-12-31') as D_1_31_MON | 31-Dec |
FORMAT_DATE('%d-%h', DATE '2024-12-31') as DD_01_31_MON2 | 31-Dec |
FORMAT_DATE('%e-%h', DATE '2024-12-31') as D_1_31_MON2 | 31-Dec |
FORMAT_DATE('%Y/%m', DATE '2024-12-31') as YYYYMM_S | 2024/12 |
FORMAT_DATE('%E4Y/%m', DATE '2024-12-31') as YYYYMM2_S | 2024/12 |
FORMAT_DATE('%y/%m', DATE '2024-12-31') as YYMM_S | 24/12 |
FORMAT_DATE('%G/%m', DATE '2024-12-31') as IYYYMM_S | 2025/12 |
FORMAT_DATE('%g/%m', DATE '2024-12-31') as IYMM_S | 25/12 |
FORMAT_DATE('%Y/%B', DATE '2024-12-31') as YYYYMONTH_S | 2024/December |
FORMAT_DATE('%E4Y/%B', DATE '2024-12-31') as YYYYMONTH2_S | 2024/December |
FORMAT_DATE('%y/%B', DATE '2024-12-31') as YYMONTH_S | 24/December |
FORMAT_DATE('%G/%B', DATE '2024-12-31') as IYYYMONTH_S | 2025/December |
FORMAT_DATE('%g/%B', DATE '2024-12-31') as IYMONTH_S | 25/December |
FORMAT_DATE('%Y/%b', DATE '2024-12-31') as YYYYMON_S | 2024/Dec |
FORMAT_DATE('%E4Y/%b', DATE '2024-12-31') as YYYYMON2_S | 2024/Dec |
FORMAT_DATE('%y/%b', DATE '2024-12-31') as YYMON_S | 24/Dec |
FORMAT_DATE('%G/%b', DATE '2024-12-31') as IYYYMON_S | 2025/Dec |
FORMAT_DATE('%g/%b', DATE '2024-12-31') as IYMON_S | 25/Dec |
FORMAT_DATE('%Y/%h', DATE '2024-12-31') as YYYYMON2_S | 2024/Dec |
FORMAT_DATE('%E4Y/%h', DATE '2024-12-31') as YYYYMON3_S | 2024/Dec |
FORMAT_DATE('%y/%h', DATE '2024-12-31') as YYMON2_S | 24/Dec |
FORMAT_DATE('%G/%h', DATE '2024-12-31') as IYYYMON2_S | 2025/Dec |
FORMAT_DATE('%g/%h', DATE '2024-12-31') as IYMON2_S | 25/Dec |
FORMAT_DATE('%m/%Y', DATE '2024-12-31') as MMYYYY_S | 12/2024 |
FORMAT_DATE('%m/%E4Y', DATE '2024-12-31') as MM2YYYY_S | 12/2024 |
FORMAT_DATE('%m/%y', DATE '2024-12-31') as MMYY_S | 12/24 |
FORMAT_DATE('%m/%G', DATE '2024-12-31') as MMIYYY_S | 12/2025 |
FORMAT_DATE('%m/%g', DATE '2024-12-31') as MMIY_S | 12/25 |
FORMAT_DATE('%B/%Y', DATE '2024-12-31') as MONTHYYYY_S | December/2024 |
FORMAT_DATE('%B/%E4Y', DATE '2024-12-31') as MONTH2YYYY_S | December/2024 |
FORMAT_DATE('%B%y', DATE '2024-12-31') as MONTHYY_S | December24 |
FORMAT_DATE('%B/%G', DATE '2024-12-31') as MONTHIYYY_S | December/2025 |
FORMAT_DATE('%B/%g', DATE '2024-12-31') as MONTHIY_S | December/25 |
FORMAT_DATE('%b/%Y', DATE '2024-12-31') as MONYYYY_S | Dec/2024 |
FORMAT_DATE('%b/%E4Y', DATE '2024-12-31') as MON2YYYY_S | Dec/2024 |
FORMAT_DATE('%b/%y', DATE '2024-12-31') as MONYY_S | Dec/24 |
FORMAT_DATE('%b/%G', DATE '2024-12-31') as MONIYYY_S | Dec/2025 |
FORMAT_DATE('%b/%g', DATE '2024-12-31') as MONIY_S | Dec/25 |
FORMAT_DATE('%h/%Y', DATE '2024-12-31') as MON2YYYY_S | Dec/2024 |
FORMAT_DATE('%h/%E4Y', DATE '2024-12-31') as MON3YYYY_S | Dec/2024 |
FORMAT_DATE('%h/%y', DATE '2024-12-31') as MON2YY_S | Dec/24 |
FORMAT_DATE('%h/%G', DATE '2024-12-31') as MON2IYYY_S | Dec/2025 |
FORMAT_DATE('%h/%g', DATE '2024-12-31') as MON2IY_S | Dec/25 |
FORMAT_DATE('%m/%d', DATE '2024-12-31') as MM_DD_01_31_S | 12/31 |
FORMAT_DATE('%m/%e', DATE '2024-12-31') as MM_D_1_31_S | 12/31 |
FORMAT_DATE('%B/%d', DATE '2024-12-31') as MONTH_DD_01_31_S | December/31 |
FORMAT_DATE('%B/%e', DATE '2024-12-31') as MONTH_D_1_31_S | December/31 |
FORMAT_DATE('%b/%d', DATE '2024-12-31') as MON_DD_01_31_S | Dec/31 |
FORMAT_DATE('%b/%e', DATE '2024-12-31') as MON_D_1_31_S | Dec/31 |
FORMAT_DATE('%h/%d', DATE '2024-12-31') as MON2_DD_01_31_S | Dec/31 |
FORMAT_DATE('%h/%e', DATE '2024-12-31') as MON2_D_1_31_S | Dec/31 |
FORMAT_DATE('%d/%m', DATE '2024-12-31') as DD_01_31_MM_S | 31/12 |
FORMAT_DATE('%e/%m', DATE '2024-12-31') as D_1_31_MM_S | 31/12 |
FORMAT_DATE('%d/%B', DATE '2024-12-31') as DD_01_31_MONTH_S | 31/December |
FORMAT_DATE('%e/%B', DATE '2024-12-31') as D_1_31_MONTH_S | 31/December |
FORMAT_DATE('%d/%b', DATE '2024-12-31') as DD_01_31_MON_S | 31/Dec |
FORMAT_DATE('%e/%b', DATE '2024-12-31') as D_1_31_MON_S | 31/Dec |
FORMAT_DATE('%d/%h', DATE '2024-12-31') as DD_01_31_MON2_S | 31/Dec |
FORMAT_DATE('%e/%h', DATE '2024-12-31') as D_1_31_MON2_S | 31/Dec |
FORMAT_DATE('%Y:%m', DATE '2024-12-31') as YYYYMM_C | 2024:12 |
FORMAT_DATE('%E4Y:%m', DATE '2024-12-31') as YYYYMM2_C | 2024:12 |
FORMAT_DATE('%y:%m', DATE '2024-12-31') as YYMM_C | 24:12 |
FORMAT_DATE('%G:%m', DATE '2024-12-31') as IYYYMM_C | 2025:12 |
FORMAT_DATE('%g:%m', DATE '2024-12-31') as IYMM_C | 25:12 |
FORMAT_DATE('%Y:%B', DATE '2024-12-31') as YYYYMONTH_C | 2024:December |
FORMAT_DATE('%E4Y:%B', DATE '2024-12-31') as YYYYMONTH2_C | 2024:December |
FORMAT_DATE('%y:%B', DATE '2024-12-31') as YYMONTH_C | 24:December |
FORMAT_DATE('%G:%B', DATE '2024-12-31') as IYYYMONTH_C | 2025:December |
FORMAT_DATE('%g:%B', DATE '2024-12-31') as IYMONTH_C | 25:December |
FORMAT_DATE('%Y:%b', DATE '2024-12-31') as YYYYMON_C | 2024:Dec |
FORMAT_DATE('%E4Y:%b', DATE '2024-12-31') as YYYYMON2_C | 2024:Dec |
FORMAT_DATE('%y:%b', DATE '2024-12-31') as YYMON_C | 24:Dec |
FORMAT_DATE('%G:%b', DATE '2024-12-31') as IYYYMON_C | 2025:Dec |
FORMAT_DATE('%g:%b', DATE '2024-12-31') as IYMON_C | 25:Dec |
FORMAT_DATE('%Y:%h', DATE '2024-12-31') as YYYYMON2_C | 2024:Dec |
FORMAT_DATE('%E4Y:%h', DATE '2024-12-31') as YYYYMON3_C | 2024:Dec |
FORMAT_DATE('%y:%h', DATE '2024-12-31') as YYMON2_C | 24:Dec |
FORMAT_DATE('%G:%h', DATE '2024-12-31') as IYYYMON2_C | 2025:Dec |
FORMAT_DATE('%g:%h', DATE '2024-12-31') as IYMON2_C | 25:Dec |
FORMAT_DATE('%m:%Y', DATE '2024-12-31') as MMYYYY_C | 12:2024 |
FORMAT_DATE('%m:%E4Y', DATE '2024-12-31') as MM2YYYY_C | 12:2024 |
FORMAT_DATE('%m:%y', DATE '2024-12-31') as MMYY_C | 12:24 |
FORMAT_DATE('%m:%G', DATE '2024-12-31') as MMIYYY_C | 12:2025 |
FORMAT_DATE('%m:%g', DATE '2024-12-31') as MMIY_C | 12:25 |
FORMAT_DATE('%B:%Y', DATE '2024-12-31') as MONTHYYYY_C | December:2024 |
FORMAT_DATE('%B:%E4Y', DATE '2024-12-31') as MONTH2YYYY_C | December:2024 |
FORMAT_DATE('%B%y', DATE '2024-12-31') as MONTHYY_C | December24 |
FORMAT_DATE('%B:%G', DATE '2024-12-31') as MONTHIYYY_C | December:2025 |
FORMAT_DATE('%B:%g', DATE '2024-12-31') as MONTHIY_C | December:25 |
FORMAT_DATE('%b:%Y', DATE '2024-12-31') as MONYYYY_C | Dec:2024 |
FORMAT_DATE('%b:%E4Y', DATE '2024-12-31') as MON2YYYY_C | Dec:2024 |
FORMAT_DATE('%b:%y', DATE '2024-12-31') as MONYY_C | Dec:24 |
FORMAT_DATE('%b:%G', DATE '2024-12-31') as MONIYYY_C | Dec:2025 |
FORMAT_DATE('%b:%g', DATE '2024-12-31') as MONIY_C | Dec:25 |
FORMAT_DATE('%h:%Y', DATE '2024-12-31') as MON2YYYY_C | Dec:2024 |
FORMAT_DATE('%h:%E4Y', DATE '2024-12-31') as MON3YYYY_C | Dec:2024 |
FORMAT_DATE('%h:%y', DATE '2024-12-31') as MON2YY_C | Dec:24 |
FORMAT_DATE('%h:%G', DATE '2024-12-31') as MON2IYYY_C | Dec:2025 |
FORMAT_DATE('%h:%g', DATE '2024-12-31') as MON2IY_C | Dec:25 |
FORMAT_DATE('%m:%d', DATE '2024-12-31') as MM_DD_01_31_C | 12:31 |
FORMAT_DATE('%m:%e', DATE '2024-12-31') as MM_D_1_31_C | 12:31 |
FORMAT_DATE('%B:%d', DATE '2024-12-31') as MONTH_DD_01_31_C | December:31 |
FORMAT_DATE('%B:%e', DATE '2024-12-31') as MONTH_D_1_31_C | December:31 |
FORMAT_DATE('%b:%d', DATE '2024-12-31') as MON_DD_01_31_C | Dec:31 |
FORMAT_DATE('%b:%e', DATE '2024-12-31') as MON_D_1_31_C | Dec:31 |
FORMAT_DATE('%h:%d', DATE '2024-12-31') as MON2_DD_01_31_C | Dec:31 |
FORMAT_DATE('%h:%e', DATE '2024-12-31') as MON2_D_1_31_C | Dec:31 |
FORMAT_DATE('%d:%m', DATE '2024-12-31') as DD_01_31_MM_C | 31:12 |
FORMAT_DATE('%e:%m', DATE '2024-12-31') as D_1_31_MM_C | 31:12 |
FORMAT_DATE('%d:%B', DATE '2024-12-31') as DD_01_31_MONTH_C | 31:December |
FORMAT_DATE('%e:%B', DATE '2024-12-31') as D_1_31_MONTH_C | 31:December |
FORMAT_DATE('%d:%b', DATE '2024-12-31') as DD_01_31_MON_C | 31:Dec |
FORMAT_DATE('%e:%b', DATE '2024-12-31') as D_1_31_MON_C | 31:Dec |
FORMAT_DATE('%d:%h', DATE '2024-12-31') as DD_01_31_MON2_C | 31:Dec |
FORMAT_DATE('%e:%h', DATE '2024-12-31') as D_1_31_MON2_C | 31:Dec |
FORMAT_DATE('%Y.%m', DATE '2024-12-31') as YYYYMM_P | 2024.12 |
FORMAT_DATE('%E4Y.%m', DATE '2024-12-31') as YYYYMM2_P | 2024.12 |
FORMAT_DATE('%y.%m', DATE '2024-12-31') as YYMM_P | 24.12 |
FORMAT_DATE('%G.%m', DATE '2024-12-31') as IYYYMM_P | 2025.12 |
FORMAT_DATE('%g.%m', DATE '2024-12-31') as IYMM_P | 25.12 |
FORMAT_DATE('%Y.%B', DATE '2024-12-31') as YYYYMONTH_P | 2024.December |
FORMAT_DATE('%E4Y.%B', DATE '2024-12-31') as YYYYMONTH2_P | 2024.December |
FORMAT_DATE('%y.%B', DATE '2024-12-31') as YYMONTH_P | 24.December |
FORMAT_DATE('%G.%B', DATE '2024-12-31') as IYYYMONTH_P | 2025.December |
FORMAT_DATE('%g.%B', DATE '2024-12-31') as IYMONTH_P | 25.December |
FORMAT_DATE('%Y.%b', DATE '2024-12-31') as YYYYMON_P | 2024.Dec |
FORMAT_DATE('%E4Y.%b', DATE '2024-12-31') as YYYYMON2_P | 2024.Dec |
FORMAT_DATE('%y.%b', DATE '2024-12-31') as YYMON_P | 24.Dec |
FORMAT_DATE('%G.%b', DATE '2024-12-31') as IYYYMON_P | 2025.Dec |
FORMAT_DATE('%g.%b', DATE '2024-12-31') as IYMON_P | 25.Dec |
FORMAT_DATE('%Y.%h', DATE '2024-12-31') as YYYYMON2_P | 2024.Dec |
FORMAT_DATE('%E4Y.%h', DATE '2024-12-31') as YYYYMON3_P | 2024.Dec |
FORMAT_DATE('%y.%h', DATE '2024-12-31') as YYMON2_P | 24.Dec |
FORMAT_DATE('%G.%h', DATE '2024-12-31') as IYYYMON2_P | 2025.Dec |
FORMAT_DATE('%g.%h', DATE '2024-12-31') as IYMON2_P | 25.Dec |
FORMAT_DATE('%m.%Y', DATE '2024-12-31') as MMYYYY_P | 12.2024 |
FORMAT_DATE('%m.%E4Y', DATE '2024-12-31') as MM2YYYY_P | 12.2024 |
FORMAT_DATE('%m.%y', DATE '2024-12-31') as MMYY_P | 12.24 |
FORMAT_DATE('%m.%G', DATE '2024-12-31') as MMIYYY_P | 12.2025 |
FORMAT_DATE('%m.%g', DATE '2024-12-31') as MMIY_P | 12.25 |
FORMAT_DATE('%B.%Y', DATE '2024-12-31') as MONTHYYYY_P | December.2024 |
FORMAT_DATE('%B.%E4Y', DATE '2024-12-31') as MONTH2YYYY_P | December.2024 |
FORMAT_DATE('%B%y', DATE '2024-12-31') as MONTHYY_P | December24 |
FORMAT_DATE('%B.%G', DATE '2024-12-31') as MONTHIYYY_P | December.2025 |
FORMAT_DATE('%B.%g', DATE '2024-12-31') as MONTHIY_P | December.25 |
FORMAT_DATE('%b.%Y', DATE '2024-12-31') as MONYYYY_P | Dec.2024 |
FORMAT_DATE('%b.%E4Y', DATE '2024-12-31') as MON2YYYY_P | Dec.2024 |
FORMAT_DATE('%b.%y', DATE '2024-12-31') as MONYY_P | Dec.24 |
FORMAT_DATE('%b.%G', DATE '2024-12-31') as MONIYYY_P | Dec.2025 |
FORMAT_DATE('%b.%g', DATE '2024-12-31') as MONIY_P | Dec.25 |
FORMAT_DATE('%h.%Y', DATE '2024-12-31') as MON2YYYY_P | Dec.2024 |
FORMAT_DATE('%h.%E4Y', DATE '2024-12-31') as MON3YYYY_P | Dec.2024 |
FORMAT_DATE('%h.%y', DATE '2024-12-31') as MON2YY_P | Dec.24 |
FORMAT_DATE('%h.%G', DATE '2024-12-31') as MON2IYYY_P | Dec.2025 |
FORMAT_DATE('%h.%g', DATE '2024-12-31') as MON2IY_P | Dec.25 |
FORMAT_DATE('%m.%d', DATE '2024-12-31') as MM_DD_01_31_P | 12.31 |
FORMAT_DATE('%m.%e', DATE '2024-12-31') as MM_D_1_31_P | 12.31 |
FORMAT_DATE('%B.%d', DATE '2024-12-31') as MONTH_DD_01_31_P | December.31 |
FORMAT_DATE('%B.%e', DATE '2024-12-31') as MONTH_D_1_31_P | December.31 |
FORMAT_DATE('%b.%d', DATE '2024-12-31') as MON_DD_01_31_P | Dec.31 |
FORMAT_DATE('%b.%e', DATE '2024-12-31') as MON_D_1_31_P | Dec.31 |
FORMAT_DATE('%h.%d', DATE '2024-12-31') as MON2_DD_01_31_P | Dec.31 |
FORMAT_DATE('%h.%e', DATE '2024-12-31') as MON2_D_1_31_P | Dec.31 |
FORMAT_DATE('%d.%m', DATE '2024-12-31') as DD_01_31_MM_P | 31.12 |
FORMAT_DATE('%e.%m', DATE '2024-12-31') as D_1_31_MM_P | 31.12 |
FORMAT_DATE('%d.%B', DATE '2024-12-31') as DD_01_31_MONTH_P | 31.December |
FORMAT_DATE('%e.%B', DATE '2024-12-31') as D_1_31_MONTH_P | 31.December |
FORMAT_DATE('%d.%b', DATE '2024-12-31') as DD_01_31_MON_P | 31.Dec |
FORMAT_DATE('%e.%b', DATE '2024-12-31') as D_1_31_MON_P | 31.Dec |
FORMAT_DATE('%d.%h', DATE '2024-12-31') as DD_01_31_MON2_P | 31.Dec |
FORMAT_DATE('%e.%h', DATE '2024-12-31') as D_1_31_MON2_P | 31.Dec |
FORMAT_DATE('%Y %m', DATE '2024-12-31') as YYYYMM_SP | 2024 12 |
FORMAT_DATE('%E4Y %m', DATE '2024-12-31') as YYYYMM2_SP | 2024 12 |
FORMAT_DATE('%y %m', DATE '2024-12-31') as YYMM_SP | 24 12 |
FORMAT_DATE('%G %m', DATE '2024-12-31') as IYYYMM_SP | 2025 12 |
FORMAT_DATE('%g %m', DATE '2024-12-31') as IYMM_SP | 25 12 |
FORMAT_DATE('%Y %B', DATE '2024-12-31') as YYYYMONTH_SP | 2024 December |
FORMAT_DATE('%E4Y %B', DATE '2024-12-31') as YYYYMONTH2_SP | 2024 December |
FORMAT_DATE('%y %B', DATE '2024-12-31') as YYMONTH_SP | 24 December |
FORMAT_DATE('%G %B', DATE '2024-12-31') as IYYYMONTH_SP | 2025 December |
FORMAT_DATE('%g %B', DATE '2024-12-31') as IYMONTH_SP | 25 December |
FORMAT_DATE('%Y %b', DATE '2024-12-31') as YYYYMON_SP | 2024 Dec |
FORMAT_DATE('%E4Y %b', DATE '2024-12-31') as YYYYMON2_SP | 2024 Dec |
FORMAT_DATE('%y %b', DATE '2024-12-31') as YYMON_SP | 24 Dec |
FORMAT_DATE('%G %b', DATE '2024-12-31') as IYYYMON_SP | 2025 Dec |
FORMAT_DATE('%g %b', DATE '2024-12-31') as IYMON_SP | 25 Dec |
FORMAT_DATE('%Y %h', DATE '2024-12-31') as YYYYMON2_SP | 2024 Dec |
FORMAT_DATE('%E4Y %h', DATE '2024-12-31') as YYYYMON3_SP | 2024 Dec |
FORMAT_DATE('%y %h', DATE '2024-12-31') as YYMON2_SP | 24 Dec |
FORMAT_DATE('%G %h', DATE '2024-12-31') as IYYYMON2_SP | 2025 Dec |
FORMAT_DATE('%g %h', DATE '2024-12-31') as IYMON2_SP | 25 Dec |
FORMAT_DATE('%m %Y', DATE '2024-12-31') as MMYYYY_SP | 12 2024 |
FORMAT_DATE('%m %E4Y', DATE '2024-12-31') as MM2YYYY_SP | 12 2024 |
FORMAT_DATE('%m %y', DATE '2024-12-31') as MMYY_SP | 12 24 |
FORMAT_DATE('%m %G', DATE '2024-12-31') as MMIYYY_SP | 12 2025 |
FORMAT_DATE('%m %g', DATE '2024-12-31') as MMIY_SP | 12 25 |
FORMAT_DATE('%B %Y', DATE '2024-12-31') as MONTHYYYY_SP | December 2024 |
FORMAT_DATE('%B %E4Y', DATE '2024-12-31') as MONTH2YYYY_SP | December 2024 |
FORMAT_DATE('%B %y', DATE '2024-12-31') as MONTHYY_SP | December 24 |
FORMAT_DATE('%B %G', DATE '2024-12-31') as MONTHIYYY_SP | December 2025 |
FORMAT_DATE('%B %g', DATE '2024-12-31') as MONTHIY_SP | December 25 |
FORMAT_DATE('%b %Y', DATE '2024-12-31') as MONYYYY_SP | Dec 2024 |
FORMAT_DATE('%b %E4Y', DATE '2024-12-31') as MON2YYYY_SP | Dec 2024 |
FORMAT_DATE('%b %y', DATE '2024-12-31') as MONYY_SP | Dec 24 |
FORMAT_DATE('%b %G', DATE '2024-12-31') as MONIYYY_SP | Dec 2025 |
FORMAT_DATE('%b %g', DATE '2024-12-31') as MONIY_SP | Dec 25 |
FORMAT_DATE('%h %Y', DATE '2024-12-31') as MON2YYYY_SP | Dec 2024 |
FORMAT_DATE('%h %E4Y', DATE '2024-12-31') as MON3YYYY_SP | Dec 2024 |
FORMAT_DATE('%h %y', DATE '2024-12-31') as MON2YY_SP | Dec 24 |
FORMAT_DATE('%h %G', DATE '2024-12-31') as MON2IYYY_SP | Dec 2025 |
FORMAT_DATE('%h %g', DATE '2024-12-31') as MON2IY_SP | Dec 25 |
FORMAT_DATE('%m %d', DATE '2024-12-31') as MM_DD_01_31_SP | 12 31 |
FORMAT_DATE('%m %e', DATE '2024-12-31') as MM_D_1_31_SP | 12 31 |
FORMAT_DATE('%B %d', DATE '2024-12-31') as MONTH_DD_01_31_SP | December 31 |
FORMAT_DATE('%B %e', DATE '2024-12-31') as MONTH_D_1_31_SP | December 31 |
FORMAT_DATE('%b %d', DATE '2024-12-31') as MON_DD_01_31_SP | Dec 31 |
FORMAT_DATE('%b %e', DATE '2024-12-31') as MON_D_1_31_SP | Dec 31 |
FORMAT_DATE('%h %d', DATE '2024-12-31') as MON2_DD_01_31_SP | Dec 31 |
FORMAT_DATE('%h %e', DATE '2024-12-31') as MON2_D_1_31_SP | Dec 31 |
FORMAT_DATE('%d %m', DATE '2024-12-31') as DD_01_31_MM_SP | 31 12 |
FORMAT_DATE('%e %m', DATE '2024-12-31') as D_1_31_MM_SP | 31 12 |
FORMAT_DATE('%d %B', DATE '2024-12-31') as DD_01_31_MONTH_SP | 31 December |
FORMAT_DATE('%e %B', DATE '2024-12-31') as D_1_31_MONTH_SP | 31 December |
FORMAT_DATE('%d %b', DATE '2024-12-31') as DD_01_31_MON_SP | 31 Dec |
FORMAT_DATE('%e %b', DATE '2024-12-31') as D_1_31_MON_SP | 31 Dec |
FORMAT_DATE('%d %h', DATE '2024-12-31') as DD_01_31_MON2_SP | 31 Dec |
FORMAT_DATE('%e %h', DATE '2024-12-31') as D_1_31_MON2_SP | 31 Dec |
FORMAT_DATE('%Y%m', DATE '2024-12-31') as YYYYMM_NO_SP | 202412 |
FORMAT_DATE('%E4Y%m', DATE '2024-12-31') as YYYYMM2_NO_SP | 202412 |
FORMAT_DATE('%y%m', DATE '2024-12-31') as YYMM_NO_SP | 2412 |
FORMAT_DATE('%G%m', DATE '2024-12-31') as IYYYMM_NO_SP | 202512 |
FORMAT_DATE('%g%m', DATE '2024-12-31') as IYMM_NO_SP | 2512 |
FORMAT_DATE('%Y%B', DATE '2024-12-31') as YYYYMONTH_NO_SP | 2024December |
FORMAT_DATE('%E4Y%B', DATE '2024-12-31') as YYYYMONTH2_NO_SP | 2024December |
FORMAT_DATE('%y%B', DATE '2024-12-31') as YYMONTH_NO_SP | 24December |
FORMAT_DATE('%G%B', DATE '2024-12-31') as IYYYMONTH_NO_SP | 2025December |
FORMAT_DATE('%g%B', DATE '2024-12-31') as IYMONTH_NO_SP | 25December |
FORMAT_DATE('%Y%b', DATE '2024-12-31') as YYYYMON_NO_SP | 2024Dec |
FORMAT_DATE('%E4Y%b', DATE '2024-12-31') as YYYYMON2_NO_SP | 2024Dec |
FORMAT_DATE('%y%b', DATE '2024-12-31') as YYMON_NO_SP | 24Dec |
FORMAT_DATE('%G%b', DATE '2024-12-31') as IYYYMON_NO_SP | 2025Dec |
FORMAT_DATE('%g%b', DATE '2024-12-31') as IYMON_NO_SP | 25Dec |
FORMAT_DATE('%Y%h', DATE '2024-12-31') as YYYYMON2_NO_SP | 2024Dec |
FORMAT_DATE('%E4Y%h', DATE '2024-12-31') as YYYYMON3_NO_SP | 2024Dec |
FORMAT_DATE('%y%h', DATE '2024-12-31') as YYMON2_NO_SP | 24Dec |
FORMAT_DATE('%G%h', DATE '2024-12-31') as IYYYMON2_NO_SP | 2025Dec |
FORMAT_DATE('%g%h', DATE '2024-12-31') as IYMON2_NO_SP | 25Dec |
FORMAT_DATE('%m%Y', DATE '2024-12-31') as MMYYYY_NO_SP | 122024 |
FORMAT_DATE('%m%E4Y', DATE '2024-12-31') as MM2YYYY_NO_SP | 122024 |
FORMAT_DATE('%m%y', DATE '2024-12-31') as MMYY_NO_SP | 1224 |
FORMAT_DATE('%m%G', DATE '2024-12-31') as MMIYYY_NO_SP | 122025 |
FORMAT_DATE('%m%g', DATE '2024-12-31') as MMIY_NO_SP | 1225 |
FORMAT_DATE('%B%Y', DATE '2024-12-31') as MONTHYYYY_NO_SP | December2024 |
FORMAT_DATE('%B%E4Y', DATE '2024-12-31') as MONTH2YYYY_NO_SP | December2024 |
FORMAT_DATE('%B%y', DATE '2024-12-31') as MONTHYY_NO_SP | December24 |
FORMAT_DATE('%B%G', DATE '2024-12-31') as MONTHIYYY_NO_SP | December2025 |
FORMAT_DATE('%B%g', DATE '2024-12-31') as MONTHIY_NO_SP | December25 |
FORMAT_DATE('%b%Y', DATE '2024-12-31') as MONYYYY_NO_SP | Dec2024 |
FORMAT_DATE('%b%E4Y', DATE '2024-12-31') as MON2YYYY_NO_SP | Dec2024 |
FORMAT_DATE('%b%y', DATE '2024-12-31') as MONYY_NO_SP | Dec24 |
FORMAT_DATE('%b%G', DATE '2024-12-31') as MONIYYY_NO_SP | Dec2025 |
FORMAT_DATE('%b%g', DATE '2024-12-31') as MONIY_NO_SP | Dec25 |
FORMAT_DATE('%h%Y', DATE '2024-12-31') as MON2YYYY_NO_SP | Dec2024 |
FORMAT_DATE('%h%E4Y', DATE '2024-12-31') as MON3YYYY_NO_SP | Dec2024 |
FORMAT_DATE('%h%y', DATE '2024-12-31') as MON2YY_NO_SP | Dec24 |
FORMAT_DATE('%h%G', DATE '2024-12-31') as MON2IYYY_NO_SP | Dec2025 |
FORMAT_DATE('%h%g', DATE '2024-12-31') as MON2IY_NO_SP | Dec25 |
FORMAT_DATE('%m%d', DATE '2024-12-31') as MM_DD_01_31_NO_SP | 1231 |
FORMAT_DATE('%m%e', DATE '2024-12-31') as MM_D_1_31_NO_SP | 1231 |
FORMAT_DATE('%B%d', DATE '2024-12-31') as MONTH_DD_01_31_NO_SP | December31 |
FORMAT_DATE('%B%e', DATE '2024-12-31') as MONTH_D_1_31_NO_SP | December31 |
FORMAT_DATE('%b%d', DATE '2024-12-31') as MON_DD_01_31_NO_SP | Dec31 |
FORMAT_DATE('%b%e', DATE '2024-12-31') as MON_D_1_31_NO_SP | Dec31 |
FORMAT_DATE('%h%d', DATE '2024-12-31') as MON2_DD_01_31_NO_SP | Dec31 |
FORMAT_DATE('%h%e', DATE '2024-12-31') as MON2_D_1_31_NO_SP | Dec31 |
FORMAT_DATE('%d%m', DATE '2024-12-31') as DD_01_31_MM_NO_SP | 3112 |
FORMAT_DATE('%e%m', DATE '2024-12-31') as D_1_31_MM_NO_SP | 3112 |
FORMAT_DATE('%d%B', DATE '2024-12-31') as DD_01_31_MONTH_NO_SP | 31December |
FORMAT_DATE('%e%B', DATE '2024-12-31') as D_1_31_MONTH_NO_SP | 31December |
FORMAT_DATE('%d%b', DATE '2024-12-31') as DD_01_31_MON_NO_SP | 31Dec |
FORMAT_DATE('%e%b', DATE '2024-12-31') as D_1_31_MON_NO_SP | 31Dec |
FORMAT_DATE('%d%h', DATE '2024-12-31') as DD_01_31_MON2_NO_SP | 31Dec |
FORMAT_DATE('%e%h', DATE '2024-12-31') as D_1_31_MON2_NO_SP | 31Dec |
FORMAT_DATE('%Y-%m-%d', DATE '2024-12-31') -- yyyy-mm-dd The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 2024-12-31 |
FORMAT_DATE('%Y-%m-%e', DATE '2024-12-31') -- yyyy-mm- d The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 2024-12-31 |
FORMAT_DATE('%E4Y-%m-%d', DATE '2024-12-31') -- yyyy-mm-dd Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 2024-12-31 |
FORMAT_DATE('%E4Y-%m-%e', DATE '2024-12-31') -- yyyy-mm- d Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 2024-12-31 |
FORMAT_DATE('%y-%m-%d', DATE '2024-12-31') -- yy-mm-dd The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 24-12-31 |
FORMAT_DATE('%y-%m-%e', DATE '2024-12-31') -- yy-mm- d The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 24-12-31 |
FORMAT_DATE('%G-%m-%d', DATE '2024-12-31') -- Iyyy-mm-dd The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 2025-12-31 |
FORMAT_DATE('%G-%m-%e', DATE '2024-12-31') -- Iyyy-mm- d The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 2025-12-31 |
FORMAT_DATE('%g-%m-%d', DATE '2024-12-31') -- Iy-mm-dd The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 25-12-31 |
FORMAT_DATE('%g-%m-%e', DATE '2024-12-31') -- Iy-mm- d The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 25-12-31 |
FORMAT_DATE('%Y-%B-%d', DATE '2024-12-31') -- yyyy-month-dd The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) | 2024-December-31 |
FORMAT_DATE('%Y-%B-%e', DATE '2024-12-31') -- yyyy-month- d The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024-December-31 |
FORMAT_DATE('%Y-%b-%d', DATE '2024-12-31') -- yyyy-mon-dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024-Dec-31 |
FORMAT_DATE('%Y-%b-%e', DATE '2024-12-31') -- yyyy-mon- d The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024-Dec-31 |
FORMAT_DATE('%Y-%h-%d', DATE '2024-12-31') -- yyyy-mon-dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024-Dec-31 |
FORMAT_DATE('%Y-%h-%e', DATE '2024-12-31') -- yyyy-mon-dd The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024-Dec-31 |
FORMAT_DATE('%E4Y-%B-%d', DATE '2024-12-31') -- yyyy-month-dd Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) | 2024-December-31 |
FORMAT_DATE('%E4Y-%B-%e', DATE '2024-12-31') -- yyyy-month- d Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024-December-31 |
FORMAT_DATE('%E4Y-%b-%d', DATE '2024-12-31') -- yyyy-mon-dd Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024-Dec-31 |
FORMAT_DATE('%E4Y-%b-%e', DATE '2024-12-31') -- yyyy-mon- d Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024-Dec-31 |
FORMAT_DATE('%E4Y-%h-%d', DATE '2024-12-31') -- yyyy-mon-dd Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024-Dec-31 |
FORMAT_DATE('%E4Y-%h-%e', DATE '2024-12-31') -- yyyy-mon- d Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024-Dec-31 |
FORMAT_DATE('%y-%B-%d', DATE '2024-12-31') -- yy-month-dd The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) | 24-December-31 |
FORMAT_DATE('%y-%B-%e', DATE '2024-12-31') -- yy-month- d The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24-December-31 |
FORMAT_DATE('%y-%b-%d', DATE '2024-12-31') -- yy-mon-dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24-Dec-31 |
FORMAT_DATE('%y-%b-%e', DATE '2024-12-31') -- yy-mon- d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24-Dec-31 |
FORMAT_DATE('%y-%h-%d', DATE '2024-12-31') -- yy-mon-dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24-Dec-31 |
FORMAT_DATE('%y-%h-%e', DATE '2024-12-31') -- yy-mon- d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24-Dec-31 |
FORMAT_DATE('%G-%B-%d', DATE '2024-12-31') -- Iy-month-dd The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) | 2025-December-31 |
FORMAT_DATE('%G-%B-%e', DATE '2024-12-31') -- Iy-month- d The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2025-December-31 |
FORMAT_DATE('%G-%b-%d', DATE '2024-12-31') -- Iy-mon-dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2025-Dec-31 |
FORMAT_DATE('%G-%b-%e', DATE '2024-12-31') -- Iy-mon- d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2025-Dec-31 |
FORMAT_DATE('%G-%h-%d', DATE '2024-12-31') -- Iy-mon-dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2025-Dec-31 |
FORMAT_DATE('%G-%h-%e', DATE '2024-12-31') -- Iy-mon- d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2025-Dec-31 |
FORMAT_DATE('%g-%B-%d', DATE '2024-12-31') -- Iyyy-month-dd The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) | 25-December-31 |
FORMAT_DATE('%g-%B-%e', DATE '2024-12-31') -- Iyyy-month- d The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 25-December-31 |
FORMAT_DATE('%g-%b-%d', DATE '2024-12-31') -- Iyyy-mon-dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 25-Dec-31 |
FORMAT_DATE('%g-%b-%e', DATE '2024-12-31') -- Iyyy-mon- d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 25-Dec-31 |
FORMAT_DATE('%g-%h-%d', DATE '2024-12-31') -- Iyyy-mon-dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 25-Dec-31 |
FORMAT_DATE('%g-%h-%e', DATE '2024-12-31') -- Iyyy-mon- d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 25-Dec-31 |
FORMAT_DATE('%Y-%m-%d Day %j', DATE '2024-12-31') -- yyyy-mm-dd The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 2024-12-31 Day 366 |
FORMAT_DATE('%Y-%m-%e Day %j', DATE '2024-12-31') -- yyyy-mm- d The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024-12-31 Day 366 |
FORMAT_DATE('%E4Y-%m-%d Day %j', DATE '2024-12-31') -- yyyy-mm-dd Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 2024-12-31 Day 366 |
FORMAT_DATE('%E4Y-%m-%e Day %j', DATE '2024-12-31') -- yyyy-mm- d Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024-12-31 Day 366 |
FORMAT_DATE('%y-%m-%d Day %j', DATE '2024-12-31') -- yy-mm-dd The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 24-12-31 Day 366 |
FORMAT_DATE('%y-%m-%e Day %j', DATE '2024-12-31') -- yy-mm- d The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24-12-31 Day 366 |
FORMAT_DATE('%G-%m-%d Day %j', DATE '2024-12-31') -- Iyyy-mm-dd The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 2025-12-31 Day 366 |
FORMAT_DATE('%G-%m-%e Day %j', DATE '2024-12-31') -- Iyyy-mm- d The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2025-12-31 Day 366 |
FORMAT_DATE('%g-%m-%d Day %j', DATE '2024-12-31') -- Iy-mm-dd The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 25-12-31 Day 366 |
FORMAT_DATE('%g-%m-%e Day %j', DATE '2024-12-31') -- Iy-mm- d The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 25-12-31 Day 366 |
FORMAT_DATE('%Y-%B-%d Day %j', DATE '2024-12-31') -- yyyy-month-dd The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024-December-31 Day 366 |
FORMAT_DATE('%Y-%B-%e Day %j', DATE '2024-12-31') -- yyyy-month- d The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024-December-31 Day 366 |
FORMAT_DATE('%Y-%b-%d Day %j', DATE '2024-12-31') -- yyyy-mon-dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024-Dec-31 Day 366 |
FORMAT_DATE('%Y-%b-%e Day %j', DATE '2024-12-31') -- yyyy-mon- d The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024-Dec-31 Day 366 |
FORMAT_DATE('%Y-%h-%d Day %j', DATE '2024-12-31') -- yyyy-mon-dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024-Dec-31 Day 366 |
FORMAT_DATE('%Y-%h-%e Day %j', DATE '2024-12-31') -- yyyy-mon-dd The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024-Dec-31 Day 366 |
FORMAT_DATE('%E4Y-%B-%d Day %j', DATE '2024-12-31') -- yyyy-month-dd Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024-December-31 Day 366 |
FORMAT_DATE('%E4Y-%B-%e Day %j', DATE '2024-12-31') -- yyyy-month- d Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024-December-31 Day 366 |
FORMAT_DATE('%E4Y-%b-%d Day %j', DATE '2024-12-31') -- yyyy-mon-dd Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024-Dec-31 Day 366 |
FORMAT_DATE('%E4Y-%b-%e Day %j', DATE '2024-12-31') -- yyyy-mon- d Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024-Dec-31 Day 366 |
FORMAT_DATE('%E4Y-%h-%d Day %j', DATE '2024-12-31') -- yyyy-mon-dd Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024-Dec-31 Day 366 |
FORMAT_DATE('%E4Y-%h-%e Day %j', DATE '2024-12-31') -- yyyy-mon- d Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024-Dec-31 Day 366 |
FORMAT_DATE('%y-%B-%d Day %j', DATE '2024-12-31') -- yy-month-dd The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24-December-31 Day 366 |
FORMAT_DATE('%y-%B-%e Day %j', DATE '2024-12-31') -- yy-month- d The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24-December-31 Day 366 |
FORMAT_DATE('%y-%b-%d Day %j', DATE '2024-12-31') -- yy-mon-dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24-Dec-31 Day 366 |
FORMAT_DATE('%y-%b-%e Day %j', DATE '2024-12-31') -- yy-mon- d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24-Dec-31 Day 366 |
FORMAT_DATE('%y-%h-%d Day %j', DATE '2024-12-31') -- yy-mon-dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24-Dec-31 Day 366 |
FORMAT_DATE('%y-%h-%e Day %j', DATE '2024-12-31') -- yy-mon- d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24-Dec-31 Day 366 |
FORMAT_DATE('%G-%B-%d Day %j', DATE '2024-12-31') -- Iy-month-dd The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2025-December-31 Day 366 |
FORMAT_DATE('%G-%B-%e Day %j', DATE '2024-12-31') -- Iy-month- d The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2025-December-31 Day 366 |
FORMAT_DATE('%G-%b-%d Day %j', DATE '2024-12-31') -- Iy-mon-dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2025-Dec-31 Day 366 |
FORMAT_DATE('%G-%b-%e Day %j', DATE '2024-12-31') -- Iy-mon- d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2025-Dec-31 Day 366 |
FORMAT_DATE('%G-%h-%d Day %j', DATE '2024-12-31') -- Iy-mon-dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2025-Dec-31 Day 366 |
FORMAT_DATE('%G-%h-%e Day %j', DATE '2024-12-31') -- Iy-mon- d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2025-Dec-31 Day 366 |
FORMAT_DATE('%g-%B-%d Day %j', DATE '2024-12-31') -- Iyyy-month-dd The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 25-December-31 Day 366 |
FORMAT_DATE('%g-%B-%e Day %j', DATE '2024-12-31') -- Iyyy-month- d The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 25-December-31 Day 366 |
FORMAT_DATE('%g-%b-%d Day %j', DATE '2024-12-31') -- Iyyy-mon-dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 25-Dec-31 Day 366 |
FORMAT_DATE('%g-%b-%e Day %j', DATE '2024-12-31') -- Iyyy-mon- d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 25-Dec-31 Day 366 |
FORMAT_DATE('%g-%h-%d Day %j', DATE '2024-12-31') -- Iyyy-mon-dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 25-Dec-31 Day 366 |
FORMAT_DATE('%g-%h-%e Day %j', DATE '2024-12-31') -- Iyyy-mon- d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 25-Dec-31 Day 366 |
FORMAT_DATE('%Y/%m/%d', DATE '2024-12-31') -- yyyy/mm/dd The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 2024/12/31 |
FORMAT_DATE('%Y/%m/%e', DATE '2024-12-31') -- yyyy/mm/ d The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 2024/12/31 |
FORMAT_DATE('%E4Y/%m/%d', DATE '2024-12-31') -- yyyy/mm/dd Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 2024/12/31 |
FORMAT_DATE('%E4Y/%m/%e', DATE '2024-12-31') -- yyyy/mm/ d Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 2024/12/31 |
FORMAT_DATE('%y/%m/%d', DATE '2024-12-31') -- yy/mm/dd The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 24/12/31 |
FORMAT_DATE('%y/%m/%e', DATE '2024-12-31') -- yy/mm/ d The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 24/12/31 |
FORMAT_DATE('%G/%m/%d', DATE '2024-12-31') -- Iyyy/mm/dd The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 2025/12/31 |
FORMAT_DATE('%G/%m/%e', DATE '2024-12-31') -- Iyyy/mm/ d The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 2025/12/31 |
FORMAT_DATE('%g/%m/%d', DATE '2024-12-31') -- Iy/mm/dd The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 25/12/31 |
FORMAT_DATE('%g/%m/%e', DATE '2024-12-31') -- Iy/mm/ d The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 25/12/31 |
FORMAT_DATE('%Y/%B/%d', DATE '2024-12-31') -- yyyy/month/dd The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) | 2024/December/31 |
FORMAT_DATE('%Y/%B/%e', DATE '2024-12-31') -- yyyy/month/ d The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024/December/31 |
FORMAT_DATE('%Y/%b/%d', DATE '2024-12-31') -- yyyy/mon/dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024/Dec/31 |
FORMAT_DATE('%Y/%b/%e', DATE '2024-12-31') -- yyyy/mon/ d The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024/Dec/31 |
FORMAT_DATE('%Y/%h/%d', DATE '2024-12-31') -- yyyy/mon/dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024/Dec/31 |
FORMAT_DATE('%Y/%h/%e', DATE '2024-12-31') -- yyyy/mon/dd The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024/Dec/31 |
FORMAT_DATE('%E4Y/%B/%d', DATE '2024-12-31') -- yyyy/month/dd Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) | 2024/December/31 |
FORMAT_DATE('%E4Y/%B/%e', DATE '2024-12-31') -- yyyy/month/ d Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024/December/31 |
FORMAT_DATE('%E4Y/%b/%d', DATE '2024-12-31') -- yyyy/mon/dd Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024/Dec/31 |
FORMAT_DATE('%E4Y/%b/%e', DATE '2024-12-31') -- yyyy/mon/ d Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024/Dec/31 |
FORMAT_DATE('%E4Y/%h/%d', DATE '2024-12-31') -- yyyy/mon/dd Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024/Dec/31 |
FORMAT_DATE('%E4Y/%h/%e', DATE '2024-12-31') -- yyyy/mon/ d Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024/Dec/31 |
FORMAT_DATE('%y/%B/%d', DATE '2024-12-31') -- yy/month/dd The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) | 24/December/31 |
FORMAT_DATE('%y/%B/%e', DATE '2024-12-31') -- yy/month/ d The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24/December/31 |
FORMAT_DATE('%y/%b/%d', DATE '2024-12-31') -- yy/mon/dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24/Dec/31 |
FORMAT_DATE('%y/%b/%e', DATE '2024-12-31') -- yy/mon/ d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24/Dec/31 |
FORMAT_DATE('%y/%h/%d', DATE '2024-12-31') -- yy/mon/dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24/Dec/31 |
FORMAT_DATE('%y/%h/%e', DATE '2024-12-31') -- yy/mon/ d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24/Dec/31 |
FORMAT_DATE('%G/%B/%d', DATE '2024-12-31') -- Iy/month/dd The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) | 2025/December/31 |
FORMAT_DATE('%G/%B/%e', DATE '2024-12-31') -- Iy/month/- d The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2025/December/31 |
FORMAT_DATE('%G/%b/%d', DATE '2024-12-31') -- Iy/mon/-dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2025/Dec/31 |
FORMAT_DATE('%G/%b/%e', DATE '2024-12-31') -- Iy/mon/- d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2025/Dec/31 |
FORMAT_DATE('%G/%h/%d', DATE '2024-12-31') -- Iy/mon/dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2025/Dec/31 |
FORMAT_DATE('%G/%h/%e', DATE '2024-12-31') -- Iy/mon/ d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2025/Dec/31 |
FORMAT_DATE('%g/%B/%d', DATE '2024-12-31') -- Iyyy/month/dd The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) | 25/December/31 |
FORMAT_DATE('%g/%B/%e', DATE '2024-12-31') -- Iyyy/month/ d The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 25/December/31 |
FORMAT_DATE('%g/%b/%d', DATE '2024-12-31') -- Iyyy/mon/dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 25/Dec/31 |
FORMAT_DATE('%g/%b/%e', DATE '2024-12-31') -- Iyyy/mon/ d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 25/Dec/31 |
FORMAT_DATE('%g/%h/%d', DATE '2024-12-31') -- Iyyy/mon/dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 25/Dec/31 |
FORMAT_DATE('%g/%h/%e', DATE '2024-12-31') -- Iyyy/mon/ d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 25/Dec/31 |
FORMAT_DATE('%Y/%m/%d Day %j', DATE '2024-12-31') -- yyyy/mm/dd The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 2024/12/31 Day 366 |
FORMAT_DATE('%Y/%m/%e Day %j', DATE '2024-12-31') -- yyyy/mm/ d The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024/12/31 Day 366 |
FORMAT_DATE('%E4Y/%m/%d Day %j', DATE '2024-12-31') -- yyyy/mm/-dd Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 2024/12/31 Day 366 |
FORMAT_DATE('%E4Y/%m/%e Day %j', DATE '2024-12-31') -- yyyy/mm/ d Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024/12/31 Day 366 |
FORMAT_DATE('%y/%m/%d Day %j', DATE '2024-12-31') -- yy/mm/dd The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 24/12/31 Day 366 |
FORMAT_DATE('%y/%m/%e Day %j', DATE '2024-12-31') -- yy/mm/ d The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24/12/31 Day 366 |
FORMAT_DATE('%G/%m/%d Day %j', DATE '2024-12-31') -- Iyyy/mm/dd The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 2025/12/31 Day 366 |
FORMAT_DATE('%G/%m/%e Day %j', DATE '2024-12-31') -- Iyyy/mm/ d The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2025/12/31 Day 366 |
FORMAT_DATE('%g/%m/%d Day %j', DATE '2024-12-31') -- Iy/mm/dd The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 25/12/31 Day 366 |
FORMAT_DATE('%g/%m/%e Day %j', DATE '2024-12-31') -- Iy/mm/ d The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 25/12/31 Day 366 |
FORMAT_DATE('%Y/%B/%d Day %j', DATE '2024-12-31') -- yyyy/month/dd The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024/December/31 Day 366 |
FORMAT_DATE('%Y/%B/%e Day %j', DATE '2024-12-31') -- yyyy/month/ d The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024/December/31 Day 366 |
FORMAT_DATE('%Y/%b/%d Day %j', DATE '2024-12-31') -- yyyy/mon/dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024/Dec/31 Day 366 |
FORMAT_DATE('%Y/%b/%e Day %j', DATE '2024-12-31') -- yyyy/mon/ d The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024/Dec/31 Day 366 |
FORMAT_DATE('%Y/%h/%d Day %j', DATE '2024-12-31') -- yyyy/mon/dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024/Dec/31 Day 366 |
FORMAT_DATE('%Y/%h/%e Day %j', DATE '2024-12-31') -- yyyy/mon/-dd The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024/Dec/31 Day 366 |
FORMAT_DATE('%E4Y/%B/%d Day %j', DATE '2024-12-31') -- yyyy/month/dd Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024/December/31 Day 366 |
FORMAT_DATE('%E4Y/%B/%e Day %j', DATE '2024-12-31') -- yyyy/month/ d Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024/December/31 Day 366 |
FORMAT_DATE('%E4Y/%b/%d Day %j', DATE '2024-12-31') -- yyyy/mon/dd Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024/Dec/31 Day 366 |
FORMAT_DATE('%E4Y/%b/%e Day %j', DATE '2024-12-31') -- yyyy/mon/ d Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024/Dec/31 Day 366 |
FORMAT_DATE('%E4Y/%h/%d Day %j', DATE '2024-12-31') -- yyyy/mon/dd Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024/Dec/31 Day 366 |
FORMAT_DATE('%E4Y/%h/%e Day %j', DATE '2024-12-31') -- yyyy/mon/ d Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024/Dec/31 Day 366 |
FORMAT_DATE('%y/%B/%d Day %j', DATE '2024-12-31') -- yy/month/dd The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24/December/31 Day 366 |
FORMAT_DATE('%y/%B/%e Day %j', DATE '2024-12-31') -- yy/month/ d The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24/December/31 Day 366 |
FORMAT_DATE('%y/%b/%d Day %j', DATE '2024-12-31') -- yy/mon/dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24/Dec/31 Day 366 |
FORMAT_DATE('%y/%b/%e Day %j', DATE '2024-12-31') -- yy/mon/ d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24/Dec/31 Day 366 |
FORMAT_DATE('%y/%h/%d Day %j', DATE '2024-12-31') -- yy/mon/dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24/Dec/31 Day 366 |
FORMAT_DATE('%y/%h/%e Day %j', DATE '2024-12-31') -- yy/mon/ d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24/Dec/31 Day 366 |
FORMAT_DATE('%G/%B/%d Day %j', DATE '2024-12-31') -- Iy/month/dd The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2025/December/31 Day 366 |
FORMAT_DATE('%G/%B/%e Day %j', DATE '2024-12-31') -- Iy/month/ d The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2025/December/31 Day 366 |
FORMAT_DATE('%G/%b/%d Day %j', DATE '2024-12-31') -- Iy/mon/dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2025/Dec/31 Day 366 |
FORMAT_DATE('%G/%b/%e Day %j', DATE '2024-12-31') -- Iy/mon/ d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2025/Dec/31 Day 366 |
FORMAT_DATE('%G/%h/%d Day %j', DATE '2024-12-31') -- Iy/mon/dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2025/Dec/31 Day 366 |
FORMAT_DATE('%G/%h/%e Day %j', DATE '2024-12-31') -- Iy/mon/ d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2025/Dec/31 Day 366 |
FORMAT_DATE('%g/%B/%d Day %j', DATE '2024-12-31') -- Iyyy/month/dd The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 25/December/31 Day 366 |
FORMAT_DATE('%g/%B/%e Day %j', DATE '2024-12-31') -- Iyyy/month/ d The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 25/December/31 Day 366 |
FORMAT_DATE('%g/%b/%d Day %j', DATE '2024-12-31') -- Iyyy/mon/dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 25/Dec/31 Day 366 |
FORMAT_DATE('%g/%b/%e Day %j', DATE '2024-12-31') -- Iyyy/mon/ d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 25/Dec/31 Day 366 |
FORMAT_DATE('%g/%h/%d Day %j', DATE '2024-12-31') -- Iyyy/mon/-dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 25/Dec/31 Day 366 |
FORMAT_DATE('%g/%h/%e Day %j', DATE '2024-12-31') -- Iyyy/mon/ d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 25/Dec/31 Day 366 |
FORMAT_DATE('%Y:%m:%d', DATE '2024-12-31') -- yyyy:mm:dd The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 2024:12:31 |
FORMAT_DATE('%Y:%m:%e', DATE '2024-12-31') -- yyyy:mm: d The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 2024:12:31 |
FORMAT_DATE('%E4Y:%m:%d', DATE '2024-12-31') -- yyyy:mm:dd Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 2024:12:31 |
FORMAT_DATE('%E4Y:%m:%e', DATE '2024-12-31') -- yyyy:mm: d Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 2024:12:31 |
FORMAT_DATE('%y:%m:%d', DATE '2024-12-31') -- yy:mm:dd The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 24:12:31 |
FORMAT_DATE('%y:%m:%e', DATE '2024-12-31') -- yy:mm: d The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 24:12:31 |
FORMAT_DATE('%G:%m:%d', DATE '2024-12-31') -- Iyyy:mm:dd The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 2025:12:31 |
FORMAT_DATE('%G:%m:%e', DATE '2024-12-31') -- Iyyy:mm: d The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 2025:12:31 |
FORMAT_DATE('%g:%m:%d', DATE '2024-12-31') -- Iy:mm:dd The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 25:12:31 |
FORMAT_DATE('%g:%m:%e', DATE '2024-12-31') -- Iy:mm: d The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 25:12:31 |
FORMAT_DATE('%Y:%B:%d', DATE '2024-12-31') -- yyyy:month:dd The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) | 2024:December:31 |
FORMAT_DATE('%Y:%B:%e', DATE '2024-12-31') -- yyyy:month: d The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024:December:31 |
FORMAT_DATE('%Y:%b:%d', DATE '2024-12-31') -- yyyy:mon:dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024:Dec:31 |
FORMAT_DATE('%Y:%b:%e', DATE '2024-12-31') -- yyyy:mon: d The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024:Dec:31 |
FORMAT_DATE('%Y:%h:%d', DATE '2024-12-31') -- yyyy:mon:dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024:Dec:31 |
FORMAT_DATE('%Y:%h:%e', DATE '2024-12-31') -- yyyy:mon:dd The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024:Dec:31 |
FORMAT_DATE('%E4Y:%B:%d', DATE '2024-12-31') -- yyyy:month:dd Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) | 2024:December:31 |
FORMAT_DATE('%E4Y:%B:%e', DATE '2024-12-31') -- yyyy:month: d Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024:December:31 |
FORMAT_DATE('%E4Y:%b:%d', DATE '2024-12-31') -- yyyy:mon:dd Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024:Dec:31 |
FORMAT_DATE('%E4Y:%b:%e', DATE '2024-12-31') -- yyyy:mon: d Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024:Dec:31 |
FORMAT_DATE('%E4Y:%h:%d', DATE '2024-12-31') -- yyyy:mon:dd Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024:Dec:31 |
FORMAT_DATE('%E4Y:%h:%e', DATE '2024-12-31') -- yyyy:mon: d Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024:Dec:31 |
FORMAT_DATE('%y:%B:%d', DATE '2024-12-31') -- yy:month:dd The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) | 24:December:31 |
FORMAT_DATE('%y:%B:%e', DATE '2024-12-31') -- yy:month: d The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24:December:31 |
FORMAT_DATE('%y:%b:%d', DATE '2024-12-31') -- yy:mon:dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24:Dec:31 |
FORMAT_DATE('%y:%b:%e', DATE '2024-12-31') -- yy:mon: d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24:Dec:31 |
FORMAT_DATE('%y:%h:%d', DATE '2024-12-31') -- yy:mon:dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24:Dec:31 |
FORMAT_DATE('%y:%h:%e', DATE '2024-12-31') -- yy:mon: d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24:Dec:31 |
FORMAT_DATE('%G:%B:%d', DATE '2024-12-31') -- Iy:month:dd The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) | 2025:December:31 |
FORMAT_DATE('%G:%B:%e', DATE '2024-12-31') -- Iy:month:- d The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2025:December:31 |
FORMAT_DATE('%G:%b:%d', DATE '2024-12-31') -- Iy:mon:-dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2025:Dec:31 |
FORMAT_DATE('%G:%b:%e', DATE '2024-12-31') -- Iy:mon:- d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2025:Dec:31 |
FORMAT_DATE('%G:%h:%d', DATE '2024-12-31') -- Iy:mon:dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2025:Dec:31 |
FORMAT_DATE('%G:%h:%e', DATE '2024-12-31') -- Iy:mon: d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2025:Dec:31 |
FORMAT_DATE('%g:%B:%d', DATE '2024-12-31') -- Iyyy:month:dd The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) | 25:December:31 |
FORMAT_DATE('%g:%B:%e', DATE '2024-12-31') -- Iyyy:month: d The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 25:December:31 |
FORMAT_DATE('%g:%b:%d', DATE '2024-12-31') -- Iyyy:mon:dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 25:Dec:31 |
FORMAT_DATE('%g:%b:%e', DATE '2024-12-31') -- Iyyy:mon: d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 25:Dec:31 |
FORMAT_DATE('%g:%h:%d', DATE '2024-12-31') -- Iyyy:mon:dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 25:Dec:31 |
FORMAT_DATE('%g:%h:%e', DATE '2024-12-31') -- Iyyy:mon: d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 25:Dec:31 |
FORMAT_DATE('%Y:%m:%d Day %j', DATE '2024-12-31') -- yyyy:mm:dd The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 2024:12:31 Day 366 |
FORMAT_DATE('%Y:%m:%e Day %j', DATE '2024-12-31') -- yyyy:mm: d The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024:12:31 Day 366 |
FORMAT_DATE('%E4Y:%m:%d Day %j', DATE '2024-12-31') -- yyyy:mm:-dd Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 2024:12:31 Day 366 |
FORMAT_DATE('%E4Y:%m:%e Day %j', DATE '2024-12-31') -- yyyy:mm: d Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024:12:31 Day 366 |
FORMAT_DATE('%y:%m:%d Day %j', DATE '2024-12-31') -- yy:mm:dd The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 24:12:31 Day 366 |
FORMAT_DATE('%y:%m:%e Day %j', DATE '2024-12-31') -- yy:mm: d The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24:12:31 Day 366 |
FORMAT_DATE('%G:%m:%d Day %j', DATE '2024-12-31') -- Iyyy:mm:dd The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 2025:12:31 Day 366 |
FORMAT_DATE('%G:%m:%e Day %j', DATE '2024-12-31') -- Iyyy:mm: d The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2025:12:31 Day 366 |
FORMAT_DATE('%g:%m:%d Day %j', DATE '2024-12-31') -- Iy:mm:dd The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 25:12:31 Day 366 |
FORMAT_DATE('%g:%m:%e Day %j', DATE '2024-12-31') -- Iy:mm: d The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 25:12:31 Day 366 |
FORMAT_DATE('%Y:%B:%d Day %j', DATE '2024-12-31') -- yyyy:month:dd The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024:December:31 Day 366 |
FORMAT_DATE('%Y:%B:%e Day %j', DATE '2024-12-31') -- yyyy:month: d The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024:December:31 Day 366 |
FORMAT_DATE('%Y:%b:%d Day %j', DATE '2024-12-31') -- yyyy:mon:dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024:Dec:31 Day 366 |
FORMAT_DATE('%Y:%b:%e Day %j', DATE '2024-12-31') -- yyyy:mon: d The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024:Dec:31 Day 366 |
FORMAT_DATE('%Y:%h:%d Day %j', DATE '2024-12-31') -- yyyy:mon:dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024:Dec:31 Day 366 |
FORMAT_DATE('%Y:%h:%e Day %j', DATE '2024-12-31') -- yyyy:mon:-dd The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024:Dec:31 Day 366 |
FORMAT_DATE('%E4Y:%B:%d Day %j', DATE '2024-12-31') -- yyyy:month:dd Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024:December:31 Day 366 |
FORMAT_DATE('%E4Y:%B:%e Day %j', DATE '2024-12-31') -- yyyy:month: d Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024:December:31 Day 366 |
FORMAT_DATE('%E4Y:%b:%d Day %j', DATE '2024-12-31') -- yyyy:mon:dd Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024:Dec:31 Day 366 |
FORMAT_DATE('%E4Y:%b:%e Day %j', DATE '2024-12-31') -- yyyy:mon: d Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024:Dec:31 Day 366 |
FORMAT_DATE('%E4Y:%h:%d Day %j', DATE '2024-12-31') -- yyyy:mon:dd Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024:Dec:31 Day 366 |
FORMAT_DATE('%E4Y:%h:%e Day %j', DATE '2024-12-31') -- yyyy:mon: d Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024:Dec:31 Day 366 |
FORMAT_DATE('%y:%B:%d Day %j', DATE '2024-12-31') -- yy:month:dd The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24:December:31 Day 366 |
FORMAT_DATE('%y:%B:%e Day %j', DATE '2024-12-31') -- yy:month: d The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24:December:31 Day 366 |
FORMAT_DATE('%y:%b:%d Day %j', DATE '2024-12-31') -- yy:mon:dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24:Dec:31 Day 366 |
FORMAT_DATE('%y:%b:%e Day %j', DATE '2024-12-31') -- yy:mon: d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24:Dec:31 Day 366 |
FORMAT_DATE('%y:%h:%d Day %j', DATE '2024-12-31') -- yy:mon:dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24:Dec:31 Day 366 |
FORMAT_DATE('%y:%h:%e Day %j', DATE '2024-12-31') -- yy:mon: d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24:Dec:31 Day 366 |
FORMAT_DATE('%G:%B:%d Day %j', DATE '2024-12-31') -- Iy:month:dd The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2025:December:31 Day 366 |
FORMAT_DATE('%G:%B:%e Day %j', DATE '2024-12-31') -- Iy:month: d The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2025:December:31 Day 366 |
FORMAT_DATE('%G:%b:%d Day %j', DATE '2024-12-31') -- Iy:mon:dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2025:Dec:31 Day 366 |
FORMAT_DATE('%G:%b:%e Day %j', DATE '2024-12-31') -- Iy:mon: d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2025:Dec:31 Day 366 |
FORMAT_DATE('%G:%h:%d Day %j', DATE '2024-12-31') -- Iy:mon:dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2025:Dec:31 Day 366 |
FORMAT_DATE('%G:%h:%e Day %j', DATE '2024-12-31') -- Iy:mon: d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2025:Dec:31 Day 366 |
FORMAT_DATE('%g:%B:%d Day %j', DATE '2024-12-31') -- Iyyy:month:dd The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 25:December:31 Day 366 |
FORMAT_DATE('%g:%B:%e Day %j', DATE '2024-12-31') -- Iyyy:month: d The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 25:December:31 Day 366 |
FORMAT_DATE('%g:%b:%d Day %j', DATE '2024-12-31') -- Iyyy:mon:dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 25:Dec:31 Day 366 |
FORMAT_DATE('%g:%b:%e Day %j', DATE '2024-12-31') -- Iyyy:mon: d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 25:Dec:31 Day 366 |
FORMAT_DATE('%g:%h:%d Day %j', DATE '2024-12-31') -- Iyyy:mon:-dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 25:Dec:31 Day 366 |
FORMAT_DATE('%g:%h:%e Day %j', DATE '2024-12-31') -- Iyyy:mon: d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 25:Dec:31 Day 366 |
FORMAT_DATE('%Y.%m.%d', DATE '2024-12-31') -- yyyy.mm.dd The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 2024.12.31 |
FORMAT_DATE('%Y.%m.%e', DATE '2024-12-31') -- yyyy.mm. d The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 2024.12.31 |
FORMAT_DATE('%E4Y.%m.%d', DATE '2024-12-31') -- yyyy.mm.dd Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 2024.12.31 |
FORMAT_DATE('%E4Y.%m.%e', DATE '2024-12-31') -- yyyy.mm. d Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 2024.12.31 |
FORMAT_DATE('%y.%m.%d', DATE '2024-12-31') -- yy.mm.dd The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 24.12.31 |
FORMAT_DATE('%y.%m.%e', DATE '2024-12-31') -- yy.mm. d The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 24.12.31 |
FORMAT_DATE('%G.%m.%d', DATE '2024-12-31') -- Iyyy.mm.dd The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 2025.12.31 |
FORMAT_DATE('%G.%m.%e', DATE '2024-12-31') -- Iyyy.mm. d The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 2025.12.31 |
FORMAT_DATE('%g.%m.%d', DATE '2024-12-31') -- Iy.mm.dd The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 25.12.31 |
FORMAT_DATE('%g.%m.%e', DATE '2024-12-31') -- Iy.mm. d The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 25.12.31 |
FORMAT_DATE('%Y.%B.%d', DATE '2024-12-31') -- yyyy.month.dd The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) | 2024.December.31 |
FORMAT_DATE('%Y.%B.%e', DATE '2024-12-31') -- yyyy.month. d The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024.December.31 |
FORMAT_DATE('%Y.%b.%d', DATE '2024-12-31') -- yyyy.mon.dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024.Dec.31 |
FORMAT_DATE('%Y.%b.%e', DATE '2024-12-31') -- yyyy.mon. d The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024.Dec.31 |
FORMAT_DATE('%Y.%h.%d', DATE '2024-12-31') -- yyyy.mon.dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024.Dec.31 |
FORMAT_DATE('%Y.%h.%e', DATE '2024-12-31') -- yyyy.mon.dd The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024.Dec.31 |
FORMAT_DATE('%E4Y.%B.%d', DATE '2024-12-31') -- yyyy.month.dd Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) | 2024.December.31 |
FORMAT_DATE('%E4Y.%B.%e', DATE '2024-12-31') -- yyyy.month. d Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024.December.31 |
FORMAT_DATE('%E4Y.%b.%d', DATE '2024-12-31') -- yyyy.mon.dd Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024.Dec.31 |
FORMAT_DATE('%E4Y.%b.%e', DATE '2024-12-31') -- yyyy.mon. d Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024.Dec.31 |
FORMAT_DATE('%E4Y.%h.%d', DATE '2024-12-31') -- yyyy.mon.dd Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024.Dec.31 |
FORMAT_DATE('%E4Y.%h.%e', DATE '2024-12-31') -- yyyy.mon. d Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024.Dec.31 |
FORMAT_DATE('%y.%B.%d', DATE '2024-12-31') -- yy.month.dd The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) | 24.December.31 |
FORMAT_DATE('%y.%B.%e', DATE '2024-12-31') -- yy.month. d The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24.December.31 |
FORMAT_DATE('%y.%b.%d', DATE '2024-12-31') -- yy.mon.dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24.Dec.31 |
FORMAT_DATE('%y.%b.%e', DATE '2024-12-31') -- yy.mon. d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24.Dec.31 |
FORMAT_DATE('%y.%h.%d', DATE '2024-12-31') -- yy.mon.dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24.Dec.31 |
FORMAT_DATE('%y.%h.%e', DATE '2024-12-31') -- yy.mon. d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24.Dec.31 |
FORMAT_DATE('%G.%B.%d', DATE '2024-12-31') -- Iy.month.dd The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) | 2025.December.31 |
FORMAT_DATE('%G.%B.%e', DATE '2024-12-31') -- Iy.month.- d The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2025.December.31 |
FORMAT_DATE('%G.%b.%d', DATE '2024-12-31') -- Iy.mon.-dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2025.Dec.31 |
FORMAT_DATE('%G.%b.%e', DATE '2024-12-31') -- Iy.mon.- d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2025.Dec.31 |
FORMAT_DATE('%G.%h.%d', DATE '2024-12-31') -- Iy.mon.dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2025.Dec.31 |
FORMAT_DATE('%G.%h.%e', DATE '2024-12-31') -- Iy.mon. d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2025.Dec.31 |
FORMAT_DATE('%g.%B.%d', DATE '2024-12-31') -- Iyyy.month.dd The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) | 25.December.31 |
FORMAT_DATE('%g.%B.%e', DATE '2024-12-31') -- Iyyy.month. d The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 25.December.31 |
FORMAT_DATE('%g.%b.%d', DATE '2024-12-31') -- Iyyy.mon.dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 25.Dec.31 |
FORMAT_DATE('%g.%b.%e', DATE '2024-12-31') -- Iyyy.mon. d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 25.Dec.31 |
FORMAT_DATE('%g.%h.%d', DATE '2024-12-31') -- Iyyy.mon.dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 25.Dec.31 |
FORMAT_DATE('%g.%h.%e', DATE '2024-12-31') -- Iyyy.mon. d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 25.Dec.31 |
FORMAT_DATE('%Y.%m.%d Day %j', DATE '2024-12-31') -- yyyy.mm.dd The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 2024.12.31 Day 366 |
FORMAT_DATE('%Y.%m.%e Day %j', DATE '2024-12-31') -- yyyy.mm. d The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024.12.31 Day 366 |
FORMAT_DATE('%E4Y.%m.%d Day %j', DATE '2024-12-31') -- yyyy.mm.-dd Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 2024.12.31 Day 366 |
FORMAT_DATE('%E4Y.%m.%e Day %j', DATE '2024-12-31') -- yyyy.mm. d Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024.12.31 Day 366 |
FORMAT_DATE('%y.%m.%d Day %j', DATE '2024-12-31') -- yy.mm.dd The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 24.12.31 Day 366 |
FORMAT_DATE('%y.%m.%e Day %j', DATE '2024-12-31') -- yy.mm. d The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24.12.31 Day 366 |
FORMAT_DATE('%G.%m.%d Day %j', DATE '2024-12-31') -- Iyyy.mm.dd The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 2025.12.31 Day 366 |
FORMAT_DATE('%G.%m.%e Day %j', DATE '2024-12-31') -- Iyyy.mm. d The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2025.12.31 Day 366 |
FORMAT_DATE('%g.%m.%d Day %j', DATE '2024-12-31') -- Iy.mm.dd The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 25.12.31 Day 366 |
FORMAT_DATE('%g.%m.%e Day %j', DATE '2024-12-31') -- Iy.mm. d The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 25.12.31 Day 366 |
FORMAT_DATE('%Y.%B.%d Day %j', DATE '2024-12-31') -- yyyy.month.dd The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024.December.31 Day 366 |
FORMAT_DATE('%Y.%B.%e Day %j', DATE '2024-12-31') -- yyyy.month. d The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024.December.31 Day 366 |
FORMAT_DATE('%Y.%b.%d Day %j', DATE '2024-12-31') -- yyyy.mon.dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024.Dec.31 Day 366 |
FORMAT_DATE('%Y.%b.%e Day %j', DATE '2024-12-31') -- yyyy.mon. d The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024.Dec.31 Day 366 |
FORMAT_DATE('%Y.%h.%d Day %j', DATE '2024-12-31') -- yyyy.mon.dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024.Dec.31 Day 366 |
FORMAT_DATE('%Y.%h.%e Day %j', DATE '2024-12-31') -- yyyy.mon.-dd The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024.Dec.31 Day 366 |
FORMAT_DATE('%E4Y.%B.%d Day %j', DATE '2024-12-31') -- yyyy.month.dd Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024.December.31 Day 366 |
FORMAT_DATE('%E4Y.%B.%e Day %j', DATE '2024-12-31') -- yyyy.month. d Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024.December.31 Day 366 |
FORMAT_DATE('%E4Y.%b.%d Day %j', DATE '2024-12-31') -- yyyy.mon.dd Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024.Dec.31 Day 366 |
FORMAT_DATE('%E4Y.%b.%e Day %j', DATE '2024-12-31') -- yyyy.mon. d Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024.Dec.31 Day 366 |
FORMAT_DATE('%E4Y.%h.%d Day %j', DATE '2024-12-31') -- yyyy.mon.dd Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024.Dec.31 Day 366 |
FORMAT_DATE('%E4Y.%h.%e Day %j', DATE '2024-12-31') -- yyyy.mon. d Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024.Dec.31 Day 366 |
FORMAT_DATE('%y.%B.%d Day %j', DATE '2024-12-31') -- yy.month.dd The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24.December.31 Day 366 |
FORMAT_DATE('%y.%B.%e Day %j', DATE '2024-12-31') -- yy.month. d The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24.December.31 Day 366 |
FORMAT_DATE('%y.%b.%d Day %j', DATE '2024-12-31') -- yy.mon.dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24.Dec.31 Day 366 |
FORMAT_DATE('%y.%b.%e Day %j', DATE '2024-12-31') -- yy.mon. d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24.Dec.31 Day 366 |
FORMAT_DATE('%y.%h.%d Day %j', DATE '2024-12-31') -- yy.mon.dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24.Dec.31 Day 366 |
FORMAT_DATE('%y.%h.%e Day %j', DATE '2024-12-31') -- yy.mon. d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24.Dec.31 Day 366 |
FORMAT_DATE('%G.%B.%d Day %j', DATE '2024-12-31') -- Iy.month.dd The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2025.December.31 Day 366 |
FORMAT_DATE('%G.%B.%e Day %j', DATE '2024-12-31') -- Iy.month. d The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2025.December.31 Day 366 |
FORMAT_DATE('%G.%b.%d Day %j', DATE '2024-12-31') -- Iy.mon.dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2025.Dec.31 Day 366 |
FORMAT_DATE('%G.%b.%e Day %j', DATE '2024-12-31') -- Iy.mon. d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2025.Dec.31 Day 366 |
FORMAT_DATE('%G.%h.%d Day %j', DATE '2024-12-31') -- Iy.mon.dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2025.Dec.31 Day 366 |
FORMAT_DATE('%G.%h.%e Day %j', DATE '2024-12-31') -- Iy.mon. d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2025.Dec.31 Day 366 |
FORMAT_DATE('%g.%B.%d Day %j', DATE '2024-12-31') -- Iyyy.month.dd The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 25.December.31 Day 366 |
FORMAT_DATE('%g.%B.%e Day %j', DATE '2024-12-31') -- Iyyy.month. d The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 25.December.31 Day 366 |
FORMAT_DATE('%g.%b.%d Day %j', DATE '2024-12-31') -- Iyyy.mon.dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 25.Dec.31 Day 366 |
FORMAT_DATE('%g.%b.%e Day %j', DATE '2024-12-31') -- Iyyy.mon. d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 25.Dec.31 Day 366 |
FORMAT_DATE('%g.%h.%d Day %j', DATE '2024-12-31') -- Iyyy.mon.-dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 25.Dec.31 Day 366 |
FORMAT_DATE('%g.%h.%e Day %j', DATE '2024-12-31') -- Iyyy.mon. d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 25.Dec.31 Day 366 |
FORMAT_DATE('%Y %m %d', DATE '2024-12-31') -- yyyy mm dd The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 2024 12 31 |
FORMAT_DATE('%Y %m %e', DATE '2024-12-31') -- yyyy mm d The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 2024 12 31 |
FORMAT_DATE('%E4Y %m %d', DATE '2024-12-31') -- yyyy mm dd Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 2024 12 31 |
FORMAT_DATE('%E4Y %m %e', DATE '2024-12-31') -- yyyy mm d Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 2024 12 31 |
FORMAT_DATE('%y %m %d', DATE '2024-12-31') -- yy mm dd The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 24 12 31 |
FORMAT_DATE('%y %m %e', DATE '2024-12-31') -- yy mm d The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 24 12 31 |
FORMAT_DATE('%G %m %d', DATE '2024-12-31') -- Iyyy mm dd The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 2025 12 31 |
FORMAT_DATE('%G %m %e', DATE '2024-12-31') -- Iyyy mm d The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 2025 12 31 |
FORMAT_DATE('%g %m %d', DATE '2024-12-31') -- Iy mm dd The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 25 12 31 |
FORMAT_DATE('%g %m %e', DATE '2024-12-31') -- Iy mm d The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 25 12 31 |
FORMAT_DATE('%Y %B %d', DATE '2024-12-31') -- yyyy month dd The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) | 2024 December 31 |
FORMAT_DATE('%Y %B %e', DATE '2024-12-31') -- yyyy month d The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024 December 31 |
FORMAT_DATE('%Y %b %d', DATE '2024-12-31') -- yyyy mon dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024 Dec 31 |
FORMAT_DATE('%Y %b %e', DATE '2024-12-31') -- yyyy mon d The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024 Dec 31 |
FORMAT_DATE('%Y %h %d', DATE '2024-12-31') -- yyyy mon dd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024 Dec 31 |
FORMAT_DATE('%Y %h %e', DATE '2024-12-31') -- yyyy mon dd The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024 Dec 31 |
FORMAT_DATE('%E4Y %B %d', DATE '2024-12-31') -- yyyy month dd Four-character years (0001 9999) - The full month name - The day of the month as a decimal number (01-31) | 2024 December 31 |
FORMAT_DATE('%E4Y %B %e', DATE '2024-12-31') -- yyyy month d Four-character years (0001 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024 December 31 |
FORMAT_DATE('%E4Y %b %d', DATE '2024-12-31') -- yyyy mon dd Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024 Dec 31 |
FORMAT_DATE('%E4Y %b %e', DATE '2024-12-31') -- yyyy mon d Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024 Dec 31 |
FORMAT_DATE('%E4Y %h %d', DATE '2024-12-31') -- yyyy mon dd Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024 Dec 31 |
FORMAT_DATE('%E4Y %h %e', DATE '2024-12-31') -- yyyy mon d Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024 Dec 31 |
FORMAT_DATE('%y %B %d', DATE '2024-12-31') -- yy month dd The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) | 24 December 31 |
FORMAT_DATE('%y %B %e', DATE '2024-12-31') -- yy month d The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24 December 31 |
FORMAT_DATE('%y %b %d', DATE '2024-12-31') -- yy mon dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24 Dec 31 |
FORMAT_DATE('%y %b %e', DATE '2024-12-31') -- yy mon d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24 Dec 31 |
FORMAT_DATE('%y %h %d', DATE '2024-12-31') -- yy mon dd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24 Dec 31 |
FORMAT_DATE('%y %h %e', DATE '2024-12-31') -- yy mon d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24 Dec 31 |
FORMAT_DATE('%G %B %d', DATE '2024-12-31') -- Iy month dd The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) | 2025 December 31 |
FORMAT_DATE('%G %B %e', DATE '2024-12-31') -- Iy month - d The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2025 December 31 |
FORMAT_DATE('%G %b %d', DATE '2024-12-31') -- Iy mon -dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2025 Dec 31 |
FORMAT_DATE('%G %b %e', DATE '2024-12-31') -- Iy mon - d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2025 Dec 31 |
FORMAT_DATE('%G %h %d', DATE '2024-12-31') -- Iy mon dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2025 Dec 31 |
FORMAT_DATE('%G %h %e', DATE '2024-12-31') -- Iy mon d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2025 Dec 31 |
FORMAT_DATE('%g %B %d', DATE '2024-12-31') -- Iyyy month dd The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) | 25 December 31 |
FORMAT_DATE('%g %B %e', DATE '2024-12-31') -- Iyyy month d The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 25 December 31 |
FORMAT_DATE('%g %b %d', DATE '2024-12-31') -- Iyyy mon dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 25 Dec 31 |
FORMAT_DATE('%g %b %e', DATE '2024-12-31') -- Iyyy mon d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 25 Dec 31 |
FORMAT_DATE('%g %h %d', DATE '2024-12-31') -- Iyyy mon dd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 25 Dec 31 |
FORMAT_DATE('%g %h %e', DATE '2024-12-31') -- Iyyy mon d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 25 Dec 31 |
FORMAT_DATE('%Y %m %d Day %j', DATE '2024-12-31') -- yyyy mm dd doy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 2024 12 31 Day 366 |
FORMAT_DATE('%Y %m %e Day %j', DATE '2024-12-31') -- yyyy mm d doy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024 12 31 Day 366 |
FORMAT_DATE('%E4Y %m %d Day %j', DATE '2024-12-31') -- yyyy mm -dd doy Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 2024 12 31 Day 366 |
FORMAT_DATE('%E4Y %m %e Day %j', DATE '2024-12-31') -- yyyy mm d doy Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024 12 31 Day 366 |
FORMAT_DATE('%y %m %d Day %j', DATE '2024-12-31') -- yy mm dd doy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 24 12 31 Day 366 |
FORMAT_DATE('%y %m %e Day %j', DATE '2024-12-31') -- yy mm d doy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24 12 31 Day 366 |
FORMAT_DATE('%G %m %d Day %j', DATE '2024-12-31') -- Iyyy mm dd doy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 2025 12 31 Day 366 |
FORMAT_DATE('%G %m %e Day %j', DATE '2024-12-31') -- Iyyy mm d doy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2025 12 31 Day 366 |
FORMAT_DATE('%g %m %d Day %j', DATE '2024-12-31') -- Iy mm dd doy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 25 12 31 Day 366 |
FORMAT_DATE('%g %m %e Day %j', DATE '2024-12-31') -- Iy mm d doy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 25 12 31 Day 366 |
FORMAT_DATE('%Y %B %d Day %j', DATE '2024-12-31') -- yyyy month dd doy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024 December 31 Day 366 |
FORMAT_DATE('%Y %B %e Day %j', DATE '2024-12-31') -- yyyy month d doy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024 December 31 Day 366 |
FORMAT_DATE('%Y %b %d Day %j', DATE '2024-12-31') -- yyyy mon dd doy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024 Dec 31 Day 366 |
FORMAT_DATE('%Y %b %e Day %j', DATE '2024-12-31') -- yyyy mon d doy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024 Dec 31 Day 366 |
FORMAT_DATE('%Y %h %d Day %j', DATE '2024-12-31') -- yyyy mon dd doy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024 Dec 31 Day 366 |
FORMAT_DATE('%Y %h %e Day %j', DATE '2024-12-31') -- yyyy mon -dd doy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024 Dec 31 Day 366 |
FORMAT_DATE('%E4Y %B %d Day %j', DATE '2024-12-31') -- yyyy month dd doy Four-character years (0001 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024 December 31 Day 366 |
FORMAT_DATE('%E4Y %B %e Day %j', DATE '2024-12-31') -- yyyy month d doy Four-character years (0001 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024 December 31 Day 366 |
FORMAT_DATE('%E4Y %b %d Day %j', DATE '2024-12-31') -- yyyy mon dd doy Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024 Dec 31 Day 366 |
FORMAT_DATE('%E4Y %b %e Day %j', DATE '2024-12-31') -- yyyy mon d doy Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024 Dec 31 Day 366 |
FORMAT_DATE('%E4Y %h %d Day %j', DATE '2024-12-31') -- yyyy mon dd doy Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024 Dec 31 Day 366 |
FORMAT_DATE('%E4Y %h %e Day %j', DATE '2024-12-31') -- yyyy mon d doy Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024 Dec 31 Day 366 |
FORMAT_DATE('%y %B %d Day %j', DATE '2024-12-31') -- yy month dd doy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24 December 31 Day 366 |
FORMAT_DATE('%y %B %e Day %j', DATE '2024-12-31') -- yy month d doy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24 December 31 Day 366 |
FORMAT_DATE('%y %b %d Day %j', DATE '2024-12-31') -- yy mon dd doy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24 Dec 31 Day 366 |
FORMAT_DATE('%y %b %e Day %j', DATE '2024-12-31') -- yy mon d doy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24 Dec 31 Day 366 |
FORMAT_DATE('%y %h %d Day %j', DATE '2024-12-31') -- yy mon dd doy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24 Dec 31 Day 366 |
FORMAT_DATE('%y %h %e Day %j', DATE '2024-12-31') -- yy mon d doy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24 Dec 31 Day 366 |
FORMAT_DATE('%G %B %d Day %j', DATE '2024-12-31') -- Iy month dd doy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2025 December 31 Day 366 |
FORMAT_DATE('%G %B %e Day %j', DATE '2024-12-31') -- Iy month d doy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2025 December 31 Day 366 |
FORMAT_DATE('%G %b %d Day %j', DATE '2024-12-31') -- Iy mon dd doy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2025 Dec 31 Day 366 |
FORMAT_DATE('%G %b %e Day %j', DATE '2024-12-31') -- Iy mon d doy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2025 Dec 31 Day 366 |
FORMAT_DATE('%G %h %d Day %j', DATE '2024-12-31') -- Iy mon dd doy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2025 Dec 31 Day 366 |
FORMAT_DATE('%G %h %e Day %j', DATE '2024-12-31') -- Iy mon d doy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2025 Dec 31 Day 366 |
FORMAT_DATE('%g %B %d Day %j', DATE '2024-12-31') -- Iyyy month doy dd The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 25 December 31 Day 366 |
FORMAT_DATE('%g %B %e Day %j', DATE '2024-12-31') -- Iyyy month doy d The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 25 December 31 Day 366 |
FORMAT_DATE('%g %b %d Day %j', DATE '2024-12-31') -- Iyyy mon dd doy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 25 Dec 31 Day 366 |
FORMAT_DATE('%g %b %e Day %j', DATE '2024-12-31') -- Iyyy mon d doy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 25 Dec 31 Day 366 |
FORMAT_DATE('%g %h %d Day %j', DATE '2024-12-31') -- Iyyy mon -dd doy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 25 Dec 31 Day 366 |
FORMAT_DATE('%g %h %e Day %j', DATE '2024-12-31') -- Iyyy mon d doy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 25 Dec 31 Day 366 |
FORMAT_DATE('%Y%m%d', DATE '2024-12-31') -- yyyymmdd The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 20241231 |
FORMAT_DATE('%Y%m%e', DATE '2024-12-31') -- yyyymm d The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 20241231 |
FORMAT_DATE('%E4Y%m%d', DATE '2024-12-31') -- yyyymmdd Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 20241231 |
FORMAT_DATE('%E4Y%m%e', DATE '2024-12-31') -- yyyymm d Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 20241231 |
FORMAT_DATE('%y%m%d', DATE '2024-12-31') -- yymmdd The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 241231 |
FORMAT_DATE('%y%m%e', DATE '2024-12-31') -- yymm d The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 241231 |
FORMAT_DATE('%G%m%d', DATE '2024-12-31') -- Iyyymmdd The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 20251231 |
FORMAT_DATE('%G%m%e', DATE '2024-12-31') -- Iyyymm d The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 20251231 |
FORMAT_DATE('%g%m%d', DATE '2024-12-31') -- Iymmdd The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) | 251231 |
FORMAT_DATE('%g%m%e', DATE '2024-12-31') -- Iymm d The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space | 251231 |
FORMAT_DATE('%Y%B%d', DATE '2024-12-31') -- yyyymonthdd The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) | 2024December31 |
FORMAT_DATE('%Y%B%e', DATE '2024-12-31') -- yyyymonth d The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024December31 |
FORMAT_DATE('%Y%b%d', DATE '2024-12-31') -- yyyymondd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024Dec31 |
FORMAT_DATE('%Y%b%e', DATE '2024-12-31') -- yyyymon d The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024Dec31 |
FORMAT_DATE('%Y%h%d', DATE '2024-12-31') -- yyyymondd The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024Dec31 |
FORMAT_DATE('%Y%h%e', DATE '2024-12-31') -- yyyymondd The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024Dec31 |
FORMAT_DATE('%E4Y%B%d', DATE '2024-12-31') -- yyyymonthdd Four-character years (0001 9999) - The full month name - The day of the month as a decimal number (01-31) | 2024December31 |
FORMAT_DATE('%E4Y%B%e', DATE '2024-12-31') -- yyyymonth d Four-character years (0001 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024December31 |
FORMAT_DATE('%E4Y%b%d', DATE '2024-12-31') -- yyyymondd Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024Dec31 |
FORMAT_DATE('%E4Y%b%e', DATE '2024-12-31') -- yyyymon d Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024Dec31 |
FORMAT_DATE('%E4Y%h%d', DATE '2024-12-31') -- yyyymondd Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) | 2024Dec31 |
FORMAT_DATE('%E4Y%h%e', DATE '2024-12-31') -- yyyymon d Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2024Dec31 |
FORMAT_DATE('%y%B%d', DATE '2024-12-31') -- yymonthdd The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) | 24December31 |
FORMAT_DATE('%y%B%e', DATE '2024-12-31') -- yymonth d The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24December31 |
FORMAT_DATE('%y%b%d', DATE '2024-12-31') -- yymondd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24Dec31 |
FORMAT_DATE('%y%b%e', DATE '2024-12-31') -- yymon d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24Dec31 |
FORMAT_DATE('%y%h%d', DATE '2024-12-31') -- yymondd The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 24Dec31 |
FORMAT_DATE('%y%h%e', DATE '2024-12-31') -- yymon d The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 24Dec31 |
FORMAT_DATE('%G%B%d', DATE '2024-12-31') -- Iymonthdd The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) | 2025December31 |
FORMAT_DATE('%G%B%e', DATE '2024-12-31') -- Iymonth- d The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2025December31 |
FORMAT_DATE('%G%b%d', DATE '2024-12-31') -- Iymon-dd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2025Dec31 |
FORMAT_DATE('%G%b%e', DATE '2024-12-31') -- Iymon- d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2025Dec31 |
FORMAT_DATE('%G%h%d', DATE '2024-12-31') -- Iymondd The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) | 2025Dec31 |
FORMAT_DATE('%G%h%e', DATE '2024-12-31') -- Iymon d The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 2025Dec31 |
FORMAT_DATE('%g%B%d', DATE '2024-12-31') -- Iyyymonthdd The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) | 25December31 |
FORMAT_DATE('%g%B%e', DATE '2024-12-31') -- Iyyymonth d The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space | 25December31 |
FORMAT_DATE('%g%b%d', DATE '2024-12-31') -- Iyyymondd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 25Dec31 |
FORMAT_DATE('%g%b%e', DATE '2024-12-31') -- Iyyymon d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 25Dec31 |
FORMAT_DATE('%g%h%d', DATE '2024-12-31') -- Iyyymondd The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) | 25Dec31 |
FORMAT_DATE('%g%h%e', DATE '2024-12-31') -- Iyyymon d The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space | 25Dec31 |
FORMAT_DATE('%Y%m%d Day %j', DATE '2024-12-31') -- yyyymmdd doy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 20241231 Day 366 |
FORMAT_DATE('%Y%m%e Day %j', DATE '2024-12-31') -- yyyymm d doy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 20241231 Day 366 |
FORMAT_DATE('%E4Y%m%d Day %j', DATE '2024-12-31') -- yyyymm-dd doy Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 20241231 Day 366 |
FORMAT_DATE('%E4Y%m%e Day %j', DATE '2024-12-31') -- yyyymm d doy Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 20241231 Day 366 |
FORMAT_DATE('%y%m%d Day %j', DATE '2024-12-31') -- yymmdd doy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 241231 Day 366 |
FORMAT_DATE('%y%m%e Day %j', DATE '2024-12-31') -- yymm d doy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 241231 Day 366 |
FORMAT_DATE('%G%m%d Day %j', DATE '2024-12-31') -- Iyyymmdd doy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 20251231 Day 366 |
FORMAT_DATE('%G%m%e Day %j', DATE '2024-12-31') -- Iyyymm d doy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 20251231 Day 366 |
FORMAT_DATE('%g%m%d Day %j', DATE '2024-12-31') -- Iymmdd doy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of year | 251231 Day 366 |
FORMAT_DATE('%g%m%e Day %j', DATE '2024-12-31') -- Iymm d doy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 251231 Day 366 |
FORMAT_DATE('%Y%B%d Day %j', DATE '2024-12-31') -- yyyymonthdd doy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024December31 Day 366 |
FORMAT_DATE('%Y%B%e Day %j', DATE '2024-12-31') -- yyyymonth d doy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024December31 Day 366 |
FORMAT_DATE('%Y%b%d Day %j', DATE '2024-12-31') -- yyyymondd doy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024Dec31 Day 366 |
FORMAT_DATE('%Y%b%e Day %j', DATE '2024-12-31') -- yyyymon d doy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024Dec31 Day 366 |
FORMAT_DATE('%Y%h%d Day %j', DATE '2024-12-31') -- yyyymondd doy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024Dec31 Day 366 |
FORMAT_DATE('%Y%h%e Day %j', DATE '2024-12-31') -- yyyymon-dd doy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024Dec31 Day 366 |
FORMAT_DATE('%E4Y%B%d Day %j', DATE '2024-12-31') -- yyyymonthdd doy Four-character years (0001 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024December31 Day 366 |
FORMAT_DATE('%E4Y%B%e Day %j', DATE '2024-12-31') -- yyyymonth d doy Four-character years (0001 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024December31 Day 366 |
FORMAT_DATE('%E4Y%b%d Day %j', DATE '2024-12-31') -- yyyymondd doy Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024Dec31 Day 366 |
FORMAT_DATE('%E4Y%b%e Day %j', DATE '2024-12-31') -- yyyymon d doy Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024Dec31 Day 366 |
FORMAT_DATE('%E4Y%h%d Day %j', DATE '2024-12-31') -- yyyymondd doy Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2024Dec31 Day 366 |
FORMAT_DATE('%E4Y%h%e Day %j', DATE '2024-12-31') -- yyyymon d doy Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2024Dec31 Day 366 |
FORMAT_DATE('%y%B%d Day %j', DATE '2024-12-31') -- yymonthdd doy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24December31 Day 366 |
FORMAT_DATE('%y%B%e Day %j', DATE '2024-12-31') -- yymonth d doy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24December31 Day 366 |
FORMAT_DATE('%y%b%d Day %j', DATE '2024-12-31') -- yymondd doy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24Dec31 Day 366 |
FORMAT_DATE('%y%b%e Day %j', DATE '2024-12-31') -- yymon d doy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24Dec31 Day 366 |
FORMAT_DATE('%y%h%d Day %j', DATE '2024-12-31') -- yymondd doy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 24Dec31 Day 366 |
FORMAT_DATE('%y%h%e Day %j', DATE '2024-12-31') -- yymon d doy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 24Dec31 Day 366 |
FORMAT_DATE('%G%B%d Day %j', DATE '2024-12-31') -- Iymonthdd doy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2025December31 Day 366 |
FORMAT_DATE('%G%B%e Day %j', DATE '2024-12-31') -- Iymonth d doy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2025December31 Day 366 |
FORMAT_DATE('%G%b%d Day %j', DATE '2024-12-31') -- Iymondd doy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2025Dec31 Day 366 |
FORMAT_DATE('%G%b%e Day %j', DATE '2024-12-31') -- Iymon d doy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2025Dec31 Day 366 |
FORMAT_DATE('%G%h%d Day %j', DATE '2024-12-31') -- Iymondd doy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 2025Dec31 Day 366 |
FORMAT_DATE('%G%h%e Day %j', DATE '2024-12-31') -- Iymon d doy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 2025Dec31 Day 366 |
FORMAT_DATE('%g%B%d Day %j', DATE '2024-12-31') -- Iyyymonthdd doy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of year | 25December31 Day 366 |
FORMAT_DATE('%g%B%e Day %j', DATE '2024-12-31') -- Iyyymonth d doy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 25December31 Day 366 |
FORMAT_DATE('%g%b%d Day %j', DATE '2024-12-31') -- Iyyymondd doy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 25Dec31 Day 366 |
FORMAT_DATE('%g%b%e Day %j', DATE '2024-12-31') -- Iyyymon d doy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 25Dec31 Day 366 |
FORMAT_DATE('%g%h%d Day %j', DATE '2024-12-31') -- Iyyymon-dd doy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of year | 25Dec31 Day 366 |
FORMAT_DATE('%g%h%e Day %j', DATE '2024-12-31') -- Iyyymon d doy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of year | 25Dec31 Day 366 |
FORMAT_DATE('%Y-%m-%d %A', DATE '2024-12-31') -- yyyy-mm-dd DOW The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024-12-31 Tuesday |
FORMAT_DATE('%Y-%m-%e %A', DATE '2024-12-31') -- yyyy-mm- d DOW The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024-12-31 Tuesday |
FORMAT_DATE('%E4Y-%m-%d %A', DATE '2024-12-31') -- yyyy-mm-dd DOW Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024-12-31 Tuesday |
FORMAT_DATE('%E4Y-%m-%e %A', DATE '2024-12-31') -- yyyy-mm- d DOW Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024-12-31 Tuesday |
FORMAT_DATE('%y-%m-%d %A', DATE '2024-12-31') -- yy-mm-dd DOW The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 24-12-31 Tuesday |
FORMAT_DATE('%y-%m-%e %A', DATE '2024-12-31') -- yy-mm- d DOW The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24-12-31 Tuesday |
FORMAT_DATE('%G-%m-%d %A', DATE '2024-12-31') -- Iyyy-mm-dd DOW The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 2025-12-31 Tuesday |
FORMAT_DATE('%G-%m-%e %A', DATE '2024-12-31') -- Iyyy-mm- d DOW The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2025-12-31 Tuesday |
FORMAT_DATE('%g-%m-%d %A', DATE '2024-12-31') -- Iy-mm-dd DOW The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 25-12-31 Tuesday |
FORMAT_DATE('%g-%m-%e %A', DATE '2024-12-31') -- Iy-mm- d DOW The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 25-12-31 Tuesday |
FORMAT_DATE('%Y-%B-%d %A', DATE '2024-12-31') -- yyyy-month-dd DOW The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024-December-31 Tuesday |
FORMAT_DATE('%Y-%B-%e %A', DATE '2024-12-31') -- yyyy-month- d DOW The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024-December-31 Tuesday |
FORMAT_DATE('%Y-%b-%d %A', DATE '2024-12-31') -- yyyy-mon-dd DOW The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024-Dec-31 Tuesday |
FORMAT_DATE('%Y-%b-%e %A', DATE '2024-12-31') -- yyyy-mon- d DOW The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024-Dec-31 Tuesday |
FORMAT_DATE('%Y-%h-%d %A', DATE '2024-12-31') -- yyyy-mon-dd DOW The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024-Dec-31 Tuesday |
FORMAT_DATE('%Y-%h-%e %A', DATE '2024-12-31') -- yyyy-mon-dd DOW The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024-Dec-31 Tuesday |
FORMAT_DATE('%E4Y-%B-%d %A', DATE '2024-12-31') -- yyyy-month-dd DOW Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024-December-31 Tuesday |
FORMAT_DATE('%E4Y-%B-%e %A', DATE '2024-12-31') -- yyyy-month- d DOW Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024-December-31 Tuesday |
FORMAT_DATE('%E4Y-%b-%d %A', DATE '2024-12-31') -- yyyy-mon-dd DOW Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024-Dec-31 Tuesday |
FORMAT_DATE('%E4Y-%b-%e %A', DATE '2024-12-31') -- yyyy-mon- d DOW Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024-Dec-31 Tuesday |
FORMAT_DATE('%E4Y-%h-%d %A', DATE '2024-12-31') -- yyyy-mon-dd DOW Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024-Dec-31 Tuesday |
FORMAT_DATE('%E4Y-%h-%e %A', DATE '2024-12-31') -- yyyy-mon- d DOW Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024-Dec-31 Tuesday |
FORMAT_DATE('%y-%B-%d %A', DATE '2024-12-31') -- yy-month-dd DOW The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24-December-31 Tuesday |
FORMAT_DATE('%y-%B-%e %A', DATE '2024-12-31') -- yy-month- d DOW The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24-December-31 Tuesday |
FORMAT_DATE('%y-%b-%d %A', DATE '2024-12-31') -- yy-mon-dd DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24-Dec-31 Tuesday |
FORMAT_DATE('%y-%b-%e %A', DATE '2024-12-31') -- yy-mon- d DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24-Dec-31 Tuesday |
FORMAT_DATE('%y-%h-%d %A', DATE '2024-12-31') -- yy-mon-dd DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24-Dec-31 Tuesday |
FORMAT_DATE('%y-%h-%e %A', DATE '2024-12-31') -- yy-mon- d DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24-Dec-31 Tuesday |
FORMAT_DATE('%G-%B-%d %A', DATE '2024-12-31') -- Iy-month-dd DOW The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2025-December-31 Tuesday |
FORMAT_DATE('%G-%B-%e %A', DATE '2024-12-31') -- Iy-month- d DOW The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2025-December-31 Tuesday |
FORMAT_DATE('%G-%b-%d %A', DATE '2024-12-31') -- Iy-mon-dd DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2025-Dec-31 Tuesday |
FORMAT_DATE('%G-%b-%e %A', DATE '2024-12-31') -- Iy-mon- d DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2025-Dec-31 Tuesday |
FORMAT_DATE('%G-%h-%d %A', DATE '2024-12-31') -- Iy-mon-dd DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2025-Dec-31 Tuesday |
FORMAT_DATE('%G-%h-%e %A', DATE '2024-12-31') -- Iy-mon- d DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2025-Dec-31 Tuesday |
FORMAT_DATE('%g-%B-%d %A', DATE '2024-12-31') -- Iyyy-month-dd DOW The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 25-December-31 Tuesday |
FORMAT_DATE('%g-%B-%e %A', DATE '2024-12-31') -- Iyyy-month- d DOW The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 25-December-31 Tuesday |
FORMAT_DATE('%g-%b-%d %A', DATE '2024-12-31') -- Iyyy-mon-dd DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 25-Dec-31 Tuesday |
FORMAT_DATE('%g-%b-%e %A', DATE '2024-12-31') -- Iyyy-mon- d DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 25-Dec-31 Tuesday |
FORMAT_DATE('%g-%h-%d %A', DATE '2024-12-31') -- Iyyy-mon-dd DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 25-Dec-31 Tuesday |
FORMAT_DATE('%g-%h-%e %A', DATE '2024-12-31') -- Iyyy-mon- d DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 25-Dec-31 Tuesday |
FORMAT_DATE('%Y/%m/%d %A', DATE '2024-12-31') -- yyyy/mm/dd DOW The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024/12/31 Tuesday |
FORMAT_DATE('%Y/%m/%e %A', DATE '2024-12-31') -- yyyy/mm/ d DOW The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024/12/31 Tuesday |
FORMAT_DATE('%E4Y/%m/%d %A', DATE '2024-12-31') -- yyyy/mm/-dd DOW Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024/12/31 Tuesday |
FORMAT_DATE('%E4Y/%m/%e %A', DATE '2024-12-31') -- yyyy/mm/ d DOW Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024/12/31 Tuesday |
FORMAT_DATE('%y/%m/%d %A', DATE '2024-12-31') -- yy/mm/dd DOW The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 24/12/31 Tuesday |
FORMAT_DATE('%y/%m/%e %A', DATE '2024-12-31') -- yy/mm/ d DOW The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24/12/31 Tuesday |
FORMAT_DATE('%G/%m/%d %A', DATE '2024-12-31') -- Iyyy/mm/dd DOW The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 2025/12/31 Tuesday |
FORMAT_DATE('%G/%m/%e %A', DATE '2024-12-31') -- Iyyy/mm/ d DOW The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2025/12/31 Tuesday |
FORMAT_DATE('%g/%m/%d %A', DATE '2024-12-31') -- Iy/mm/dd DOW The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 25/12/31 Tuesday |
FORMAT_DATE('%g/%m/%e %A', DATE '2024-12-31') -- Iy/mm/ d DOW The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 25/12/31 Tuesday |
FORMAT_DATE('%Y/%B/%d %A', DATE '2024-12-31') -- yyyy/month/dd DOW The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024/December/31 Tuesday |
FORMAT_DATE('%Y/%B/%e %A', DATE '2024-12-31') -- yyyy/month/ d DOW The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024/December/31 Tuesday |
FORMAT_DATE('%Y/%b/%d %A', DATE '2024-12-31') -- yyyy/mon/dd DOW The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024/Dec/31 Tuesday |
FORMAT_DATE('%Y/%b/%e %A', DATE '2024-12-31') -- yyyy/mon/ d DOW The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024/Dec/31 Tuesday |
FORMAT_DATE('%Y/%h/%d %A', DATE '2024-12-31') -- yyyy/mon/dd DOW The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024/Dec/31 Tuesday |
FORMAT_DATE('%Y/%h/%e %A', DATE '2024-12-31') -- yyyy/mon/-dd DOW The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024/Dec/31 Tuesday |
FORMAT_DATE('%E4Y/%B/%d %A', DATE '2024-12-31') -- yyyy/month/dd DOW Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024/December/31 Tuesday |
FORMAT_DATE('%E4Y/%B/%e %A', DATE '2024-12-31') -- yyyy/month/ d DOW Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024/December/31 Tuesday |
FORMAT_DATE('%E4Y/%b/%d %A', DATE '2024-12-31') -- yyyy/mon/dd DOW Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024/Dec/31 Tuesday |
FORMAT_DATE('%E4Y/%b/%e %A', DATE '2024-12-31') -- yyyy/mon/ d DOW Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024/Dec/31 Tuesday |
FORMAT_DATE('%E4Y/%h/%d %A', DATE '2024-12-31') -- yyyy/mon/dd DOW Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024/Dec/31 Tuesday |
FORMAT_DATE('%E4Y/%h/%e %A', DATE '2024-12-31') -- yyyy/mon/ d DOW Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024/Dec/31 Tuesday |
FORMAT_DATE('%y/%B/%d %A', DATE '2024-12-31') -- yy/month/dd DOW The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24/December/31 Tuesday |
FORMAT_DATE('%y/%B/%e %A', DATE '2024-12-31') -- yy/month/ d DOW The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24/December/31 Tuesday |
FORMAT_DATE('%y/%b/%d %A', DATE '2024-12-31') -- yy/mon/dd DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24/Dec/31 Tuesday |
FORMAT_DATE('%y/%b/%e %A', DATE '2024-12-31') -- yy/mon/ d DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24/Dec/31 Tuesday |
FORMAT_DATE('%y/%h/%d %A', DATE '2024-12-31') -- yy/mon/dd DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24/Dec/31 Tuesday |
FORMAT_DATE('%y/%h/%e %A', DATE '2024-12-31') -- yy/mon/ d DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24/Dec/31 Tuesday |
FORMAT_DATE('%G/%B/%d %A', DATE '2024-12-31') -- Iy/month/dd DOW The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2025/December/31 Tuesday |
FORMAT_DATE('%G/%B/%e %A', DATE '2024-12-31') -- Iy/month/ d DOW The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2025/December/31 Tuesday |
FORMAT_DATE('%G/%b/%d %A', DATE '2024-12-31') -- Iy/mon/dd DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2025/Dec/31 Tuesday |
FORMAT_DATE('%G/%b/%e %A', DATE '2024-12-31') -- Iy/mon/ d DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2025/Dec/31 Tuesday |
FORMAT_DATE('%G/%h/%d %A', DATE '2024-12-31') -- Iy/mon/dd DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2025/Dec/31 Tuesday |
FORMAT_DATE('%G/%h/%e %A', DATE '2024-12-31') -- Iy/mon/ d DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2025/Dec/31 Tuesday |
FORMAT_DATE('%g/%B/%d %A', DATE '2024-12-31') -- Iyyy/month/dd DOW The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 25/December/31 Tuesday |
FORMAT_DATE('%g/%B/%e %A', DATE '2024-12-31') -- Iyyy/month/ d DOW The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 25/December/31 Tuesday |
FORMAT_DATE('%g/%b/%d %A', DATE '2024-12-31') -- Iyyy/mon/dd DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 25/Dec/31 Tuesday |
FORMAT_DATE('%g/%b/%e %A', DATE '2024-12-31') -- Iyyy/mon/ d DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 25/Dec/31 Tuesday |
FORMAT_DATE('%g/%h/%d %A', DATE '2024-12-31') -- Iyyy/mon/-dd DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 25/Dec/31 Tuesday |
FORMAT_DATE('%g/%h/%e %A', DATE '2024-12-31') -- Iyyy/mon/ d DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 25/Dec/31 Tuesday |
FORMAT_DATE('%Y:%m:%d %A', DATE '2024-12-31') -- yyyy:mm:dd DOW The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024:12:31 Tuesday |
FORMAT_DATE('%Y:%m:%e %A', DATE '2024-12-31') -- yyyy:mm: d DOW The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024:12:31 Tuesday |
FORMAT_DATE('%E4Y:%m:%d %A', DATE '2024-12-31') -- yyyy:mm:-dd DOW Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024:12:31 Tuesday |
FORMAT_DATE('%E4Y:%m:%e %A', DATE '2024-12-31') -- yyyy:mm: d DOW Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024:12:31 Tuesday |
FORMAT_DATE('%y:%m:%d %A', DATE '2024-12-31') -- yy:mm:dd DOW The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 24:12:31 Tuesday |
FORMAT_DATE('%y:%m:%e %A', DATE '2024-12-31') -- yy:mm: d DOW The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24:12:31 Tuesday |
FORMAT_DATE('%G:%m:%d %A', DATE '2024-12-31') -- Iyyy:mm:dd DOW The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 2025:12:31 Tuesday |
FORMAT_DATE('%G:%m:%e %A', DATE '2024-12-31') -- Iyyy:mm: d DOW The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2025:12:31 Tuesday |
FORMAT_DATE('%g:%m:%d %A', DATE '2024-12-31') -- Iy:mm:dd DOW The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 25:12:31 Tuesday |
FORMAT_DATE('%g:%m:%e %A', DATE '2024-12-31') -- Iy:mm: d DOW The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 25:12:31 Tuesday |
FORMAT_DATE('%Y:%B:%d %A', DATE '2024-12-31') -- yyyy:month:dd DOW The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024:December:31 Tuesday |
FORMAT_DATE('%Y:%B:%e %A', DATE '2024-12-31') -- yyyy:month: d DOW The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024:December:31 Tuesday |
FORMAT_DATE('%Y:%b:%d %A', DATE '2024-12-31') -- yyyy:mon:dd DOW The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024:Dec:31 Tuesday |
FORMAT_DATE('%Y:%b:%e %A', DATE '2024-12-31') -- yyyy:mon: d DOW The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024:Dec:31 Tuesday |
FORMAT_DATE('%Y:%h:%d %A', DATE '2024-12-31') -- yyyy:mon:dd DOW The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024:Dec:31 Tuesday |
FORMAT_DATE('%Y:%h:%e %A', DATE '2024-12-31') -- yyyy:mon:-dd DOW The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024:Dec:31 Tuesday |
FORMAT_DATE('%E4Y:%B:%d %A', DATE '2024-12-31') -- yyyy:month:dd DOW Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024:December:31 Tuesday |
FORMAT_DATE('%E4Y:%B:%e %A', DATE '2024-12-31') -- yyyy:month: d DOW Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024:December:31 Tuesday |
FORMAT_DATE('%E4Y:%b:%d %A', DATE '2024-12-31') -- yyyy:mon:dd DOW Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024:Dec:31 Tuesday |
FORMAT_DATE('%E4Y:%b:%e %A', DATE '2024-12-31') -- yyyy:mon: d DOW Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024:Dec:31 Tuesday |
FORMAT_DATE('%E4Y:%h:%d %A', DATE '2024-12-31') -- yyyy:mon:dd DOW Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024:Dec:31 Tuesday |
FORMAT_DATE('%E4Y:%h:%e %A', DATE '2024-12-31') -- yyyy:mon: d DOW Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024:Dec:31 Tuesday |
FORMAT_DATE('%y:%B:%d %A', DATE '2024-12-31') -- yy:month:dd DOW The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24:December:31 Tuesday |
FORMAT_DATE('%y:%B:%e %A', DATE '2024-12-31') -- yy:month: d DOW The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24:December:31 Tuesday |
FORMAT_DATE('%y:%b:%d %A', DATE '2024-12-31') -- yy:mon:dd DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24:Dec:31 Tuesday |
FORMAT_DATE('%y:%b:%e %A', DATE '2024-12-31') -- yy:mon: d DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24:Dec:31 Tuesday |
FORMAT_DATE('%y:%h:%d %A', DATE '2024-12-31') -- yy:mon:dd DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24:Dec:31 Tuesday |
FORMAT_DATE('%y:%h:%e %A', DATE '2024-12-31') -- yy:mon: d DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24:Dec:31 Tuesday |
FORMAT_DATE('%G:%B:%d %A', DATE '2024-12-31') -- Iy:month:dd DOW The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2025:December:31 Tuesday |
FORMAT_DATE('%G:%B:%e %A', DATE '2024-12-31') -- Iy:month: d DOW The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2025:December:31 Tuesday |
FORMAT_DATE('%G:%b:%d %A', DATE '2024-12-31') -- Iy:mon:dd DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2025:Dec:31 Tuesday |
FORMAT_DATE('%G:%b:%e %A', DATE '2024-12-31') -- Iy:mon: d DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2025:Dec:31 Tuesday |
FORMAT_DATE('%G:%h:%d %A', DATE '2024-12-31') -- Iy:mon:dd DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2025:Dec:31 Tuesday |
FORMAT_DATE('%G:%h:%e %A', DATE '2024-12-31') -- Iy:mon: d DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2025:Dec:31 Tuesday |
FORMAT_DATE('%g:%B:%d %A', DATE '2024-12-31') -- Iyyy:month:dd DOW The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 25:December:31 Tuesday |
FORMAT_DATE('%g:%B:%e %A', DATE '2024-12-31') -- Iyyy:month: d DOW The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 25:December:31 Tuesday |
FORMAT_DATE('%g:%b:%d %A', DATE '2024-12-31') -- Iyyy:mon:dd DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 25:Dec:31 Tuesday |
FORMAT_DATE('%g:%b:%e %A', DATE '2024-12-31') -- Iyyy:mon: d DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 25:Dec:31 Tuesday |
FORMAT_DATE('%g:%h:%d %A', DATE '2024-12-31') -- Iyyy:mon:-dd DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 25:Dec:31 Tuesday |
FORMAT_DATE('%g:%h:%e %A', DATE '2024-12-31') -- Iyyy:mon: d DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 25:Dec:31 Tuesday |
FORMAT_DATE('%Y.%m.%d %A', DATE '2024-12-31') -- yyyy.mm.dd DOW The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024.12.31 Tuesday |
FORMAT_DATE('%Y.%m.%e %A', DATE '2024-12-31') -- yyyy.mm. d DOW The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024.12.31 Tuesday |
FORMAT_DATE('%E4Y.%m.%d %A', DATE '2024-12-31') -- yyyy.mm.-dd DOW Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024.12.31 Tuesday |
FORMAT_DATE('%E4Y.%m.%e %A', DATE '2024-12-31') -- yyyy.mm. d DOW Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024.12.31 Tuesday |
FORMAT_DATE('%y.%m.%d %A', DATE '2024-12-31') -- yy.mm.dd DOW The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 24.12.31 Tuesday |
FORMAT_DATE('%y.%m.%e %A', DATE '2024-12-31') -- yy.mm. d DOW The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24.12.31 Tuesday |
FORMAT_DATE('%G.%m.%d %A', DATE '2024-12-31') -- Iyyy.mm.dd DOW The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 2025.12.31 Tuesday |
FORMAT_DATE('%G.%m.%e %A', DATE '2024-12-31') -- Iyyy.mm. d DOW The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2025.12.31 Tuesday |
FORMAT_DATE('%g.%m.%d %A', DATE '2024-12-31') -- Iy.mm.dd DOW The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 25.12.31 Tuesday |
FORMAT_DATE('%g.%m.%e %A', DATE '2024-12-31') -- Iy.mm. d DOW The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 25.12.31 Tuesday |
FORMAT_DATE('%Y.%B.%d %A', DATE '2024-12-31') -- yyyy.month.dd DOW The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024.December.31 Tuesday |
FORMAT_DATE('%Y.%B.%e %A', DATE '2024-12-31') -- yyyy.month. d DOW The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024.December.31 Tuesday |
FORMAT_DATE('%Y.%b.%d %A', DATE '2024-12-31') -- yyyy.mon.dd DOW The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024.Dec.31 Tuesday |
FORMAT_DATE('%Y.%b.%e %A', DATE '2024-12-31') -- yyyy.mon. d DOW The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024.Dec.31 Tuesday |
FORMAT_DATE('%Y.%h.%d %A', DATE '2024-12-31') -- yyyy.mon.dd DOW The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024.Dec.31 Tuesday |
FORMAT_DATE('%Y.%h.%e %A', DATE '2024-12-31') -- yyyy.mon.-dd DOW The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024.Dec.31 Tuesday |
FORMAT_DATE('%E4Y.%B.%d %A', DATE '2024-12-31') -- yyyy.month.dd DOW Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024.December.31 Tuesday |
FORMAT_DATE('%E4Y.%B.%e %A', DATE '2024-12-31') -- yyyy.month. d DOW Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024.December.31 Tuesday |
FORMAT_DATE('%E4Y.%b.%d %A', DATE '2024-12-31') -- yyyy.mon.dd DOW Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024.Dec.31 Tuesday |
FORMAT_DATE('%E4Y.%b.%e %A', DATE '2024-12-31') -- yyyy.mon. d DOW Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024.Dec.31 Tuesday |
FORMAT_DATE('%E4Y.%h.%d %A', DATE '2024-12-31') -- yyyy.mon.dd DOW Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024.Dec.31 Tuesday |
FORMAT_DATE('%E4Y.%h.%e %A', DATE '2024-12-31') -- yyyy.mon. d DOW Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024.Dec.31 Tuesday |
FORMAT_DATE('%y.%B.%d %A', DATE '2024-12-31') -- yy.month.dd DOW The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24.December.31 Tuesday |
FORMAT_DATE('%y.%B.%e %A', DATE '2024-12-31') -- yy.month. d DOW The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24.December.31 Tuesday |
FORMAT_DATE('%y.%b.%d %A', DATE '2024-12-31') -- yy.mon.dd DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24.Dec.31 Tuesday |
FORMAT_DATE('%y.%b.%e %A', DATE '2024-12-31') -- yy.mon. d DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24.Dec.31 Tuesday |
FORMAT_DATE('%y.%h.%d %A', DATE '2024-12-31') -- yy.mon.dd DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24.Dec.31 Tuesday |
FORMAT_DATE('%y.%h.%e %A', DATE '2024-12-31') -- yy.mon. d DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24.Dec.31 Tuesday |
FORMAT_DATE('%G.%B.%d %A', DATE '2024-12-31') -- Iy.month.dd DOW The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2025.December.31 Tuesday |
FORMAT_DATE('%G.%B.%e %A', DATE '2024-12-31') -- Iy.month. d DOW The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2025.December.31 Tuesday |
FORMAT_DATE('%G.%b.%d %A', DATE '2024-12-31') -- Iy.mon.dd DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2025.Dec.31 Tuesday |
FORMAT_DATE('%G.%b.%e %A', DATE '2024-12-31') -- Iy.mon. d DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2025.Dec.31 Tuesday |
FORMAT_DATE('%G.%h.%d %A', DATE '2024-12-31') -- Iy.mon.dd DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2025.Dec.31 Tuesday |
FORMAT_DATE('%G.%h.%e %A', DATE '2024-12-31') -- Iy.mon. d DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2025.Dec.31 Tuesday |
FORMAT_DATE('%g.%B.%d %A', DATE '2024-12-31') -- Iyyy.month.dd DOW The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 25.December.31 Tuesday |
FORMAT_DATE('%g.%B.%e %A', DATE '2024-12-31') -- Iyyy.month. d DOW The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 25.December.31 Tuesday |
FORMAT_DATE('%g.%b.%d %A', DATE '2024-12-31') -- Iyyy.mon.dd DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 25.Dec.31 Tuesday |
FORMAT_DATE('%g.%b.%e %A', DATE '2024-12-31') -- Iyyy.mon. d DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 25.Dec.31 Tuesday |
FORMAT_DATE('%g.%h.%d %A', DATE '2024-12-31') -- Iyyy.mon.-dd DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 25.Dec.31 Tuesday |
FORMAT_DATE('%g.%h.%e %A', DATE '2024-12-31') -- Iyyy.mon. d DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 25.Dec.31 Tuesday |
FORMAT_DATE('%Y %m %d %A', DATE '2024-12-31') -- yyyy mm dd DOW The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024 12 31 Tuesday |
FORMAT_DATE('%Y %m %e %A', DATE '2024-12-31') -- yyyy mm d DOW The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024 12 31 Tuesday |
FORMAT_DATE('%E4Y %m %d %A', DATE '2024-12-31') -- yyyy mm dd DOW Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024 12 31 Tuesday |
FORMAT_DATE('%E4Y %m %e %A', DATE '2024-12-31') -- yyyy mm d DOW Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024 12 31 Tuesday |
FORMAT_DATE('%y %m %d %A', DATE '2024-12-31') -- yy mm dd DOW The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 24 12 31 Tuesday |
FORMAT_DATE('%y %m %e %A', DATE '2024-12-31') -- yy mm d DOW The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24 12 31 Tuesday |
FORMAT_DATE('%G %m %d %A', DATE '2024-12-31') -- Iyyy mm dd DOW The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 2025 12 31 Tuesday |
FORMAT_DATE('%G %m %e %A', DATE '2024-12-31') -- Iyyy mm d DOW The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2025 12 31 Tuesday |
FORMAT_DATE('%g %m %d %A', DATE '2024-12-31') -- Iy mm dd DOW The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 25 12 31 Tuesday |
FORMAT_DATE('%g %m %e %A', DATE '2024-12-31') -- Iy mm d DOW The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 25 12 31 Tuesday |
FORMAT_DATE('%Y %B %d %A', DATE '2024-12-31') -- yyyy month dd DOW The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024 December 31 Tuesday |
FORMAT_DATE('%Y %B %e %A', DATE '2024-12-31') -- yyyy month d DOW The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024 December 31 Tuesday |
FORMAT_DATE('%Y %b %d %A', DATE '2024-12-31') -- yyyy mon dd DOW The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024 Dec 31 Tuesday |
FORMAT_DATE('%Y %b %e %A', DATE '2024-12-31') -- yyyy mon d DOW The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024 Dec 31 Tuesday |
FORMAT_DATE('%Y %h %d %A', DATE '2024-12-31') -- yyyy mon dd DOW The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024 Dec 31 Tuesday |
FORMAT_DATE('%Y %h %e %A', DATE '2024-12-31') -- yyyy mon -dd DOW The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024 Dec 31 Tuesday |
FORMAT_DATE('%E4Y %B %d %A', DATE '2024-12-31') -- yyyy month dd DOW Four-character years (0001 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024 December 31 Tuesday |
FORMAT_DATE('%E4Y %B %e %A', DATE '2024-12-31') -- yyyy month d DOW Four-character years (0001 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024 December 31 Tuesday |
FORMAT_DATE('%E4Y %b %d %A', DATE '2024-12-31') -- yyyy mon dd DOW Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024 Dec 31 Tuesday |
FORMAT_DATE('%E4Y %b %e %A', DATE '2024-12-31') -- yyyy mon d DOW Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024 Dec 31 Tuesday |
FORMAT_DATE('%E4Y %h %d %A', DATE '2024-12-31') -- yyyy mon dd DOW Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024 Dec 31 Tuesday |
FORMAT_DATE('%E4Y %h %e %A', DATE '2024-12-31') -- yyyy mon d DOW Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024 Dec 31 Tuesday |
FORMAT_DATE('%y %B %d %A', DATE '2024-12-31') -- yy month dd DOW The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24 December 31 Tuesday |
FORMAT_DATE('%y %B %e %A', DATE '2024-12-31') -- yy month d DOW The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24 December 31 Tuesday |
FORMAT_DATE('%y %b %d %A', DATE '2024-12-31') -- yy mon dd DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24 Dec 31 Tuesday |
FORMAT_DATE('%y %b %e %A', DATE '2024-12-31') -- yy mon d DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24 Dec 31 Tuesday |
FORMAT_DATE('%y %h %d %A', DATE '2024-12-31') -- yy mon dd DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24 Dec 31 Tuesday |
FORMAT_DATE('%y %h %e %A', DATE '2024-12-31') -- yy mon d DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24 Dec 31 Tuesday |
FORMAT_DATE('%G %B %d %A', DATE '2024-12-31') -- Iy month dd DOW The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2025 December 31 Tuesday |
FORMAT_DATE('%G %B %e %A', DATE '2024-12-31') -- Iy month d DOW The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2025 December 31 Tuesday |
FORMAT_DATE('%G %b %d %A', DATE '2024-12-31') -- Iy mon dd DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2025 Dec 31 Tuesday |
FORMAT_DATE('%G %b %e %A', DATE '2024-12-31') -- Iy mon d DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2025 Dec 31 Tuesday |
FORMAT_DATE('%G %h %d %A', DATE '2024-12-31') -- Iy mon dd DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2025 Dec 31 Tuesday |
FORMAT_DATE('%G %h %e %A', DATE '2024-12-31') -- Iy mon d DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2025 Dec 31 Tuesday |
FORMAT_DATE('%g %B %d %A', DATE '2024-12-31') -- Iyyy month dd DOW The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 25 December 31 Tuesday |
FORMAT_DATE('%g %B %e %A', DATE '2024-12-31') -- Iyyy month d DOW The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 25 December 31 Tuesday |
FORMAT_DATE('%g %b %d %A', DATE '2024-12-31') -- Iyyy mon dd DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 25 Dec 31 Tuesday |
FORMAT_DATE('%g %b %e %A', DATE '2024-12-31') -- Iyyy mon d DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 25 Dec 31 Tuesday |
FORMAT_DATE('%g %h %d %A', DATE '2024-12-31') -- Iyyy mon dd DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 25 Dec 31 Tuesday |
FORMAT_DATE('%g %h %e %A', DATE '2024-12-31') -- Iyyy mon d DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 25 Dec 31 Tuesday |
FORMAT_DATE('%Y%m%d %A', DATE '2024-12-31') -- yyyymmdd DOW The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 20241231 Tuesday |
FORMAT_DATE('%Y%m%e %A', DATE '2024-12-31') -- yyyymm d DOW The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 20241231 Tuesday |
FORMAT_DATE('%E4Y%m%d %A', DATE '2024-12-31') -- yyyymmdd DOW Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 20241231 Tuesday |
FORMAT_DATE('%E4Y%m%e %A', DATE '2024-12-31') -- yyyymm d DOW Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 20241231 Tuesday |
FORMAT_DATE('%y%m%d %A', DATE '2024-12-31') -- yymmdd DOW The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 241231 Tuesday |
FORMAT_DATE('%y%m%e %A', DATE '2024-12-31') -- yymm d DOW The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 241231 Tuesday |
FORMAT_DATE('%G%m%d %A', DATE '2024-12-31') -- Iyyymmdd DOW The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 20251231 Tuesday |
FORMAT_DATE('%G%m%e %A', DATE '2024-12-31') -- Iyyymm d DOW The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 20251231 Tuesday |
FORMAT_DATE('%g%m%d %A', DATE '2024-12-31') -- Iymmdd DOW The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week | 251231 Tuesday |
FORMAT_DATE('%g%m%e %A', DATE '2024-12-31') -- Iymm d DOW The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 251231 Tuesday |
FORMAT_DATE('%Y%B%d %A', DATE '2024-12-31') -- yyyymonthdd DOW The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024December31 Tuesday |
FORMAT_DATE('%Y%B%e %A', DATE '2024-12-31') -- yyyymonth d DOW The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024December31 Tuesday |
FORMAT_DATE('%Y%b%d %A', DATE '2024-12-31') -- yyyymondd DOW The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024Dec31 Tuesday |
FORMAT_DATE('%Y%b%e %A', DATE '2024-12-31') -- yyyymon d DOW The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024Dec31 Tuesday |
FORMAT_DATE('%Y%h%d %A', DATE '2024-12-31') -- yyyymondd DOW The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024Dec31 Tuesday |
FORMAT_DATE('%Y%h%e %A', DATE '2024-12-31') -- yyyymon-dd DOW The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024Dec31 Tuesday |
FORMAT_DATE('%E4Y%B%d %A', DATE '2024-12-31') -- yyyymonthdd DOW Four-character years (0001 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024December31 Tuesday |
FORMAT_DATE('%E4Y%B%e %A', DATE '2024-12-31') -- yyyymonth d DOW Four-character years (0001 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024December31 Tuesday |
FORMAT_DATE('%E4Y%b%d %A', DATE '2024-12-31') -- yyyymondd DOW Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024Dec31 Tuesday |
FORMAT_DATE('%E4Y%b%e %A', DATE '2024-12-31') -- yyyymon d DOW Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024Dec31 Tuesday |
FORMAT_DATE('%E4Y%h%d %A', DATE '2024-12-31') -- yyyymondd DOW Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2024Dec31 Tuesday |
FORMAT_DATE('%E4Y%h%e %A', DATE '2024-12-31') -- yyyymon d DOW Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2024Dec31 Tuesday |
FORMAT_DATE('%y%B%d %A', DATE '2024-12-31') -- yymonthdd DOW The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24December31 Tuesday |
FORMAT_DATE('%y%B%e %A', DATE '2024-12-31') -- yymonth d DOW The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24December31 Tuesday |
FORMAT_DATE('%y%b%d %A', DATE '2024-12-31') -- yymondd DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24Dec31 Tuesday |
FORMAT_DATE('%y%b%e %A', DATE '2024-12-31') -- yymon d DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24Dec31 Tuesday |
FORMAT_DATE('%y%h%d %A', DATE '2024-12-31') -- yymondd DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 24Dec31 Tuesday |
FORMAT_DATE('%y%h%e %A', DATE '2024-12-31') -- yymon d DOW The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 24Dec31 Tuesday |
FORMAT_DATE('%G%B%d %A', DATE '2024-12-31') -- Iymonthdd DOW The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2025December31 Tuesday |
FORMAT_DATE('%G%B%e %A', DATE '2024-12-31') -- Iymonth d DOW The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2025December31 Tuesday |
FORMAT_DATE('%G%b%d %A', DATE '2024-12-31') -- Iymondd DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2025Dec31 Tuesday |
FORMAT_DATE('%G%b%e %A', DATE '2024-12-31') -- Iymon d DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2025Dec31 Tuesday |
FORMAT_DATE('%G%h%d %A', DATE '2024-12-31') -- Iymondd DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 2025Dec31 Tuesday |
FORMAT_DATE('%G%h%e %A', DATE '2024-12-31') -- Iymon d DOW The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 2025Dec31 Tuesday |
FORMAT_DATE('%g%B%d %A', DATE '2024-12-31') -- Iyyymonthdd DOW The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 25December31 Tuesday |
FORMAT_DATE('%g%B%e %A', DATE '2024-12-31') -- Iyyymonth d DOW The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 25December31 Tuesday |
FORMAT_DATE('%g%b%d %A', DATE '2024-12-31') -- Iyyymondd DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 25Dec31 Tuesday |
FORMAT_DATE('%g%b%e %A', DATE '2024-12-31') -- Iyyymon d DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 25Dec31 Tuesday |
FORMAT_DATE('%g%h%d %A', DATE '2024-12-31') -- Iyyymon-dd DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week | 25Dec31 Tuesday |
FORMAT_DATE('%g%h%e %A', DATE '2024-12-31') -- Iyyymon d DOW The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week | 25Dec31 Tuesday |
FORMAT_DATE('%Y-%m-%d %a', DATE '2024-12-31') -- yyyy-mm-dd dow abbrev The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024-12-31 Tue |
FORMAT_DATE('%Y-%m-%e %a', DATE '2024-12-31') -- yyyy-mm- d dow abbrev The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024-12-31 Tue |
FORMAT_DATE('%E4Y-%m-%d %a', DATE '2024-12-31') -- yyyy-mm-dd dow abbrev Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024-12-31 Tue |
FORMAT_DATE('%E4Y-%m-%e %a', DATE '2024-12-31') -- yyyy-mm- d dow abbrev Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024-12-31 Tue |
FORMAT_DATE('%y-%m-%d %a', DATE '2024-12-31') -- yy-mm-dd dow abbrev The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24-12-31 Tue |
FORMAT_DATE('%y-%m-%e %a', DATE '2024-12-31') -- yy-mm- d dow abbrev The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24-12-31 Tue |
FORMAT_DATE('%G-%m-%d %a', DATE '2024-12-31') -- Iyyy-mm-dd dow abbrev The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2025-12-31 Tue |
FORMAT_DATE('%G-%m-%e %a', DATE '2024-12-31') -- Iyyy-mm- d dow abbrev The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2025-12-31 Tue |
FORMAT_DATE('%g-%m-%d %a', DATE '2024-12-31') -- Iy-mm-dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 25-12-31 Tue |
FORMAT_DATE('%g-%m-%e %a', DATE '2024-12-31') -- Iy-mm- d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 25-12-31 Tue |
FORMAT_DATE('%Y-%B-%d %a', DATE '2024-12-31') -- yyyy-month-dd dow abbrev The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024-December-31 Tue |
FORMAT_DATE('%Y-%B-%e %a', DATE '2024-12-31') -- yyyy-month- d dow abbrev The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024-December-31 Tue |
FORMAT_DATE('%Y-%b-%d %a', DATE '2024-12-31') -- yyyy-mon-dd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024-Dec-31 Tue |
FORMAT_DATE('%Y-%b-%e %a', DATE '2024-12-31') -- yyyy-mon- d dow abbrev The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024-Dec-31 Tue |
FORMAT_DATE('%Y-%h-%d %a', DATE '2024-12-31') -- yyyy-mon-dd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024-Dec-31 Tue |
FORMAT_DATE('%Y-%h-%e %a', DATE '2024-12-31') -- yyyy-mon-dd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024-Dec-31 Tue |
FORMAT_DATE('%E4Y-%B-%d %a', DATE '2024-12-31') -- yyyy-month-dd dow abbrev Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024-December-31 Tue |
FORMAT_DATE('%E4Y-%B-%e %a', DATE '2024-12-31') -- yyyy-month- d dow abbrev Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024-December-31 Tue |
FORMAT_DATE('%E4Y-%b-%d %a', DATE '2024-12-31') -- yyyy-mon-dd dow abbrev Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024-Dec-31 Tue |
FORMAT_DATE('%E4Y-%b-%e %a', DATE '2024-12-31') -- yyyy-mon- d dow abbrev Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024-Dec-31 Tue |
FORMAT_DATE('%E4Y-%h-%d %a', DATE '2024-12-31') -- yyyy-mon-dd dow abbrev Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024-Dec-31 Tue |
FORMAT_DATE('%E4Y-%h-%e %a', DATE '2024-12-31') -- yyyy-mon- d dow abbrev Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024-Dec-31 Tue |
FORMAT_DATE('%y-%B-%d %a', DATE '2024-12-31') -- yy-month-dd dow abbrev The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24-December-31 Tue |
FORMAT_DATE('%y-%B-%e %a', DATE '2024-12-31') -- yy-month- d dow abbrev The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24-December-31 Tue |
FORMAT_DATE('%y-%b-%d %a', DATE '2024-12-31') -- yy-mon-dd dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24-Dec-31 Tue |
FORMAT_DATE('%y-%b-%e %a', DATE '2024-12-31') -- yy-mon- d dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24-Dec-31 Tue |
FORMAT_DATE('%y-%h-%d %a', DATE '2024-12-31') -- yy-mon-dd dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24-Dec-31 Tue |
FORMAT_DATE('%y-%h-%e %a', DATE '2024-12-31') -- yy-mon- d dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24-Dec-31 Tue |
FORMAT_DATE('%G-%B-%d %a', DATE '2024-12-31') -- Iy-month-dd dow abbrev The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2025-December-31 Tue |
FORMAT_DATE('%G-%B-%e %a', DATE '2024-12-31') -- Iy-month- d dow abbrev The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2025-December-31 Tue |
FORMAT_DATE('%G-%b-%d %a', DATE '2024-12-31') -- Iy-mon-dd dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2025-Dec-31 Tue |
FORMAT_DATE('%G-%b-%e %a', DATE '2024-12-31') -- Iy-mon- d dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2025-Dec-31 Tue |
FORMAT_DATE('%G-%h-%d %a', DATE '2024-12-31') -- Iy-mon-dd dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2025-Dec-31 Tue |
FORMAT_DATE('%G-%h-%e %a', DATE '2024-12-31') -- Iy-mon- d dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2025-Dec-31 Tue |
FORMAT_DATE('%g-%B-%d %a', DATE '2024-12-31') -- Iyyy-month-dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 25-December-31 Tue |
FORMAT_DATE('%g-%B-%e %a', DATE '2024-12-31') -- Iyyy-month- d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 25-December-31 Tue |
FORMAT_DATE('%g-%b-%d %a', DATE '2024-12-31') -- Iyyy-mon-dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 25-Dec-31 Tue |
FORMAT_DATE('%g-%b-%e %a', DATE '2024-12-31') -- Iyyy-mon- d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 25-Dec-31 Tue |
FORMAT_DATE('%g-%h-%d %a', DATE '2024-12-31') -- Iyyy-mon-dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 25-Dec-31 Tue |
FORMAT_DATE('%g-%h-%e %a', DATE '2024-12-31') -- Iyyy-mon- d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 25-Dec-31 Tue |
FORMAT_DATE('%Y/%m/%d %a', DATE '2024-12-31') -- yyyy/mm/dd dow abbrev The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024/12/31 Tue |
FORMAT_DATE('%Y/%m/%e %a', DATE '2024-12-31') -- yyyy/mm/ d dow abbrev The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024/12/31 Tue |
FORMAT_DATE('%E4Y/%m/%d %a', DATE '2024-12-31') -- yyyy/mm/-dd dow abbrev Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024/12/31 Tue |
FORMAT_DATE('%E4Y/%m/%e %a', DATE '2024-12-31') -- yyyy/mm/ d dow abbrev Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024/12/31 Tue |
FORMAT_DATE('%y/%m/%d %a', DATE '2024-12-31') -- yy/mm/dd dow abbrev The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24/12/31 Tue |
FORMAT_DATE('%y/%m/%e %a', DATE '2024-12-31') -- yy/mm/ d dow abbrev The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24/12/31 Tue |
FORMAT_DATE('%G/%m/%d %a', DATE '2024-12-31') -- Iyyy/mm/dd dow abbrev The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2025/12/31 Tue |
FORMAT_DATE('%G/%m/%e %a', DATE '2024-12-31') -- Iyyy/mm/ d dow abbrev The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2025/12/31 Tue |
FORMAT_DATE('%g/%m/%d %a', DATE '2024-12-31') -- Iy/mm/dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 25/12/31 Tue |
FORMAT_DATE('%g/%m/%e %a', DATE '2024-12-31') -- Iy/mm/ d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 25/12/31 Tue |
FORMAT_DATE('%Y/%B/%d %a', DATE '2024-12-31') -- yyyy/month/dd dow abbrev The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024/December/31 Tue |
FORMAT_DATE('%Y/%B/%e %a', DATE '2024-12-31') -- yyyy/month/ d dow abbrev The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024/December/31 Tue |
FORMAT_DATE('%Y/%b/%d %a', DATE '2024-12-31') -- yyyy/mon/dd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024/Dec/31 Tue |
FORMAT_DATE('%Y/%b/%e %a', DATE '2024-12-31') -- yyyy/mon/ d dow abbrev The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024/Dec/31 Tue |
FORMAT_DATE('%Y/%h/%d %a', DATE '2024-12-31') -- yyyy/mon/dd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024/Dec/31 Tue |
FORMAT_DATE('%Y/%h/%e %a', DATE '2024-12-31') -- yyyy/mon/-dd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024/Dec/31 Tue |
FORMAT_DATE('%E4Y/%B/%d %a', DATE '2024-12-31') -- yyyy/month/dd dow abbrev Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024/December/31 Tue |
FORMAT_DATE('%E4Y/%B/%e %a', DATE '2024-12-31') -- yyyy/month/ d dow abbrev Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024/December/31 Tue |
FORMAT_DATE('%E4Y/%b/%d %a', DATE '2024-12-31') -- yyyy/mon/dd dow abbrev Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024/Dec/31 Tue |
FORMAT_DATE('%E4Y/%b/%e %a', DATE '2024-12-31') -- yyyy/mon/ d dow abbrev Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024/Dec/31 Tue |
FORMAT_DATE('%E4Y/%h/%d %a', DATE '2024-12-31') -- yyyy/mon/dd dow abbrev Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024/Dec/31 Tue |
FORMAT_DATE('%E4Y/%h/%e %a', DATE '2024-12-31') -- yyyy/mon/ d dow abbrev Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024/Dec/31 Tue |
FORMAT_DATE('%y/%B/%d %a', DATE '2024-12-31') -- yy/month/dd dow abbrev The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24/December/31 Tue |
FORMAT_DATE('%y/%B/%e %a', DATE '2024-12-31') -- yy/month/ d dow abbrev The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24/December/31 Tue |
FORMAT_DATE('%y/%b/%d %a', DATE '2024-12-31') -- yy/mon/dd dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24/Dec/31 Tue |
FORMAT_DATE('%y/%b/%e %a', DATE '2024-12-31') -- yy/mon/ d dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24/Dec/31 Tue |
FORMAT_DATE('%y/%h/%d %a', DATE '2024-12-31') -- yy/mon/dd dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24/Dec/31 Tue |
FORMAT_DATE('%y/%h/%e %a', DATE '2024-12-31') -- yy/mon/ d dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24/Dec/31 Tue |
FORMAT_DATE('%G/%B/%d %a', DATE '2024-12-31') -- Iy/month/dd dow abbrev The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2025/December/31 Tue |
FORMAT_DATE('%G/%B/%e %a', DATE '2024-12-31') -- Iy/month/ d dow abbrev The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2025/December/31 Tue |
FORMAT_DATE('%G/%b/%d %a', DATE '2024-12-31') -- Iy/mon/dd dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2025/Dec/31 Tue |
FORMAT_DATE('%G/%b/%e %a', DATE '2024-12-31') -- Iy/mon/ d dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2025/Dec/31 Tue |
FORMAT_DATE('%G/%h/%d %a', DATE '2024-12-31') -- Iy/mon/dd dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2025/Dec/31 Tue |
FORMAT_DATE('%G/%h/%e %a', DATE '2024-12-31') -- Iy/mon/ d dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2025/Dec/31 Tue |
FORMAT_DATE('%g/%B/%d %a', DATE '2024-12-31') -- Iyyy/month/dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 25/December/31 Tue |
FORMAT_DATE('%g/%B/%e %a', DATE '2024-12-31') -- Iyyy/month/ d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 25/December/31 Tue |
FORMAT_DATE('%g/%b/%d %a', DATE '2024-12-31') -- Iyyy/mon/dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 25/Dec/31 Tue |
FORMAT_DATE('%g/%b/%e %a', DATE '2024-12-31') -- Iyyy/mon/ d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 25/Dec/31 Tue |
FORMAT_DATE('%g/%h/%d %a', DATE '2024-12-31') -- Iyyy/mon/-dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 25/Dec/31 Tue |
FORMAT_DATE('%g/%h/%e %a', DATE '2024-12-31') -- Iyyy/mon/ d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 25/Dec/31 Tue |
FORMAT_DATE('%Y:%m:%d %a', DATE '2024-12-31') -- yyyy:mm:dd dow abbrev The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024:12:31 Tue |
FORMAT_DATE('%Y:%m:%e %a', DATE '2024-12-31') -- yyyy:mm: d dow abbrev The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024:12:31 Tue |
FORMAT_DATE('%E4Y:%m:%d %a', DATE '2024-12-31') -- yyyy:mm:-dd dow abbrev Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024:12:31 Tue |
FORMAT_DATE('%E4Y:%m:%e %a', DATE '2024-12-31') -- yyyy:mm: d dow abbrev Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024:12:31 Tue |
FORMAT_DATE('%y:%m:%d %a', DATE '2024-12-31') -- yy:mm:dd dow abbrev The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24:12:31 Tue |
FORMAT_DATE('%y:%m:%e %a', DATE '2024-12-31') -- yy:mm: d dow abbrev The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24:12:31 Tue |
FORMAT_DATE('%G:%m:%d %a', DATE '2024-12-31') -- Iyyy:mm:dd dow abbrev The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2025:12:31 Tue |
FORMAT_DATE('%G:%m:%e %a', DATE '2024-12-31') -- Iyyy:mm: d dow abbrev The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2025:12:31 Tue |
FORMAT_DATE('%g:%m:%d %a', DATE '2024-12-31') -- Iy:mm:dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 25:12:31 Tue |
FORMAT_DATE('%g:%m:%e %a', DATE '2024-12-31') -- Iy:mm: d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 25:12:31 Tue |
FORMAT_DATE('%Y:%B:%d %a', DATE '2024-12-31') -- yyyy:month:dd dow abbrev The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024:December:31 Tue |
FORMAT_DATE('%Y:%B:%e %a', DATE '2024-12-31') -- yyyy:month: d dow abbrev The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024:December:31 Tue |
FORMAT_DATE('%Y:%b:%d %a', DATE '2024-12-31') -- yyyy:mon:dd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024:Dec:31 Tue |
FORMAT_DATE('%Y:%b:%e %a', DATE '2024-12-31') -- yyyy:mon: d dow abbrev The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024:Dec:31 Tue |
FORMAT_DATE('%Y:%h:%d %a', DATE '2024-12-31') -- yyyy:mon:dd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024:Dec:31 Tue |
FORMAT_DATE('%Y:%h:%e %a', DATE '2024-12-31') -- yyyy:mon:-dd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024:Dec:31 Tue |
FORMAT_DATE('%E4Y:%B:%d %a', DATE '2024-12-31') -- yyyy:month:dd dow abbrev Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024:December:31 Tue |
FORMAT_DATE('%E4Y:%B:%e %a', DATE '2024-12-31') -- yyyy:month: d dow abbrev Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024:December:31 Tue |
FORMAT_DATE('%E4Y:%b:%d %a', DATE '2024-12-31') -- yyyy:mon:dd dow abbrev Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024:Dec:31 Tue |
FORMAT_DATE('%E4Y:%b:%e %a', DATE '2024-12-31') -- yyyy:mon: d dow abbrev Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024:Dec:31 Tue |
FORMAT_DATE('%E4Y:%h:%d %a', DATE '2024-12-31') -- yyyy:mon:dd dow abbrev Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024:Dec:31 Tue |
FORMAT_DATE('%E4Y:%h:%e %a', DATE '2024-12-31') -- yyyy:mon: d dow abbrev Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024:Dec:31 Tue |
FORMAT_DATE('%y:%B:%d %a', DATE '2024-12-31') -- yy:month:dd dow abbrev The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24:December:31 Tue |
FORMAT_DATE('%y:%B:%e %a', DATE '2024-12-31') -- yy:month: d dow abbrev The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24:December:31 Tue |
FORMAT_DATE('%y:%b:%d %a', DATE '2024-12-31') -- yy:mon:dd dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24:Dec:31 Tue |
FORMAT_DATE('%y:%b:%e %a', DATE '2024-12-31') -- yy:mon: d dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24:Dec:31 Tue |
FORMAT_DATE('%y:%h:%d %a', DATE '2024-12-31') -- yy:mon:dd dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24:Dec:31 Tue |
FORMAT_DATE('%y:%h:%e %a', DATE '2024-12-31') -- yy:mon: d dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24:Dec:31 Tue |
FORMAT_DATE('%G:%B:%d %a', DATE '2024-12-31') -- Iy:month:dd dow abbrev The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2025:December:31 Tue |
FORMAT_DATE('%G:%B:%e %a', DATE '2024-12-31') -- Iy:month: d dow abbrev The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2025:December:31 Tue |
FORMAT_DATE('%G:%b:%d %a', DATE '2024-12-31') -- Iy:mon:dd dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2025:Dec:31 Tue |
FORMAT_DATE('%G:%b:%e %a', DATE '2024-12-31') -- Iy:mon: d dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2025:Dec:31 Tue |
FORMAT_DATE('%G:%h:%d %a', DATE '2024-12-31') -- Iy:mon:dd dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2025:Dec:31 Tue |
FORMAT_DATE('%G:%h:%e %a', DATE '2024-12-31') -- Iy:mon: d dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2025:Dec:31 Tue |
FORMAT_DATE('%g:%B:%d %a', DATE '2024-12-31') -- Iyyy:month:dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 25:December:31 Tue |
FORMAT_DATE('%g:%B:%e %a', DATE '2024-12-31') -- Iyyy:month: d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 25:December:31 Tue |
FORMAT_DATE('%g:%b:%d %a', DATE '2024-12-31') -- Iyyy:mon:dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 25:Dec:31 Tue |
FORMAT_DATE('%g:%b:%e %a', DATE '2024-12-31') -- Iyyy:mon: d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 25:Dec:31 Tue |
FORMAT_DATE('%g:%h:%d %a', DATE '2024-12-31') -- Iyyy:mon:-dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 25:Dec:31 Tue |
FORMAT_DATE('%g:%h:%e %a', DATE '2024-12-31') -- Iyyy:mon: d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 25:Dec:31 Tue |
FORMAT_DATE('%Y.%m.%d %a', DATE '2024-12-31') -- yyyy.mm.dd dow abbrev The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024.12.31 Tue |
FORMAT_DATE('%Y.%m.%e %a', DATE '2024-12-31') -- yyyy.mm. d dow abbrev The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024.12.31 Tue |
FORMAT_DATE('%E4Y.%m.%d %a', DATE '2024-12-31') -- yyyy.mm.-dd dow abbrev Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024.12.31 Tue |
FORMAT_DATE('%E4Y.%m.%e %a', DATE '2024-12-31') -- yyyy.mm. d dow abbrev Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024.12.31 Tue |
FORMAT_DATE('%y.%m.%d %a', DATE '2024-12-31') -- yy.mm.dd dow abbrev The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24.12.31 Tue |
FORMAT_DATE('%y.%m.%e %a', DATE '2024-12-31') -- yy.mm. d dow abbrev The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24.12.31 Tue |
FORMAT_DATE('%G.%m.%d %a', DATE '2024-12-31') -- Iyyy.mm.dd dow abbrev The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2025.12.31 Tue |
FORMAT_DATE('%G.%m.%e %a', DATE '2024-12-31') -- Iyyy.mm. d dow abbrev The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2025.12.31 Tue |
FORMAT_DATE('%g.%m.%d %a', DATE '2024-12-31') -- Iy.mm.dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 25.12.31 Tue |
FORMAT_DATE('%g.%m.%e %a', DATE '2024-12-31') -- Iy.mm. d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 25.12.31 Tue |
FORMAT_DATE('%Y.%B.%d %a', DATE '2024-12-31') -- yyyy.month.dd dow abbrev The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024.December.31 Tue |
FORMAT_DATE('%Y.%B.%e %a', DATE '2024-12-31') -- yyyy.month. d dow abbrev The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024.December.31 Tue |
FORMAT_DATE('%Y.%b.%d %a', DATE '2024-12-31') -- yyyy.mon.dd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024.Dec.31 Tue |
FORMAT_DATE('%Y.%b.%e %a', DATE '2024-12-31') -- yyyy.mon. d dow abbrev The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024.Dec.31 Tue |
FORMAT_DATE('%Y.%h.%d %a', DATE '2024-12-31') -- yyyy.mon.dd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024.Dec.31 Tue |
FORMAT_DATE('%Y.%h.%e %a', DATE '2024-12-31') -- yyyy.mon.-dd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024.Dec.31 Tue |
FORMAT_DATE('%E4Y.%B.%d %a', DATE '2024-12-31') -- yyyy.month.dd dow abbrev Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024.December.31 Tue |
FORMAT_DATE('%E4Y.%B.%e %a', DATE '2024-12-31') -- yyyy.month. d dow abbrev Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024.December.31 Tue |
FORMAT_DATE('%E4Y.%b.%d %a', DATE '2024-12-31') -- yyyy.mon.dd dow abbrev Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024.Dec.31 Tue |
FORMAT_DATE('%E4Y.%b.%e %a', DATE '2024-12-31') -- yyyy.mon. d dow abbrev Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024.Dec.31 Tue |
FORMAT_DATE('%E4Y.%h.%d %a', DATE '2024-12-31') -- yyyy.mon.dd dow abbrev Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024.Dec.31 Tue |
FORMAT_DATE('%E4Y.%h.%e %a', DATE '2024-12-31') -- yyyy.mon. d dow abbrev Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024.Dec.31 Tue |
FORMAT_DATE('%y.%B.%d %a', DATE '2024-12-31') -- yy.month.dd dow abbrev The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24.December.31 Tue |
FORMAT_DATE('%y.%B.%e %a', DATE '2024-12-31') -- yy.month. d dow abbrev The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24.December.31 Tue |
FORMAT_DATE('%y.%b.%d %a', DATE '2024-12-31') -- yy.mon.dd dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24.Dec.31 Tue |
FORMAT_DATE('%y.%b.%e %a', DATE '2024-12-31') -- yy.mon. d dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24.Dec.31 Tue |
FORMAT_DATE('%y.%h.%d %a', DATE '2024-12-31') -- yy.mon.dd dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24.Dec.31 Tue |
FORMAT_DATE('%y.%h.%e %a', DATE '2024-12-31') -- yy.mon. d dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24.Dec.31 Tue |
FORMAT_DATE('%G.%B.%d %a', DATE '2024-12-31') -- Iy.month.dd dow abbrev The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2025.December.31 Tue |
FORMAT_DATE('%G.%B.%e %a', DATE '2024-12-31') -- Iy.month. d dow abbrev The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2025.December.31 Tue |
FORMAT_DATE('%G.%b.%d %a', DATE '2024-12-31') -- Iy.mon.dd dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2025.Dec.31 Tue |
FORMAT_DATE('%G.%b.%e %a', DATE '2024-12-31') -- Iy.mon. d dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2025.Dec.31 Tue |
FORMAT_DATE('%G.%h.%d %a', DATE '2024-12-31') -- Iy.mon.dd dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2025.Dec.31 Tue |
FORMAT_DATE('%G.%h.%e %a', DATE '2024-12-31') -- Iy.mon. d dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2025.Dec.31 Tue |
FORMAT_DATE('%g.%B.%d %a', DATE '2024-12-31') -- Iyyy.month.dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 25.December.31 Tue |
FORMAT_DATE('%g.%B.%e %a', DATE '2024-12-31') -- Iyyy.month. d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 25.December.31 Tue |
FORMAT_DATE('%g.%b.%d %a', DATE '2024-12-31') -- Iyyy.mon.dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 25.Dec.31 Tue |
FORMAT_DATE('%g.%b.%e %a', DATE '2024-12-31') -- Iyyy.mon. d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 25.Dec.31 Tue |
FORMAT_DATE('%g.%h.%d %a', DATE '2024-12-31') -- Iyyy.mon.-dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 25.Dec.31 Tue |
FORMAT_DATE('%g.%h.%e %a', DATE '2024-12-31') -- Iyyy.mon. d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 25.Dec.31 Tue |
FORMAT_DATE('%Y %m %d %a', DATE '2024-12-31') -- yyyy mm dd dow abbrev The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024 12 31 Tue |
FORMAT_DATE('%Y %m %e %a', DATE '2024-12-31') -- yyyy mm d dow abbrev The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024 12 31 Tue |
FORMAT_DATE('%E4Y %m %d %a', DATE '2024-12-31') -- yyyy mm dd dow abbrev Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024 12 31 Tue |
FORMAT_DATE('%E4Y %m %e %a', DATE '2024-12-31') -- yyyy mm d dow abbrev Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024 12 31 Tue |
FORMAT_DATE('%y %m %d %a', DATE '2024-12-31') -- yy mm dd dow abbrev The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24 12 31 Tue |
FORMAT_DATE('%y %m %e %a', DATE '2024-12-31') -- yy mm d dow abbrev The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24 12 31 Tue |
FORMAT_DATE('%G %m %d %a', DATE '2024-12-31') -- Iyyy mm dd dow abbrev The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2025 12 31 Tue |
FORMAT_DATE('%G %m %e %a', DATE '2024-12-31') -- Iyyy mm d dow abbrev The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2025 12 31 Tue |
FORMAT_DATE('%g %m %d %a', DATE '2024-12-31') -- Iy mm dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 25 12 31 Tue |
FORMAT_DATE('%g %m %e %a', DATE '2024-12-31') -- Iy mm d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 25 12 31 Tue |
FORMAT_DATE('%Y %B %d %a', DATE '2024-12-31') -- yyyy month dd dow abbrev The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024 December 31 Tue |
FORMAT_DATE('%Y %B %e %a', DATE '2024-12-31') -- yyyy month d dow abbrev The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024 December 31 Tue |
FORMAT_DATE('%Y %b %d %a', DATE '2024-12-31') -- yyyy mon dd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024 Dec 31 Tue |
FORMAT_DATE('%Y %b %e %a', DATE '2024-12-31') -- yyyy mon d dow abbrev The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024 Dec 31 Tue |
FORMAT_DATE('%Y %h %d %a', DATE '2024-12-31') -- yyyy mon dd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024 Dec 31 Tue |
FORMAT_DATE('%Y %h %e %a', DATE '2024-12-31') -- yyyy mon -dd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024 Dec 31 Tue |
FORMAT_DATE('%E4Y %B %d %a', DATE '2024-12-31') -- yyyy month dd dow abbrev Four-character years (0001 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024 December 31 Tue |
FORMAT_DATE('%E4Y %B %e %a', DATE '2024-12-31') -- yyyy month d dow abbrev Four-character years (0001 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024 December 31 Tue |
FORMAT_DATE('%E4Y %b %d %a', DATE '2024-12-31') -- yyyy mon dd dow abbrev Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024 Dec 31 Tue |
FORMAT_DATE('%E4Y %b %e %a', DATE '2024-12-31') -- yyyy mon d dow abbrev Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024 Dec 31 Tue |
FORMAT_DATE('%E4Y %h %d %a', DATE '2024-12-31') -- yyyy mon dd dow abbrev Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024 Dec 31 Tue |
FORMAT_DATE('%E4Y %h %e %a', DATE '2024-12-31') -- yyyy mon d dow abbrev Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024 Dec 31 Tue |
FORMAT_DATE('%y %B %d %a', DATE '2024-12-31') -- yy month dd dow abbrev The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24 December 31 Tue |
FORMAT_DATE('%y %B %e %a', DATE '2024-12-31') -- yy month d dow abbrev The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24 December 31 Tue |
FORMAT_DATE('%y %b %d %a', DATE '2024-12-31') -- yy mon dd dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24 Dec 31 Tue |
FORMAT_DATE('%y %b %e %a', DATE '2024-12-31') -- yy mon d dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24 Dec 31 Tue |
FORMAT_DATE('%y %h %d %a', DATE '2024-12-31') -- yy mon dd dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24 Dec 31 Tue |
FORMAT_DATE('%y %h %e %a', DATE '2024-12-31') -- yy mon d dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24 Dec 31 Tue |
FORMAT_DATE('%G %B %d %a', DATE '2024-12-31') -- Iy month dd dow abbrev The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2025 December 31 Tue |
FORMAT_DATE('%G %B %e %a', DATE '2024-12-31') -- Iy month d dow abbrev The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2025 December 31 Tue |
FORMAT_DATE('%G %b %d %a', DATE '2024-12-31') -- Iy mon dd dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2025 Dec 31 Tue |
FORMAT_DATE('%G %b %e %a', DATE '2024-12-31') -- Iy mon d dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2025 Dec 31 Tue |
FORMAT_DATE('%G %h %d %a', DATE '2024-12-31') -- Iy mon dd dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2025 Dec 31 Tue |
FORMAT_DATE('%G %h %e %a', DATE '2024-12-31') -- Iy mon d dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2025 Dec 31 Tue |
FORMAT_DATE('%g %B %d %a', DATE '2024-12-31') -- Iyyy month dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 25 December 31 Tue |
FORMAT_DATE('%g %B %e %a', DATE '2024-12-31') -- Iyyy month d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 25 December 31 Tue |
FORMAT_DATE('%g %b %d %a', DATE '2024-12-31') -- Iyyy mon dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 25 Dec 31 Tue |
FORMAT_DATE('%g %b %e %a', DATE '2024-12-31') -- Iyyy mon d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 25 Dec 31 Tue |
FORMAT_DATE('%g %h %d %a', DATE '2024-12-31') -- Iyyy mon dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 25 Dec 31 Tue |
FORMAT_DATE('%g %h %e %a', DATE '2024-12-31') -- Iyyy mon d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 25 Dec 31 Tue |
FORMAT_DATE('%Y%m%d %a', DATE '2024-12-31') -- yyyymmdd dow abbrev The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 20241231 Tue |
FORMAT_DATE('%Y%m%e %a', DATE '2024-12-31') -- yyyymm d dow abbrev The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 20241231 Tue |
FORMAT_DATE('%E4Y%m%d %a', DATE '2024-12-31') -- yyyymmdd dow abbrev Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 20241231 Tue |
FORMAT_DATE('%E4Y%m%e %a', DATE '2024-12-31') -- yyyymm d dow abbrev Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 20241231 Tue |
FORMAT_DATE('%y%m%d %a', DATE '2024-12-31') -- yymmdd dow abbrev The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 241231 Tue |
FORMAT_DATE('%y%m%e %a', DATE '2024-12-31') -- yymm d dow abbrev The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 241231 Tue |
FORMAT_DATE('%G%m%d %a', DATE '2024-12-31') -- Iyyymmdd dow abbrev The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 20251231 Tue |
FORMAT_DATE('%G%m%e %a', DATE '2024-12-31') -- Iyyymm d dow abbrev The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 20251231 Tue |
FORMAT_DATE('%g%m%d %a', DATE '2024-12-31') -- Iymmdd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 251231 Tue |
FORMAT_DATE('%g%m%e %a', DATE '2024-12-31') -- Iymm d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 251231 Tue |
FORMAT_DATE('%Y%B%d %a', DATE '2024-12-31') -- yyyymonthdd dow abbrev The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024December31 Tue |
FORMAT_DATE('%Y%B%e %a', DATE '2024-12-31') -- yyyymonth d dow abbrev The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024December31 Tue |
FORMAT_DATE('%Y%b%d %a', DATE '2024-12-31') -- yyyymondd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024Dec31 Tue |
FORMAT_DATE('%Y%b%e %a', DATE '2024-12-31') -- yyyymon d dow abbrev The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024Dec31 Tue |
FORMAT_DATE('%Y%h%d %a', DATE '2024-12-31') -- yyyymondd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024Dec31 Tue |
FORMAT_DATE('%Y%h%e %a', DATE '2024-12-31') -- yyyymon-dd dow abbrev The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024Dec31 Tue |
FORMAT_DATE('%E4Y%B%d %a', DATE '2024-12-31') -- yyyymonthdd dow abbrev Four-character years (0001 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024December31 Tue |
FORMAT_DATE('%E4Y%B%e %a', DATE '2024-12-31') -- yyyymonth d dow abbrev Four-character years (0001 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024December31 Tue |
FORMAT_DATE('%E4Y%b%d %a', DATE '2024-12-31') -- yyyymondd dow abbrev Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024Dec31 Tue |
FORMAT_DATE('%E4Y%b%e %a', DATE '2024-12-31') -- yyyymon d dow abbrev Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024Dec31 Tue |
FORMAT_DATE('%E4Y%h%d %a', DATE '2024-12-31') -- yyyymondd dow abbrev Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2024Dec31 Tue |
FORMAT_DATE('%E4Y%h%e %a', DATE '2024-12-31') -- yyyymon d dow abbrev Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2024Dec31 Tue |
FORMAT_DATE('%y%B%d %a', DATE '2024-12-31') -- yymonthdd dow abbrev The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24December31 Tue |
FORMAT_DATE('%y%B%e %a', DATE '2024-12-31') -- yymonth d dow abbrev The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24December31 Tue |
FORMAT_DATE('%y%b%d %a', DATE '2024-12-31') -- yymondd dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24Dec31 Tue |
FORMAT_DATE('%y%b%e %a', DATE '2024-12-31') -- yymon d dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24Dec31 Tue |
FORMAT_DATE('%y%h%d %a', DATE '2024-12-31') -- yymondd dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 24Dec31 Tue |
FORMAT_DATE('%y%h%e %a', DATE '2024-12-31') -- yymon d dow abbrev The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 24Dec31 Tue |
FORMAT_DATE('%G%B%d %a', DATE '2024-12-31') -- Iymonthdd dow abbrev The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2025December31 Tue |
FORMAT_DATE('%G%B%e %a', DATE '2024-12-31') -- Iymonth d dow abbrev The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2025December31 Tue |
FORMAT_DATE('%G%b%d %a', DATE '2024-12-31') -- Iymondd dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2025Dec31 Tue |
FORMAT_DATE('%G%b%e %a', DATE '2024-12-31') -- Iymon d dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2025Dec31 Tue |
FORMAT_DATE('%G%h%d %a', DATE '2024-12-31') -- Iymondd dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 2025Dec31 Tue |
FORMAT_DATE('%G%h%e %a', DATE '2024-12-31') -- Iymon d dow abbrev The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 2025Dec31 Tue |
FORMAT_DATE('%g%B%d %a', DATE '2024-12-31') -- Iyyymonthdd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 25December31 Tue |
FORMAT_DATE('%g%B%e %a', DATE '2024-12-31') -- Iyyymonth d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 25December31 Tue |
FORMAT_DATE('%g%b%d %a', DATE '2024-12-31') -- Iyyymondd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 25Dec31 Tue |
FORMAT_DATE('%g%b%e %a', DATE '2024-12-31') -- Iyyymon d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 25Dec31 Tue |
FORMAT_DATE('%g%h%d %a', DATE '2024-12-31') -- Iyyymon-dd dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, day of the week abbreviated | 25Dec31 Tue |
FORMAT_DATE('%g%h%e %a', DATE '2024-12-31') -- Iyyymon d dow abbrev The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, day of the week abbreviated | 25Dec31 Tue |
FORMAT_DATE('%Y-%m-%d Quarter %Q', DATE '2024-12-31') -- yyyy-mm-dd qtr The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024-12-31 Quarter 4 |
FORMAT_DATE('%Y-%m-%e Quarter %Q', DATE '2024-12-31') -- yyyy-mm- d qtr The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024-12-31 Quarter 4 |
FORMAT_DATE('%E4Y-%m-%d Quarter %Q', DATE '2024-12-31') -- yyyy-mm-dd qtr Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024-12-31 Quarter 4 |
FORMAT_DATE('%E4Y-%m-%e Quarter %Q', DATE '2024-12-31') -- yyyy-mm- d qtr Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024-12-31 Quarter 4 |
FORMAT_DATE('%y-%m-%d Quarter %Q', DATE '2024-12-31') -- yy-mm-dd qtr The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 24-12-31 Quarter 4 |
FORMAT_DATE('%y-%m-%e Quarter %Q', DATE '2024-12-31') -- yy-mm- d qtr The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24-12-31 Quarter 4 |
FORMAT_DATE('%G-%m-%d Quarter %Q', DATE '2024-12-31') -- Iyyy-mm-dd qtr The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 2025-12-31 Quarter 4 |
FORMAT_DATE('%G-%m-%e Quarter %Q', DATE '2024-12-31') -- Iyyy-mm- d qtr The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2025-12-31 Quarter 4 |
FORMAT_DATE('%g-%m-%d Quarter %Q', DATE '2024-12-31') -- Iy-mm-dd qtr The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 25-12-31 Quarter 4 |
FORMAT_DATE('%g-%m-%e Quarter %Q', DATE '2024-12-31') -- Iy-mm- d qtr The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 25-12-31 Quarter 4 |
FORMAT_DATE('%Y-%B-%d Quarter %Q', DATE '2024-12-31') -- yyyy-month-dd qtr The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024-December-31 Quarter 4 |
FORMAT_DATE('%Y-%B-%e Quarter %Q', DATE '2024-12-31') -- yyyy-month- d qtr The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024-December-31 Quarter 4 |
FORMAT_DATE('%Y-%b-%d Quarter %Q', DATE '2024-12-31') -- yyyy-mon-dd qtr The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024-Dec-31 Quarter 4 |
FORMAT_DATE('%Y-%b-%e Quarter %Q', DATE '2024-12-31') -- yyyy-mon- d qtr The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024-Dec-31 Quarter 4 |
FORMAT_DATE('%Y-%h-%d Quarter %Q', DATE '2024-12-31') -- yyyy-mon-dd qtr The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024-Dec-31 Quarter 4 |
FORMAT_DATE('%Y-%h-%e Quarter %Q', DATE '2024-12-31') -- yyyy-mon-dd qtr The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024-Dec-31 Quarter 4 |
FORMAT_DATE('%E4Y-%B-%d Quarter %Q', DATE '2024-12-31') -- yyyy-month-dd qtr Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024-December-31 Quarter 4 |
FORMAT_DATE('%E4Y-%B-%e Quarter %Q', DATE '2024-12-31') -- yyyy-month- d qtr Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024-December-31 Quarter 4 |
FORMAT_DATE('%E4Y-%b-%d Quarter %Q', DATE '2024-12-31') -- yyyy-mon-dd qtr Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024-Dec-31 Quarter 4 |
FORMAT_DATE('%E4Y-%b-%e Quarter %Q', DATE '2024-12-31') -- yyyy-mon- d qtr Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024-Dec-31 Quarter 4 |
FORMAT_DATE('%E4Y-%h-%d Quarter %Q', DATE '2024-12-31') -- yyyy-mon-dd qtr Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024-Dec-31 Quarter 4 |
FORMAT_DATE('%E4Y-%h-%e Quarter %Q', DATE '2024-12-31') -- yyyy-mon- d qtr Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024-Dec-31 Quarter 4 |
FORMAT_DATE('%y-%B-%d Quarter %Q', DATE '2024-12-31') -- yy-month-dd qtr The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24-December-31 Quarter 4 |
FORMAT_DATE('%y-%B-%e Quarter %Q', DATE '2024-12-31') -- yy-month- d qtr The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24-December-31 Quarter 4 |
FORMAT_DATE('%y-%b-%d Quarter %Q', DATE '2024-12-31') -- yy-mon-dd qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24-Dec-31 Quarter 4 |
FORMAT_DATE('%y-%b-%e Quarter %Q', DATE '2024-12-31') -- yy-mon- d qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24-Dec-31 Quarter 4 |
FORMAT_DATE('%y-%h-%d Quarter %Q', DATE '2024-12-31') -- yy-mon-dd qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24-Dec-31 Quarter 4 |
FORMAT_DATE('%y-%h-%e Quarter %Q', DATE '2024-12-31') -- yy-mon- d qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24-Dec-31 Quarter 4 |
FORMAT_DATE('%G-%B-%d Quarter %Q', DATE '2024-12-31') -- Iy-month-dd qtr The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2025-December-31 Quarter 4 |
FORMAT_DATE('%G-%B-%e Quarter %Q', DATE '2024-12-31') -- Iy-month- d qtr The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2025-December-31 Quarter 4 |
FORMAT_DATE('%G-%b-%d Quarter %Q', DATE '2024-12-31') -- Iy-mon-dd qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2025-Dec-31 Quarter 4 |
FORMAT_DATE('%G-%b-%e Quarter %Q', DATE '2024-12-31') -- Iy-mon- d qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2025-Dec-31 Quarter 4 |
FORMAT_DATE('%G-%h-%d Quarter %Q', DATE '2024-12-31') -- Iy-mon-dd qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2025-Dec-31 Quarter 4 |
FORMAT_DATE('%G-%h-%e Quarter %Q', DATE '2024-12-31') -- Iy-mon- d qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2025-Dec-31 Quarter 4 |
FORMAT_DATE('%g-%B-%d Quarter %Q', DATE '2024-12-31') -- Iyyy-month-dd qtr The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 25-December-31 Quarter 4 |
FORMAT_DATE('%g-%B-%e Quarter %Q', DATE '2024-12-31') -- Iyyy-month- d qtr The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 25-December-31 Quarter 4 |
FORMAT_DATE('%g-%b-%d Quarter %Q', DATE '2024-12-31') -- Iyyy-mon-dd qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 25-Dec-31 Quarter 4 |
FORMAT_DATE('%g-%b-%e Quarter %Q', DATE '2024-12-31') -- Iyyy-mon- d qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 25-Dec-31 Quarter 4 |
FORMAT_DATE('%g-%h-%d Quarter %Q', DATE '2024-12-31') -- Iyyy-mon-dd qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 25-Dec-31 Quarter 4 |
FORMAT_DATE('%g-%h-%e Quarter %Q', DATE '2024-12-31') -- Iyyy-mon- d qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 25-Dec-31 Quarter 4 |
FORMAT_DATE('%Y/%m/%d Quarter %Q', DATE '2024-12-31') -- yyyy/mm/dd qtr The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024/12/31 Quarter 4 |
FORMAT_DATE('%Y/%m/%e Quarter %Q', DATE '2024-12-31') -- yyyy/mm/ d qtr The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024/12/31 Quarter 4 |
FORMAT_DATE('%E4Y/%m/%d Quarter %Q', DATE '2024-12-31') -- yyyy/mm/-dd qtr Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024/12/31 Quarter 4 |
FORMAT_DATE('%E4Y/%m/%e Quarter %Q', DATE '2024-12-31') -- yyyy/mm/ d qtr Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024/12/31 Quarter 4 |
FORMAT_DATE('%y/%m/%d Quarter %Q', DATE '2024-12-31') -- yy/mm/dd qtr The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 24/12/31 Quarter 4 |
FORMAT_DATE('%y/%m/%e Quarter %Q', DATE '2024-12-31') -- yy/mm/ d qtr The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24/12/31 Quarter 4 |
FORMAT_DATE('%G/%m/%d Quarter %Q', DATE '2024-12-31') -- Iyyy/mm/dd qtr The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 2025/12/31 Quarter 4 |
FORMAT_DATE('%G/%m/%e Quarter %Q', DATE '2024-12-31') -- Iyyy/mm/ d qtr The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2025/12/31 Quarter 4 |
FORMAT_DATE('%g/%m/%d Quarter %Q', DATE '2024-12-31') -- Iy/mm/dd qtr The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 25/12/31 Quarter 4 |
FORMAT_DATE('%g/%m/%e Quarter %Q', DATE '2024-12-31') -- Iy/mm/ d qtr The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 25/12/31 Quarter 4 |
FORMAT_DATE('%Y/%B/%d Quarter %Q', DATE '2024-12-31') -- yyyy/month/dd qtr The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024/December/31 Quarter 4 |
FORMAT_DATE('%Y/%B/%e Quarter %Q', DATE '2024-12-31') -- yyyy/month/ d qtr The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024/December/31 Quarter 4 |
FORMAT_DATE('%Y/%b/%d Quarter %Q', DATE '2024-12-31') -- yyyy/mon/dd qtr The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024/Dec/31 Quarter 4 |
FORMAT_DATE('%Y/%b/%e Quarter %Q', DATE '2024-12-31') -- yyyy/mon/ d qtr The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024/Dec/31 Quarter 4 |
FORMAT_DATE('%Y/%h/%d Quarter %Q', DATE '2024-12-31') -- yyyy/mon/dd qtr The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024/Dec/31 Quarter 4 |
FORMAT_DATE('%Y/%h/%e Quarter %Q', DATE '2024-12-31') -- yyyy/mon/-dd qtr The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024/Dec/31 Quarter 4 |
FORMAT_DATE('%E4Y/%B/%d Quarter %Q', DATE '2024-12-31') -- yyyy/month/dd qtr Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024/December/31 Quarter 4 |
FORMAT_DATE('%E4Y/%B/%e Quarter %Q', DATE '2024-12-31') -- yyyy/month/ d qtr Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024/December/31 Quarter 4 |
FORMAT_DATE('%E4Y/%b/%d Quarter %Q', DATE '2024-12-31') -- yyyy/mon/dd qtr Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024/Dec/31 Quarter 4 |
FORMAT_DATE('%E4Y/%b/%e Quarter %Q', DATE '2024-12-31') -- yyyy/mon/ d qtr Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024/Dec/31 Quarter 4 |
FORMAT_DATE('%E4Y/%h/%d Quarter %Q', DATE '2024-12-31') -- yyyy/mon/dd qtr Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024/Dec/31 Quarter 4 |
FORMAT_DATE('%E4Y/%h/%e Quarter %Q', DATE '2024-12-31') -- yyyy/mon/ d qtr Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024/Dec/31 Quarter 4 |
FORMAT_DATE('%y/%B/%d Quarter %Q', DATE '2024-12-31') -- yy/month/dd qtr The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24/December/31 Quarter 4 |
FORMAT_DATE('%y/%B/%e Quarter %Q', DATE '2024-12-31') -- yy/month/ d qtr The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24/December/31 Quarter 4 |
FORMAT_DATE('%y/%b/%d Quarter %Q', DATE '2024-12-31') -- yy/mon/dd qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24/Dec/31 Quarter 4 |
FORMAT_DATE('%y/%b/%e Quarter %Q', DATE '2024-12-31') -- yy/mon/ d qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24/Dec/31 Quarter 4 |
FORMAT_DATE('%y/%h/%d Quarter %Q', DATE '2024-12-31') -- yy/mon/dd qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24/Dec/31 Quarter 4 |
FORMAT_DATE('%y/%h/%e Quarter %Q', DATE '2024-12-31') -- yy/mon/ d qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24/Dec/31 Quarter 4 |
FORMAT_DATE('%G/%B/%d Quarter %Q', DATE '2024-12-31') -- Iy/month/dd qtr The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2025/December/31 Quarter 4 |
FORMAT_DATE('%G/%B/%e Quarter %Q', DATE '2024-12-31') -- Iy/month/ d qtr The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2025/December/31 Quarter 4 |
FORMAT_DATE('%G/%b/%d Quarter %Q', DATE '2024-12-31') -- Iy/mon/dd qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2025/Dec/31 Quarter 4 |
FORMAT_DATE('%G/%b/%e Quarter %Q', DATE '2024-12-31') -- Iy/mon/ d qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2025/Dec/31 Quarter 4 |
FORMAT_DATE('%G/%h/%d Quarter %Q', DATE '2024-12-31') -- Iy/mon/dd qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2025/Dec/31 Quarter 4 |
FORMAT_DATE('%G/%h/%e Quarter %Q', DATE '2024-12-31') -- Iy/mon/ d qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2025/Dec/31 Quarter 4 |
FORMAT_DATE('%g/%B/%d Quarter %Q', DATE '2024-12-31') -- Iyyy/month/dd qtr The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 25/December/31 Quarter 4 |
FORMAT_DATE('%g/%B/%e Quarter %Q', DATE '2024-12-31') -- Iyyy/month/ d qtr The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 25/December/31 Quarter 4 |
FORMAT_DATE('%g/%b/%d Quarter %Q', DATE '2024-12-31') -- Iyyy/mon/dd qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 25/Dec/31 Quarter 4 |
FORMAT_DATE('%g/%b/%e Quarter %Q', DATE '2024-12-31') -- Iyyy/mon/ d qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 25/Dec/31 Quarter 4 |
FORMAT_DATE('%g/%h/%d Quarter %Q', DATE '2024-12-31') -- Iyyy/mon/-dd qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 25/Dec/31 Quarter 4 |
FORMAT_DATE('%g/%h/%e Quarter %Q', DATE '2024-12-31') -- Iyyy/mon/ d qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 25/Dec/31 Quarter 4 |
FORMAT_DATE('%Y:%m:%d Quarter %Q', DATE '2024-12-31') -- yyyy:mm:dd qtr The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024:12:31 Quarter 4 |
FORMAT_DATE('%Y:%m:%e Quarter %Q', DATE '2024-12-31') -- yyyy:mm: d qtr The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024:12:31 Quarter 4 |
FORMAT_DATE('%E4Y:%m:%d Quarter %Q', DATE '2024-12-31') -- yyyy:mm:-dd qtr Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024:12:31 Quarter 4 |
FORMAT_DATE('%E4Y:%m:%e Quarter %Q', DATE '2024-12-31') -- yyyy:mm: d qtr Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024:12:31 Quarter 4 |
FORMAT_DATE('%y:%m:%d Quarter %Q', DATE '2024-12-31') -- yy:mm:dd qtr The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 24:12:31 Quarter 4 |
FORMAT_DATE('%y:%m:%e Quarter %Q', DATE '2024-12-31') -- yy:mm: d qtr The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24:12:31 Quarter 4 |
FORMAT_DATE('%G:%m:%d Quarter %Q', DATE '2024-12-31') -- Iyyy:mm:dd qtr The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 2025:12:31 Quarter 4 |
FORMAT_DATE('%G:%m:%e Quarter %Q', DATE '2024-12-31') -- Iyyy:mm: d qtr The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2025:12:31 Quarter 4 |
FORMAT_DATE('%g:%m:%d Quarter %Q', DATE '2024-12-31') -- Iy:mm:dd qtr The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 25:12:31 Quarter 4 |
FORMAT_DATE('%g:%m:%e Quarter %Q', DATE '2024-12-31') -- Iy:mm: d qtr The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 25:12:31 Quarter 4 |
FORMAT_DATE('%Y:%B:%d Quarter %Q', DATE '2024-12-31') -- yyyy:month:dd qtr The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024:December:31 Quarter 4 |
FORMAT_DATE('%Y:%B:%e Quarter %Q', DATE '2024-12-31') -- yyyy:month: d qtr The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024:December:31 Quarter 4 |
FORMAT_DATE('%Y:%b:%d Quarter %Q', DATE '2024-12-31') -- yyyy:mon:dd qtr The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024:Dec:31 Quarter 4 |
FORMAT_DATE('%Y:%b:%e Quarter %Q', DATE '2024-12-31') -- yyyy:mon: d qtr The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024:Dec:31 Quarter 4 |
FORMAT_DATE('%Y:%h:%d Quarter %Q', DATE '2024-12-31') -- yyyy:mon:dd qtr The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024:Dec:31 Quarter 4 |
FORMAT_DATE('%Y:%h:%e Quarter %Q', DATE '2024-12-31') -- yyyy:mon:-dd qtr The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024:Dec:31 Quarter 4 |
FORMAT_DATE('%E4Y:%B:%d Quarter %Q', DATE '2024-12-31') -- yyyy:month:dd qtr Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024:December:31 Quarter 4 |
FORMAT_DATE('%E4Y:%B:%e Quarter %Q', DATE '2024-12-31') -- yyyy:month: d qtr Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024:December:31 Quarter 4 |
FORMAT_DATE('%E4Y:%b:%d Quarter %Q', DATE '2024-12-31') -- yyyy:mon:dd qtr Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024:Dec:31 Quarter 4 |
FORMAT_DATE('%E4Y:%b:%e Quarter %Q', DATE '2024-12-31') -- yyyy:mon: d qtr Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024:Dec:31 Quarter 4 |
FORMAT_DATE('%E4Y:%h:%d Quarter %Q', DATE '2024-12-31') -- yyyy:mon:dd qtr Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024:Dec:31 Quarter 4 |
FORMAT_DATE('%E4Y:%h:%e Quarter %Q', DATE '2024-12-31') -- yyyy:mon: d qtr Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024:Dec:31 Quarter 4 |
FORMAT_DATE('%y:%B:%d Quarter %Q', DATE '2024-12-31') -- yy:month:dd qtr The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24:December:31 Quarter 4 |
FORMAT_DATE('%y:%B:%e Quarter %Q', DATE '2024-12-31') -- yy:month: d qtr The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24:December:31 Quarter 4 |
FORMAT_DATE('%y:%b:%d Quarter %Q', DATE '2024-12-31') -- yy:mon:dd qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24:Dec:31 Quarter 4 |
FORMAT_DATE('%y:%b:%e Quarter %Q', DATE '2024-12-31') -- yy:mon: d qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24:Dec:31 Quarter 4 |
FORMAT_DATE('%y:%h:%d Quarter %Q', DATE '2024-12-31') -- yy:mon:dd qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24:Dec:31 Quarter 4 |
FORMAT_DATE('%y:%h:%e Quarter %Q', DATE '2024-12-31') -- yy:mon: d qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24:Dec:31 Quarter 4 |
FORMAT_DATE('%G:%B:%d Quarter %Q', DATE '2024-12-31') -- Iy:month:dd qtr The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2025:December:31 Quarter 4 |
FORMAT_DATE('%G:%B:%e Quarter %Q', DATE '2024-12-31') -- Iy:month: d qtr The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2025:December:31 Quarter 4 |
FORMAT_DATE('%G:%b:%d Quarter %Q', DATE '2024-12-31') -- Iy:mon:dd qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2025:Dec:31 Quarter 4 |
FORMAT_DATE('%G:%b:%e Quarter %Q', DATE '2024-12-31') -- Iy:mon: d qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2025:Dec:31 Quarter 4 |
FORMAT_DATE('%G:%h:%d Quarter %Q', DATE '2024-12-31') -- Iy:mon:dd qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2025:Dec:31 Quarter 4 |
FORMAT_DATE('%G:%h:%e Quarter %Q', DATE '2024-12-31') -- Iy:mon: d qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2025:Dec:31 Quarter 4 |
FORMAT_DATE('%g:%B:%d Quarter %Q', DATE '2024-12-31') -- Iyyy:month:dd qtr The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 25:December:31 Quarter 4 |
FORMAT_DATE('%g:%B:%e Quarter %Q', DATE '2024-12-31') -- Iyyy:month: d qtr The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 25:December:31 Quarter 4 |
FORMAT_DATE('%g:%b:%d Quarter %Q', DATE '2024-12-31') -- Iyyy:mon:dd qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 25:Dec:31 Quarter 4 |
FORMAT_DATE('%g:%b:%e Quarter %Q', DATE '2024-12-31') -- Iyyy:mon: d qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 25:Dec:31 Quarter 4 |
FORMAT_DATE('%g:%h:%d Quarter %Q', DATE '2024-12-31') -- Iyyy:mon:-dd qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 25:Dec:31 Quarter 4 |
FORMAT_DATE('%g:%h:%e Quarter %Q', DATE '2024-12-31') -- Iyyy:mon: d qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 25:Dec:31 Quarter 4 |
FORMAT_DATE('%Y.%m.%d Quarter %Q', DATE '2024-12-31') -- yyyy.mm.dd qtr The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024.12.31 Quarter 4 |
FORMAT_DATE('%Y.%m.%e Quarter %Q', DATE '2024-12-31') -- yyyy.mm. d qtr The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024.12.31 Quarter 4 |
FORMAT_DATE('%E4Y.%m.%d Quarter %Q', DATE '2024-12-31') -- yyyy.mm.-dd qtr Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024.12.31 Quarter 4 |
FORMAT_DATE('%E4Y.%m.%e Quarter %Q', DATE '2024-12-31') -- yyyy.mm. d qtr Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024.12.31 Quarter 4 |
FORMAT_DATE('%y.%m.%d Quarter %Q', DATE '2024-12-31') -- yy.mm.dd qtr The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 24.12.31 Quarter 4 |
FORMAT_DATE('%y.%m.%e Quarter %Q', DATE '2024-12-31') -- yy.mm. d qtr The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24.12.31 Quarter 4 |
FORMAT_DATE('%G.%m.%d Quarter %Q', DATE '2024-12-31') -- Iyyy.mm.dd qtr The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 2025.12.31 Quarter 4 |
FORMAT_DATE('%G.%m.%e Quarter %Q', DATE '2024-12-31') -- Iyyy.mm. d qtr The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2025.12.31 Quarter 4 |
FORMAT_DATE('%g.%m.%d Quarter %Q', DATE '2024-12-31') -- Iy.mm.dd qtr The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 25.12.31 Quarter 4 |
FORMAT_DATE('%g.%m.%e Quarter %Q', DATE '2024-12-31') -- Iy.mm. d qtr The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 25.12.31 Quarter 4 |
FORMAT_DATE('%Y.%B.%d Quarter %Q', DATE '2024-12-31') -- yyyy.month.dd qtr The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024.December.31 Quarter 4 |
FORMAT_DATE('%Y.%B.%e Quarter %Q', DATE '2024-12-31') -- yyyy.month. d qtr The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024.December.31 Quarter 4 |
FORMAT_DATE('%Y.%b.%d Quarter %Q', DATE '2024-12-31') -- yyyy.mon.dd qtr The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024.Dec.31 Quarter 4 |
FORMAT_DATE('%Y.%b.%e Quarter %Q', DATE '2024-12-31') -- yyyy.mon. d qtr The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024.Dec.31 Quarter 4 |
FORMAT_DATE('%Y.%h.%d Quarter %Q', DATE '2024-12-31') -- yyyy.mon.dd qtr The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024.Dec.31 Quarter 4 |
FORMAT_DATE('%Y.%h.%e Quarter %Q', DATE '2024-12-31') -- yyyy.mon.-dd qtr The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024.Dec.31 Quarter 4 |
FORMAT_DATE('%E4Y.%B.%d Quarter %Q', DATE '2024-12-31') -- yyyy.month.dd qtr Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024.December.31 Quarter 4 |
FORMAT_DATE('%E4Y.%B.%e Quarter %Q', DATE '2024-12-31') -- yyyy.month. d qtr Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024.December.31 Quarter 4 |
FORMAT_DATE('%E4Y.%b.%d Quarter %Q', DATE '2024-12-31') -- yyyy.mon.dd qtr Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024.Dec.31 Quarter 4 |
FORMAT_DATE('%E4Y.%b.%e Quarter %Q', DATE '2024-12-31') -- yyyy.mon. d qtr Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024.Dec.31 Quarter 4 |
FORMAT_DATE('%E4Y.%h.%d Quarter %Q', DATE '2024-12-31') -- yyyy.mon.dd qtr Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024.Dec.31 Quarter 4 |
FORMAT_DATE('%E4Y.%h.%e Quarter %Q', DATE '2024-12-31') -- yyyy.mon. d qtr Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024.Dec.31 Quarter 4 |
FORMAT_DATE('%y.%B.%d Quarter %Q', DATE '2024-12-31') -- yy.month.dd qtr The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24.December.31 Quarter 4 |
FORMAT_DATE('%y.%B.%e Quarter %Q', DATE '2024-12-31') -- yy.month. d qtr The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24.December.31 Quarter 4 |
FORMAT_DATE('%y.%b.%d Quarter %Q', DATE '2024-12-31') -- yy.mon.dd qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24.Dec.31 Quarter 4 |
FORMAT_DATE('%y.%b.%e Quarter %Q', DATE '2024-12-31') -- yy.mon. d qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24.Dec.31 Quarter 4 |
FORMAT_DATE('%y.%h.%d Quarter %Q', DATE '2024-12-31') -- yy.mon.dd qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24.Dec.31 Quarter 4 |
FORMAT_DATE('%y.%h.%e Quarter %Q', DATE '2024-12-31') -- yy.mon. d qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24.Dec.31 Quarter 4 |
FORMAT_DATE('%G.%B.%d Quarter %Q', DATE '2024-12-31') -- Iy.month.dd qtr The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2025.December.31 Quarter 4 |
FORMAT_DATE('%G.%B.%e Quarter %Q', DATE '2024-12-31') -- Iy.month. d qtr The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2025.December.31 Quarter 4 |
FORMAT_DATE('%G.%b.%d Quarter %Q', DATE '2024-12-31') -- Iy.mon.dd qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2025.Dec.31 Quarter 4 |
FORMAT_DATE('%G.%b.%e Quarter %Q', DATE '2024-12-31') -- Iy.mon. d qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2025.Dec.31 Quarter 4 |
FORMAT_DATE('%G.%h.%d Quarter %Q', DATE '2024-12-31') -- Iy.mon.dd qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2025.Dec.31 Quarter 4 |
FORMAT_DATE('%G.%h.%e Quarter %Q', DATE '2024-12-31') -- Iy.mon. d qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2025.Dec.31 Quarter 4 |
FORMAT_DATE('%g.%B.%d Quarter %Q', DATE '2024-12-31') -- Iyyy.month.dd qtr The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 25.December.31 Quarter 4 |
FORMAT_DATE('%g.%B.%e Quarter %Q', DATE '2024-12-31') -- Iyyy.month. d qtr The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 25.December.31 Quarter 4 |
FORMAT_DATE('%g.%b.%d Quarter %Q', DATE '2024-12-31') -- Iyyy.mon.dd qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 25.Dec.31 Quarter 4 |
FORMAT_DATE('%g.%b.%e Quarter %Q', DATE '2024-12-31') -- Iyyy.mon. d qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 25.Dec.31 Quarter 4 |
FORMAT_DATE('%g.%h.%d Quarter %Q', DATE '2024-12-31') -- Iyyy.mon.-dd qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 25.Dec.31 Quarter 4 |
FORMAT_DATE('%g.%h.%e Quarter %Q', DATE '2024-12-31') -- Iyyy.mon. d qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 25.Dec.31 Quarter 4 |
FORMAT_DATE('%Y %m %d Quarter %Q', DATE '2024-12-31') -- yyyy mm dd qtr The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024 12 31 Quarter 4 |
FORMAT_DATE('%Y %m %e Quarter %Q', DATE '2024-12-31') -- yyyy mm d qtr The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024 12 31 Quarter 4 |
FORMAT_DATE('%E4Y %m %d Quarter %Q', DATE '2024-12-31') -- yyyy mm dd qtr Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024 12 31 Quarter 4 |
FORMAT_DATE('%E4Y %m %e Quarter %Q', DATE '2024-12-31') -- yyyy mm d qtr Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024 12 31 Quarter 4 |
FORMAT_DATE('%y %m %d Quarter %Q', DATE '2024-12-31') -- yy mm dd qtr The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 24 12 31 Quarter 4 |
FORMAT_DATE('%y %m %e Quarter %Q', DATE '2024-12-31') -- yy mm d qtr The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24 12 31 Quarter 4 |
FORMAT_DATE('%G %m %d Quarter %Q', DATE '2024-12-31') -- Iyyy mm dd qtr The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 2025 12 31 Quarter 4 |
FORMAT_DATE('%G %m %e Quarter %Q', DATE '2024-12-31') -- Iyyy mm d qtr The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2025 12 31 Quarter 4 |
FORMAT_DATE('%g %m %d Quarter %Q', DATE '2024-12-31') -- Iy mm dd qtr The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 25 12 31 Quarter 4 |
FORMAT_DATE('%g %m %e Quarter %Q', DATE '2024-12-31') -- Iy mm d qtr The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 25 12 31 Quarter 4 |
FORMAT_DATE('%Y %B %d Quarter %Q', DATE '2024-12-31') -- yyyy month dd qtr The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024 December 31 Quarter 4 |
FORMAT_DATE('%Y %B %e Quarter %Q', DATE '2024-12-31') -- yyyy month d qtr The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024 December 31 Quarter 4 |
FORMAT_DATE('%Y %b %d Quarter %Q', DATE '2024-12-31') -- yyyy mon dd qtr The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024 Dec 31 Quarter 4 |
FORMAT_DATE('%Y %b %e Quarter %Q', DATE '2024-12-31') -- yyyy mon d qtr The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024 Dec 31 Quarter 4 |
FORMAT_DATE('%Y %h %d Quarter %Q', DATE '2024-12-31') -- yyyy mon dd qtr The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024 Dec 31 Quarter 4 |
FORMAT_DATE('%Y %h %e Quarter %Q', DATE '2024-12-31') -- yyyy mon -dd qtr The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024 Dec 31 Quarter 4 |
FORMAT_DATE('%E4Y %B %d Quarter %Q', DATE '2024-12-31') -- yyyy month dd qtr Four-character years (0001 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024 December 31 Quarter 4 |
FORMAT_DATE('%E4Y %B %e Quarter %Q', DATE '2024-12-31') -- yyyy month d qtr Four-character years (0001 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024 December 31 Quarter 4 |
FORMAT_DATE('%E4Y %b %d Quarter %Q', DATE '2024-12-31') -- yyyy mon dd qtr Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024 Dec 31 Quarter 4 |
FORMAT_DATE('%E4Y %b %e Quarter %Q', DATE '2024-12-31') -- yyyy mon d qtr Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024 Dec 31 Quarter 4 |
FORMAT_DATE('%E4Y %h %d Quarter %Q', DATE '2024-12-31') -- yyyy mon dd qtr Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024 Dec 31 Quarter 4 |
FORMAT_DATE('%E4Y %h %e Quarter %Q', DATE '2024-12-31') -- yyyy mon d qtr Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024 Dec 31 Quarter 4 |
FORMAT_DATE('%y %B %d Quarter %Q', DATE '2024-12-31') -- yy month dd qtr The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24 December 31 Quarter 4 |
FORMAT_DATE('%y %B %e Quarter %Q', DATE '2024-12-31') -- yy month d qtr The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24 December 31 Quarter 4 |
FORMAT_DATE('%y %b %d Quarter %Q', DATE '2024-12-31') -- yy mon dd qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24 Dec 31 Quarter 4 |
FORMAT_DATE('%y %b %e Quarter %Q', DATE '2024-12-31') -- yy mon d qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24 Dec 31 Quarter 4 |
FORMAT_DATE('%y %h %d Quarter %Q', DATE '2024-12-31') -- yy mon dd qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24 Dec 31 Quarter 4 |
FORMAT_DATE('%y %h %e Quarter %Q', DATE '2024-12-31') -- yy mon d qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24 Dec 31 Quarter 4 |
FORMAT_DATE('%G %B %d Quarter %Q', DATE '2024-12-31') -- Iy month dd qtr The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2025 December 31 Quarter 4 |
FORMAT_DATE('%G %B %e Quarter %Q', DATE '2024-12-31') -- Iy month d qtr The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2025 December 31 Quarter 4 |
FORMAT_DATE('%G %b %d Quarter %Q', DATE '2024-12-31') -- Iy mon dd qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2025 Dec 31 Quarter 4 |
FORMAT_DATE('%G %b %e Quarter %Q', DATE '2024-12-31') -- Iy mon d qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2025 Dec 31 Quarter 4 |
FORMAT_DATE('%G %h %d Quarter %Q', DATE '2024-12-31') -- Iy mon dd qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2025 Dec 31 Quarter 4 |
FORMAT_DATE('%G %h %e Quarter %Q', DATE '2024-12-31') -- Iy mon d qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2025 Dec 31 Quarter 4 |
FORMAT_DATE('%g %B %d Quarter %Q', DATE '2024-12-31') -- Iyyy month dd qtr The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 25 December 31 Quarter 4 |
FORMAT_DATE('%g %B %e Quarter %Q', DATE '2024-12-31') -- Iyyy month d qtr The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 25 December 31 Quarter 4 |
FORMAT_DATE('%g %b %d Quarter %Q', DATE '2024-12-31') -- Iyyy mon dd qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 25 Dec 31 Quarter 4 |
FORMAT_DATE('%g %b %e Quarter %Q', DATE '2024-12-31') -- Iyyy mon d qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 25 Dec 31 Quarter 4 |
FORMAT_DATE('%g %h %d Quarter %Q', DATE '2024-12-31') -- Iyyy mon dd qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 25 Dec 31 Quarter 4 |
FORMAT_DATE('%g %h %e Quarter %Q', DATE '2024-12-31') -- Iyyy mon d qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 25 Dec 31 Quarter 4 |
FORMAT_DATE('%Y%m%d Quarter %Q', DATE '2024-12-31') -- yyyymmdd qtr The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 20241231 Quarter 4 |
FORMAT_DATE('%Y%m%e Quarter %Q', DATE '2024-12-31') -- yyyymm d qtr The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 20241231 Quarter 4 |
FORMAT_DATE('%E4Y%m%d Quarter %Q', DATE '2024-12-31') -- yyyymmdd qtr Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 20241231 Quarter 4 |
FORMAT_DATE('%E4Y%m%e Quarter %Q', DATE '2024-12-31') -- yyyymm d qtr Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 20241231 Quarter 4 |
FORMAT_DATE('%y%m%d Quarter %Q', DATE '2024-12-31') -- yymmdd qtr The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 241231 Quarter 4 |
FORMAT_DATE('%y%m%e Quarter %Q', DATE '2024-12-31') -- yymm d qtr The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 241231 Quarter 4 |
FORMAT_DATE('%G%m%d Quarter %Q', DATE '2024-12-31') -- Iyyymmdd qtr The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 20251231 Quarter 4 |
FORMAT_DATE('%G%m%e Quarter %Q', DATE '2024-12-31') -- Iyyymm d qtr The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 20251231 Quarter 4 |
FORMAT_DATE('%g%m%d Quarter %Q', DATE '2024-12-31') -- Iymmdd qtr The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the quarter | 251231 Quarter 4 |
FORMAT_DATE('%g%m%e Quarter %Q', DATE '2024-12-31') -- Iymm d qtr The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 251231 Quarter 4 |
FORMAT_DATE('%Y%B%d Quarter %Q', DATE '2024-12-31') -- yyyymonthdd qtr The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024December31 Quarter 4 |
FORMAT_DATE('%Y%B%e Quarter %Q', DATE '2024-12-31') -- yyyymonth d qtr The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024December31 Quarter 4 |
FORMAT_DATE('%Y%b%d Quarter %Q', DATE '2024-12-31') -- yyyymondd qtr The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024Dec31 Quarter 4 |
FORMAT_DATE('%Y%b%e Quarter %Q', DATE '2024-12-31') -- yyyymon d qtr The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024Dec31 Quarter 4 |
FORMAT_DATE('%Y%h%d Quarter %Q', DATE '2024-12-31') -- yyyymondd qtr The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024Dec31 Quarter 4 |
FORMAT_DATE('%Y%h%e Quarter %Q', DATE '2024-12-31') -- yyyymon-dd qtr The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024Dec31 Quarter 4 |
FORMAT_DATE('%E4Y%B%d Quarter %Q', DATE '2024-12-31') -- yyyymonthdd qtr Four-character years (0001 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024December31 Quarter 4 |
FORMAT_DATE('%E4Y%B%e Quarter %Q', DATE '2024-12-31') -- yyyymonth d qtr Four-character years (0001 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024December31 Quarter 4 |
FORMAT_DATE('%E4Y%b%d Quarter %Q', DATE '2024-12-31') -- yyyymondd qtr Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024Dec31 Quarter 4 |
FORMAT_DATE('%E4Y%b%e Quarter %Q', DATE '2024-12-31') -- yyyymon d qtr Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024Dec31 Quarter 4 |
FORMAT_DATE('%E4Y%h%d Quarter %Q', DATE '2024-12-31') -- yyyymondd qtr Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2024Dec31 Quarter 4 |
FORMAT_DATE('%E4Y%h%e Quarter %Q', DATE '2024-12-31') -- yyyymon d qtr Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2024Dec31 Quarter 4 |
FORMAT_DATE('%y%B%d Quarter %Q', DATE '2024-12-31') -- yymonthdd qtr The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24December31 Quarter 4 |
FORMAT_DATE('%y%B%e Quarter %Q', DATE '2024-12-31') -- yymonth d qtr The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24December31 Quarter 4 |
FORMAT_DATE('%y%b%d Quarter %Q', DATE '2024-12-31') -- yymondd qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24Dec31 Quarter 4 |
FORMAT_DATE('%y%b%e Quarter %Q', DATE '2024-12-31') -- yymon d qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24Dec31 Quarter 4 |
FORMAT_DATE('%y%h%d Quarter %Q', DATE '2024-12-31') -- yymondd qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 24Dec31 Quarter 4 |
FORMAT_DATE('%y%h%e Quarter %Q', DATE '2024-12-31') -- yymon d qtr The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 24Dec31 Quarter 4 |
FORMAT_DATE('%G%B%d Quarter %Q', DATE '2024-12-31') -- Iymonthdd qtr The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2025December31 Quarter 4 |
FORMAT_DATE('%G%B%e Quarter %Q', DATE '2024-12-31') -- Iymonth d qtr The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2025December31 Quarter 4 |
FORMAT_DATE('%G%b%d Quarter %Q', DATE '2024-12-31') -- Iymondd qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2025Dec31 Quarter 4 |
FORMAT_DATE('%G%b%e Quarter %Q', DATE '2024-12-31') -- Iymon d qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2025Dec31 Quarter 4 |
FORMAT_DATE('%G%h%d Quarter %Q', DATE '2024-12-31') -- Iymondd qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 2025Dec31 Quarter 4 |
FORMAT_DATE('%G%h%e Quarter %Q', DATE '2024-12-31') -- Iymon d qtr The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 2025Dec31 Quarter 4 |
FORMAT_DATE('%g%B%d Quarter %Q', DATE '2024-12-31') -- Iyyymonthdd qtr The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 25December31 Quarter 4 |
FORMAT_DATE('%g%B%e Quarter %Q', DATE '2024-12-31') -- Iyyymonth d qtr The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 25December31 Quarter 4 |
FORMAT_DATE('%g%b%d Quarter %Q', DATE '2024-12-31') -- Iyyymondd qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 25Dec31 Quarter 4 |
FORMAT_DATE('%g%b%e Quarter %Q', DATE '2024-12-31') -- Iyyymon d qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 25Dec31 Quarter 4 |
FORMAT_DATE('%g%h%d Quarter %Q', DATE '2024-12-31') -- Iyyymon-dd qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the quarter | 25Dec31 Quarter 4 |
FORMAT_DATE('%g%h%e Quarter %Q', DATE '2024-12-31') -- Iyyymon d qtr The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the quarter | 25Dec31 Quarter 4 |
FORMAT_DATE('%Y-%m-%d Week %U', DATE '2024-12-31') -- yyyy-mm-dd woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024-12-31 Week 52 |
FORMAT_DATE('%Y-%m-%e Week %U', DATE '2024-12-31') -- yyyy-mm- d woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024-12-31 Week 52 |
FORMAT_DATE('%E4Y-%m-%d Week %U', DATE '2024-12-31') -- yyyy-mm-dd woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024-12-31 Week 52 |
FORMAT_DATE('%E4Y-%m-%e Week %U', DATE '2024-12-31') -- yyyy-mm- d woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024-12-31 Week 52 |
FORMAT_DATE('%y-%m-%d Week %U', DATE '2024-12-31') -- yy-mm-dd woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24-12-31 Week 52 |
FORMAT_DATE('%y-%m-%e Week %U', DATE '2024-12-31') -- yy-mm- d woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24-12-31 Week 52 |
FORMAT_DATE('%G-%m-%d Week %U', DATE '2024-12-31') -- Iyyy-mm-dd woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2025-12-31 Week 52 |
FORMAT_DATE('%G-%m-%e Week %U', DATE '2024-12-31') -- Iyyy-mm- d woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2025-12-31 Week 52 |
FORMAT_DATE('%g-%m-%d Week %U', DATE '2024-12-31') -- Iy-mm-dd woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 25-12-31 Week 52 |
FORMAT_DATE('%g-%m-%e Week %U', DATE '2024-12-31') -- Iy-mm- d woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 25-12-31 Week 52 |
FORMAT_DATE('%Y-%B-%d Week %U', DATE '2024-12-31') -- yyyy-month-dd woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024-December-31 Week 52 |
FORMAT_DATE('%Y-%B-%e Week %U', DATE '2024-12-31') -- yyyy-month- d woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024-December-31 Week 52 |
FORMAT_DATE('%Y-%b-%d Week %U', DATE '2024-12-31') -- yyyy-mon-dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024-Dec-31 Week 52 |
FORMAT_DATE('%Y-%b-%e Week %U', DATE '2024-12-31') -- yyyy-mon- d woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024-Dec-31 Week 52 |
FORMAT_DATE('%Y-%h-%d Week %U', DATE '2024-12-31') -- yyyy-mon-dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024-Dec-31 Week 52 |
FORMAT_DATE('%Y-%h-%e Week %U', DATE '2024-12-31') -- yyyy-mon-dd woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024-Dec-31 Week 52 |
FORMAT_DATE('%E4Y-%B-%d Week %U', DATE '2024-12-31') -- yyyy-month-dd woy Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024-December-31 Week 52 |
FORMAT_DATE('%E4Y-%B-%e Week %U', DATE '2024-12-31') -- yyyy-month- d woy Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024-December-31 Week 52 |
FORMAT_DATE('%E4Y-%b-%d Week %U', DATE '2024-12-31') -- yyyy-mon-dd woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024-Dec-31 Week 52 |
FORMAT_DATE('%E4Y-%b-%e Week %U', DATE '2024-12-31') -- yyyy-mon- d woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024-Dec-31 Week 52 |
FORMAT_DATE('%E4Y-%h-%d Week %U', DATE '2024-12-31') -- yyyy-mon-dd woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024-Dec-31 Week 52 |
FORMAT_DATE('%E4Y-%h-%e Week %U', DATE '2024-12-31') -- yyyy-mon- d woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024-Dec-31 Week 52 |
FORMAT_DATE('%y-%B-%d Week %U', DATE '2024-12-31') -- yy-month-dd woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24-December-31 Week 52 |
FORMAT_DATE('%y-%B-%e Week %U', DATE '2024-12-31') -- yy-month- d woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24-December-31 Week 52 |
FORMAT_DATE('%y-%b-%d Week %U', DATE '2024-12-31') -- yy-mon-dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24-Dec-31 Week 52 |
FORMAT_DATE('%y-%b-%e Week %U', DATE '2024-12-31') -- yy-mon- d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24-Dec-31 Week 52 |
FORMAT_DATE('%y-%h-%d Week %U', DATE '2024-12-31') -- yy-mon-dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24-Dec-31 Week 52 |
FORMAT_DATE('%y-%h-%e Week %U', DATE '2024-12-31') -- yy-mon- d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24-Dec-31 Week 52 |
FORMAT_DATE('%G-%B-%d Week %U', DATE '2024-12-31') -- Iy-month-dd woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2025-December-31 Week 52 |
FORMAT_DATE('%G-%B-%e Week %U', DATE '2024-12-31') -- Iy-month- d woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2025-December-31 Week 52 |
FORMAT_DATE('%G-%b-%d Week %U', DATE '2024-12-31') -- Iy-mon-dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2025-Dec-31 Week 52 |
FORMAT_DATE('%G-%b-%e Week %U', DATE '2024-12-31') -- Iy-mon- d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2025-Dec-31 Week 52 |
FORMAT_DATE('%G-%h-%d Week %U', DATE '2024-12-31') -- Iy-mon-dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2025-Dec-31 Week 52 |
FORMAT_DATE('%G-%h-%e Week %U', DATE '2024-12-31') -- Iy-mon- d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2025-Dec-31 Week 52 |
FORMAT_DATE('%g-%B-%d Week %U', DATE '2024-12-31') -- Iyyy-month-dd woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 25-December-31 Week 52 |
FORMAT_DATE('%g-%B-%e Week %U', DATE '2024-12-31') -- Iyyy-month- d woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 25-December-31 Week 52 |
FORMAT_DATE('%g-%b-%d Week %U', DATE '2024-12-31') -- Iyyy-mon-dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 25-Dec-31 Week 52 |
FORMAT_DATE('%g-%b-%e Week %U', DATE '2024-12-31') -- Iyyy-mon- d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 25-Dec-31 Week 52 |
FORMAT_DATE('%g-%h-%d Week %U', DATE '2024-12-31') -- Iyyy-mon-dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 25-Dec-31 Week 52 |
FORMAT_DATE('%g-%h-%e Week %U', DATE '2024-12-31') -- Iyyy-mon- d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 25-Dec-31 Week 52 |
FORMAT_DATE('%Y/%m/%d Week %U', DATE '2024-12-31') -- yyyy/mm/dd woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024/12/31 Week 52 |
FORMAT_DATE('%Y/%m/%e Week %U', DATE '2024-12-31') -- yyyy/mm/ d woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024/12/31 Week 52 |
FORMAT_DATE('%E4Y/%m/%d Week %U', DATE '2024-12-31') -- yyyy/mm/-dd woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024/12/31 Week 52 |
FORMAT_DATE('%E4Y/%m/%e Week %U', DATE '2024-12-31') -- yyyy/mm/ d woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024/12/31 Week 52 |
FORMAT_DATE('%y/%m/%d Week %U', DATE '2024-12-31') -- yy/mm/dd woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24/12/31 Week 52 |
FORMAT_DATE('%y/%m/%e Week %U', DATE '2024-12-31') -- yy/mm/ d woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24/12/31 Week 52 |
FORMAT_DATE('%G/%m/%d Week %U', DATE '2024-12-31') -- Iyyy/mm/dd woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2025/12/31 Week 52 |
FORMAT_DATE('%G/%m/%e Week %U', DATE '2024-12-31') -- Iyyy/mm/ d woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2025/12/31 Week 52 |
FORMAT_DATE('%g/%m/%d Week %U', DATE '2024-12-31') -- Iy/mm/dd woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 25/12/31 Week 52 |
FORMAT_DATE('%g/%m/%e Week %U', DATE '2024-12-31') -- Iy/mm/ d woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 25/12/31 Week 52 |
FORMAT_DATE('%Y/%B/%d Week %U', DATE '2024-12-31') -- yyyy/month/dd woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024/December/31 Week 52 |
FORMAT_DATE('%Y/%B/%e Week %U', DATE '2024-12-31') -- yyyy/month/ d woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024/December/31 Week 52 |
FORMAT_DATE('%Y/%b/%d Week %U', DATE '2024-12-31') -- yyyy/mon/dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024/Dec/31 Week 52 |
FORMAT_DATE('%Y/%b/%e Week %U', DATE '2024-12-31') -- yyyy/mon/ d woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024/Dec/31 Week 52 |
FORMAT_DATE('%Y/%h/%d Week %U', DATE '2024-12-31') -- yyyy/mon/dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024/Dec/31 Week 52 |
FORMAT_DATE('%Y/%h/%e Week %U', DATE '2024-12-31') -- yyyy/mon/-dd woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024/Dec/31 Week 52 |
FORMAT_DATE('%E4Y/%B/%d Week %U', DATE '2024-12-31') -- yyyy/month/dd woy Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024/December/31 Week 52 |
FORMAT_DATE('%E4Y/%B/%e Week %U', DATE '2024-12-31') -- yyyy/month/ d woy Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024/December/31 Week 52 |
FORMAT_DATE('%E4Y/%b/%d Week %U', DATE '2024-12-31') -- yyyy/mon/dd woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024/Dec/31 Week 52 |
FORMAT_DATE('%E4Y/%b/%e Week %U', DATE '2024-12-31') -- yyyy/mon/ d woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024/Dec/31 Week 52 |
FORMAT_DATE('%E4Y/%h/%d Week %U', DATE '2024-12-31') -- yyyy/mon/dd woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024/Dec/31 Week 52 |
FORMAT_DATE('%E4Y/%h/%e Week %U', DATE '2024-12-31') -- yyyy/mon/ d woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024/Dec/31 Week 52 |
FORMAT_DATE('%y/%B/%d Week %U', DATE '2024-12-31') -- yy/month/dd woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24/December/31 Week 52 |
FORMAT_DATE('%y/%B/%e Week %U', DATE '2024-12-31') -- yy/month/ d woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24/December/31 Week 52 |
FORMAT_DATE('%y/%b/%d Week %U', DATE '2024-12-31') -- yy/mon/dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24/Dec/31 Week 52 |
FORMAT_DATE('%y/%b/%e Week %U', DATE '2024-12-31') -- yy/mon/ d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24/Dec/31 Week 52 |
FORMAT_DATE('%y/%h/%d Week %U', DATE '2024-12-31') -- yy/mon/dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24/Dec/31 Week 52 |
FORMAT_DATE('%y/%h/%e Week %U', DATE '2024-12-31') -- yy/mon/ d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24/Dec/31 Week 52 |
FORMAT_DATE('%G/%B/%d Week %U', DATE '2024-12-31') -- Iy/month/dd woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2025/December/31 Week 52 |
FORMAT_DATE('%G/%B/%e Week %U', DATE '2024-12-31') -- Iy/month/ d woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2025/December/31 Week 52 |
FORMAT_DATE('%G/%b/%d Week %U', DATE '2024-12-31') -- Iy/mon/dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2025/Dec/31 Week 52 |
FORMAT_DATE('%G/%b/%e Week %U', DATE '2024-12-31') -- Iy/mon/ d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2025/Dec/31 Week 52 |
FORMAT_DATE('%G/%h/%d Week %U', DATE '2024-12-31') -- Iy/mon/dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2025/Dec/31 Week 52 |
FORMAT_DATE('%G/%h/%e Week %U', DATE '2024-12-31') -- Iy/mon/ d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2025/Dec/31 Week 52 |
FORMAT_DATE('%g/%B/%d Week %U', DATE '2024-12-31') -- Iyyy/month/dd woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 25/December/31 Week 52 |
FORMAT_DATE('%g/%B/%e Week %U', DATE '2024-12-31') -- Iyyy/month/ d woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 25/December/31 Week 52 |
FORMAT_DATE('%g/%b/%d Week %U', DATE '2024-12-31') -- Iyyy/mon/dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 25/Dec/31 Week 52 |
FORMAT_DATE('%g/%b/%e Week %U', DATE '2024-12-31') -- Iyyy/mon/ d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 25/Dec/31 Week 52 |
FORMAT_DATE('%g/%h/%d Week %U', DATE '2024-12-31') -- Iyyy/mon/-dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 25/Dec/31 Week 52 |
FORMAT_DATE('%g/%h/%e Week %U', DATE '2024-12-31') -- Iyyy/mon/ d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 25/Dec/31 Week 52 |
FORMAT_DATE('%Y:%m:%d Week %U', DATE '2024-12-31') -- yyyy:mm:dd woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024:12:31 Week 52 |
FORMAT_DATE('%Y:%m:%e Week %U', DATE '2024-12-31') -- yyyy:mm: d woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024:12:31 Week 52 |
FORMAT_DATE('%E4Y:%m:%d Week %U', DATE '2024-12-31') -- yyyy:mm:-dd woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024:12:31 Week 52 |
FORMAT_DATE('%E4Y:%m:%e Week %U', DATE '2024-12-31') -- yyyy:mm: d woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024:12:31 Week 52 |
FORMAT_DATE('%y:%m:%d Week %U', DATE '2024-12-31') -- yy:mm:dd woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24:12:31 Week 52 |
FORMAT_DATE('%y:%m:%e Week %U', DATE '2024-12-31') -- yy:mm: d woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24:12:31 Week 52 |
FORMAT_DATE('%G:%m:%d Week %U', DATE '2024-12-31') -- Iyyy:mm:dd woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2025:12:31 Week 52 |
FORMAT_DATE('%G:%m:%e Week %U', DATE '2024-12-31') -- Iyyy:mm: d woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2025:12:31 Week 52 |
FORMAT_DATE('%g:%m:%d Week %U', DATE '2024-12-31') -- Iy:mm:dd woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 25:12:31 Week 52 |
FORMAT_DATE('%g:%m:%e Week %U', DATE '2024-12-31') -- Iy:mm: d woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 25:12:31 Week 52 |
FORMAT_DATE('%Y:%B:%d Week %U', DATE '2024-12-31') -- yyyy:month:dd woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024:December:31 Week 52 |
FORMAT_DATE('%Y:%B:%e Week %U', DATE '2024-12-31') -- yyyy:month: d woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024:December:31 Week 52 |
FORMAT_DATE('%Y:%b:%d Week %U', DATE '2024-12-31') -- yyyy:mon:dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024:Dec:31 Week 52 |
FORMAT_DATE('%Y:%b:%e Week %U', DATE '2024-12-31') -- yyyy:mon: d woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024:Dec:31 Week 52 |
FORMAT_DATE('%Y:%h:%d Week %U', DATE '2024-12-31') -- yyyy:mon:dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024:Dec:31 Week 52 |
FORMAT_DATE('%Y:%h:%e Week %U', DATE '2024-12-31') -- yyyy:mon:-dd woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024:Dec:31 Week 52 |
FORMAT_DATE('%E4Y:%B:%d Week %U', DATE '2024-12-31') -- yyyy:month:dd woy Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024:December:31 Week 52 |
FORMAT_DATE('%E4Y:%B:%e Week %U', DATE '2024-12-31') -- yyyy:month: d woy Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024:December:31 Week 52 |
FORMAT_DATE('%E4Y:%b:%d Week %U', DATE '2024-12-31') -- yyyy:mon:dd woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024:Dec:31 Week 52 |
FORMAT_DATE('%E4Y:%b:%e Week %U', DATE '2024-12-31') -- yyyy:mon: d woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024:Dec:31 Week 52 |
FORMAT_DATE('%E4Y:%h:%d Week %U', DATE '2024-12-31') -- yyyy:mon:dd woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024:Dec:31 Week 52 |
FORMAT_DATE('%E4Y:%h:%e Week %U', DATE '2024-12-31') -- yyyy:mon: d woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024:Dec:31 Week 52 |
FORMAT_DATE('%y:%B:%d Week %U', DATE '2024-12-31') -- yy:month:dd woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24:December:31 Week 52 |
FORMAT_DATE('%y:%B:%e Week %U', DATE '2024-12-31') -- yy:month: d woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24:December:31 Week 52 |
FORMAT_DATE('%y:%b:%d Week %U', DATE '2024-12-31') -- yy:mon:dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24:Dec:31 Week 52 |
FORMAT_DATE('%y:%b:%e Week %U', DATE '2024-12-31') -- yy:mon: d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24:Dec:31 Week 52 |
FORMAT_DATE('%y:%h:%d Week %U', DATE '2024-12-31') -- yy:mon:dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24:Dec:31 Week 52 |
FORMAT_DATE('%y:%h:%e Week %U', DATE '2024-12-31') -- yy:mon: d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24:Dec:31 Week 52 |
FORMAT_DATE('%G:%B:%d Week %U', DATE '2024-12-31') -- Iy:month:dd woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2025:December:31 Week 52 |
FORMAT_DATE('%G:%B:%e Week %U', DATE '2024-12-31') -- Iy:month: d woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2025:December:31 Week 52 |
FORMAT_DATE('%G:%b:%d Week %U', DATE '2024-12-31') -- Iy:mon:dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2025:Dec:31 Week 52 |
FORMAT_DATE('%G:%b:%e Week %U', DATE '2024-12-31') -- Iy:mon: d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2025:Dec:31 Week 52 |
FORMAT_DATE('%G:%h:%d Week %U', DATE '2024-12-31') -- Iy:mon:dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2025:Dec:31 Week 52 |
FORMAT_DATE('%G:%h:%e Week %U', DATE '2024-12-31') -- Iy:mon: d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2025:Dec:31 Week 52 |
FORMAT_DATE('%g:%B:%d Week %U', DATE '2024-12-31') -- Iyyy:month:dd woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 25:December:31 Week 52 |
FORMAT_DATE('%g:%B:%e Week %U', DATE '2024-12-31') -- Iyyy:month: d woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 25:December:31 Week 52 |
FORMAT_DATE('%g:%b:%d Week %U', DATE '2024-12-31') -- Iyyy:mon:dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 25:Dec:31 Week 52 |
FORMAT_DATE('%g:%b:%e Week %U', DATE '2024-12-31') -- Iyyy:mon: d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 25:Dec:31 Week 52 |
FORMAT_DATE('%g:%h:%d Week %U', DATE '2024-12-31') -- Iyyy:mon:-dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 25:Dec:31 Week 52 |
FORMAT_DATE('%g:%h:%e Week %U', DATE '2024-12-31') -- Iyyy:mon: d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 25:Dec:31 Week 52 |
FORMAT_DATE('%Y.%m.%d Week %U', DATE '2024-12-31') -- yyyy.mm.dd woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024.12.31 Week 52 |
FORMAT_DATE('%Y.%m.%e Week %U', DATE '2024-12-31') -- yyyy.mm. d woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024.12.31 Week 52 |
FORMAT_DATE('%E4Y.%m.%d Week %U', DATE '2024-12-31') -- yyyy.mm.-dd woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024.12.31 Week 52 |
FORMAT_DATE('%E4Y.%m.%e Week %U', DATE '2024-12-31') -- yyyy.mm. d woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024.12.31 Week 52 |
FORMAT_DATE('%y.%m.%d Week %U', DATE '2024-12-31') -- yy.mm.dd woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24.12.31 Week 52 |
FORMAT_DATE('%y.%m.%e Week %U', DATE '2024-12-31') -- yy.mm. d woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24.12.31 Week 52 |
FORMAT_DATE('%G.%m.%d Week %U', DATE '2024-12-31') -- Iyyy.mm.dd woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2025.12.31 Week 52 |
FORMAT_DATE('%G.%m.%e Week %U', DATE '2024-12-31') -- Iyyy.mm. d woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2025.12.31 Week 52 |
FORMAT_DATE('%g.%m.%d Week %U', DATE '2024-12-31') -- Iy.mm.dd woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 25.12.31 Week 52 |
FORMAT_DATE('%g.%m.%e Week %U', DATE '2024-12-31') -- Iy.mm. d woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 25.12.31 Week 52 |
FORMAT_DATE('%Y.%B.%d Week %U', DATE '2024-12-31') -- yyyy.month.dd woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024.December.31 Week 52 |
FORMAT_DATE('%Y.%B.%e Week %U', DATE '2024-12-31') -- yyyy.month. d woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024.December.31 Week 52 |
FORMAT_DATE('%Y.%b.%d Week %U', DATE '2024-12-31') -- yyyy.mon.dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024.Dec.31 Week 52 |
FORMAT_DATE('%Y.%b.%e Week %U', DATE '2024-12-31') -- yyyy.mon. d woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024.Dec.31 Week 52 |
FORMAT_DATE('%Y.%h.%d Week %U', DATE '2024-12-31') -- yyyy.mon.dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024.Dec.31 Week 52 |
FORMAT_DATE('%Y.%h.%e Week %U', DATE '2024-12-31') -- yyyy.mon.-dd woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024.Dec.31 Week 52 |
FORMAT_DATE('%E4Y.%B.%d Week %U', DATE '2024-12-31') -- yyyy.month.dd woy Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024.December.31 Week 52 |
FORMAT_DATE('%E4Y.%B.%e Week %U', DATE '2024-12-31') -- yyyy.month. d woy Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024.December.31 Week 52 |
FORMAT_DATE('%E4Y.%b.%d Week %U', DATE '2024-12-31') -- yyyy.mon.dd woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024.Dec.31 Week 52 |
FORMAT_DATE('%E4Y.%b.%e Week %U', DATE '2024-12-31') -- yyyy.mon. d woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024.Dec.31 Week 52 |
FORMAT_DATE('%E4Y.%h.%d Week %U', DATE '2024-12-31') -- yyyy.mon.dd woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024.Dec.31 Week 52 |
FORMAT_DATE('%E4Y.%h.%e Week %U', DATE '2024-12-31') -- yyyy.mon. d woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024.Dec.31 Week 52 |
FORMAT_DATE('%y.%B.%d Week %U', DATE '2024-12-31') -- yy.month.dd woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24.December.31 Week 52 |
FORMAT_DATE('%y.%B.%e Week %U', DATE '2024-12-31') -- yy.month. d woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24.December.31 Week 52 |
FORMAT_DATE('%y.%b.%d Week %U', DATE '2024-12-31') -- yy.mon.dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24.Dec.31 Week 52 |
FORMAT_DATE('%y.%b.%e Week %U', DATE '2024-12-31') -- yy.mon. d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24.Dec.31 Week 52 |
FORMAT_DATE('%y.%h.%d Week %U', DATE '2024-12-31') -- yy.mon.dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24.Dec.31 Week 52 |
FORMAT_DATE('%y.%h.%e Week %U', DATE '2024-12-31') -- yy.mon. d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24.Dec.31 Week 52 |
FORMAT_DATE('%G.%B.%d Week %U', DATE '2024-12-31') -- Iy.month.dd woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2025.December.31 Week 52 |
FORMAT_DATE('%G.%B.%e Week %U', DATE '2024-12-31') -- Iy.month. d woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2025.December.31 Week 52 |
FORMAT_DATE('%G.%b.%d Week %U', DATE '2024-12-31') -- Iy.mon.dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2025.Dec.31 Week 52 |
FORMAT_DATE('%G.%b.%e Week %U', DATE '2024-12-31') -- Iy.mon. d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2025.Dec.31 Week 52 |
FORMAT_DATE('%G.%h.%d Week %U', DATE '2024-12-31') -- Iy.mon.dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2025.Dec.31 Week 52 |
FORMAT_DATE('%G.%h.%e Week %U', DATE '2024-12-31') -- Iy.mon. d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2025.Dec.31 Week 52 |
FORMAT_DATE('%g.%B.%d Week %U', DATE '2024-12-31') -- Iyyy.month.dd woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 25.December.31 Week 52 |
FORMAT_DATE('%g.%B.%e Week %U', DATE '2024-12-31') -- Iyyy.month. d woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 25.December.31 Week 52 |
FORMAT_DATE('%g.%b.%d Week %U', DATE '2024-12-31') -- Iyyy.mon.dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 25.Dec.31 Week 52 |
FORMAT_DATE('%g.%b.%e Week %U', DATE '2024-12-31') -- Iyyy.mon. d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 25.Dec.31 Week 52 |
FORMAT_DATE('%g.%h.%d Week %U', DATE '2024-12-31') -- Iyyy.mon.-dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 25.Dec.31 Week 52 |
FORMAT_DATE('%g.%h.%e Week %U', DATE '2024-12-31') -- Iyyy.mon. d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 25.Dec.31 Week 52 |
FORMAT_DATE('%Y %m %d Week %U', DATE '2024-12-31') -- yyyy mm dd woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024 12 31 Week 52 |
FORMAT_DATE('%Y %m %e Week %U', DATE '2024-12-31') -- yyyy mm d woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024 12 31 Week 52 |
FORMAT_DATE('%E4Y %m %d Week %U', DATE '2024-12-31') -- yyyy mm dd woy Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024 12 31 Week 52 |
FORMAT_DATE('%E4Y %m %e Week %U', DATE '2024-12-31') -- yyyy mm d woy Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024 12 31 Week 52 |
FORMAT_DATE('%y %m %d Week %U', DATE '2024-12-31') -- yy mm dd woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24 12 31 Week 52 |
FORMAT_DATE('%y %m %e Week %U', DATE '2024-12-31') -- yy mm d woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24 12 31 Week 52 |
FORMAT_DATE('%G %m %d Week %U', DATE '2024-12-31') -- Iyyy mm dd woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2025 12 31 Week 52 |
FORMAT_DATE('%G %m %e Week %U', DATE '2024-12-31') -- Iyyy mm d woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2025 12 31 Week 52 |
FORMAT_DATE('%g %m %d Week %U', DATE '2024-12-31') -- Iy mm dd woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 25 12 31 Week 52 |
FORMAT_DATE('%g %m %e Week %U', DATE '2024-12-31') -- Iy mm d woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 25 12 31 Week 52 |
FORMAT_DATE('%Y %B %d Week %U', DATE '2024-12-31') -- yyyy month dd woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024 December 31 Week 52 |
FORMAT_DATE('%Y %B %e Week %U', DATE '2024-12-31') -- yyyy month d woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024 December 31 Week 52 |
FORMAT_DATE('%Y %b %d Week %U', DATE '2024-12-31') -- yyyy mon dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024 Dec 31 Week 52 |
FORMAT_DATE('%Y %b %e Week %U', DATE '2024-12-31') -- yyyy mon d woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024 Dec 31 Week 52 |
FORMAT_DATE('%Y %h %d Week %U', DATE '2024-12-31') -- yyyy mon dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024 Dec 31 Week 52 |
FORMAT_DATE('%Y %h %e Week %U', DATE '2024-12-31') -- yyyy mon -dd woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024 Dec 31 Week 52 |
FORMAT_DATE('%E4Y %B %d Week %U', DATE '2024-12-31') -- yyyy month dd woy Four-character years (0001 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024 December 31 Week 52 |
FORMAT_DATE('%E4Y %B %e Week %U', DATE '2024-12-31') -- yyyy month d woy Four-character years (0001 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024 December 31 Week 52 |
FORMAT_DATE('%E4Y %b %d Week %U', DATE '2024-12-31') -- yyyy mon dd woy Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024 Dec 31 Week 52 |
FORMAT_DATE('%E4Y %b %e Week %U', DATE '2024-12-31') -- yyyy mon d woy Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024 Dec 31 Week 52 |
FORMAT_DATE('%E4Y %h %d Week %U', DATE '2024-12-31') -- yyyy mon dd woy Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024 Dec 31 Week 52 |
FORMAT_DATE('%E4Y %h %e Week %U', DATE '2024-12-31') -- yyyy mon d woy Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024 Dec 31 Week 52 |
FORMAT_DATE('%y %B %d Week %U', DATE '2024-12-31') -- yy month dd woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24 December 31 Week 52 |
FORMAT_DATE('%y %B %e Week %U', DATE '2024-12-31') -- yy month d woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24 December 31 Week 52 |
FORMAT_DATE('%y %b %d Week %U', DATE '2024-12-31') -- yy mon dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24 Dec 31 Week 52 |
FORMAT_DATE('%y %b %e Week %U', DATE '2024-12-31') -- yy mon d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24 Dec 31 Week 52 |
FORMAT_DATE('%y %h %d Week %U', DATE '2024-12-31') -- yy mon dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24 Dec 31 Week 52 |
FORMAT_DATE('%y %h %e Week %U', DATE '2024-12-31') -- yy mon d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24 Dec 31 Week 52 |
FORMAT_DATE('%G %B %d Week %U', DATE '2024-12-31') -- Iy month dd woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2025 December 31 Week 52 |
FORMAT_DATE('%G %B %e Week %U', DATE '2024-12-31') -- Iy month d woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2025 December 31 Week 52 |
FORMAT_DATE('%G %b %d Week %U', DATE '2024-12-31') -- Iy mon dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2025 Dec 31 Week 52 |
FORMAT_DATE('%G %b %e Week %U', DATE '2024-12-31') -- Iy mon d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2025 Dec 31 Week 52 |
FORMAT_DATE('%G %h %d Week %U', DATE '2024-12-31') -- Iy mon dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2025 Dec 31 Week 52 |
FORMAT_DATE('%G %h %e Week %U', DATE '2024-12-31') -- Iy mon d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2025 Dec 31 Week 52 |
FORMAT_DATE('%g %B %d Week %U', DATE '2024-12-31') -- Iyyy month dd woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 25 December 31 Week 52 |
FORMAT_DATE('%g %B %e Week %U', DATE '2024-12-31') -- Iyyy month d woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 25 December 31 Week 52 |
FORMAT_DATE('%g %b %d Week %U', DATE '2024-12-31') -- Iyyy mon dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 25 Dec 31 Week 52 |
FORMAT_DATE('%g %b %e Week %U', DATE '2024-12-31') -- Iyyy mon d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 25 Dec 31 Week 52 |
FORMAT_DATE('%g %h %d Week %U', DATE '2024-12-31') -- Iyyy mon dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 25 Dec 31 Week 52 |
FORMAT_DATE('%g %h %e Week %U', DATE '2024-12-31') -- Iyyy mon d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 25 Dec 31 Week 52 |
FORMAT_DATE('%Y%m%d Week %U', DATE '2024-12-31') -- yyyymmdd woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 20241231 Week 52 |
FORMAT_DATE('%Y%m%e Week %U', DATE '2024-12-31') -- yyyymm d woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 20241231 Week 52 |
FORMAT_DATE('%E4Y%m%d Week %U', DATE '2024-12-31') -- yyyymmdd woy Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 20241231 Week 52 |
FORMAT_DATE('%E4Y%m%e Week %U', DATE '2024-12-31') -- yyyymm d woy Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 20241231 Week 52 |
FORMAT_DATE('%y%m%d Week %U', DATE '2024-12-31') -- yymmdd woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 241231 Week 52 |
FORMAT_DATE('%y%m%e Week %U', DATE '2024-12-31') -- yymm d woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 241231 Week 52 |
FORMAT_DATE('%G%m%d Week %U', DATE '2024-12-31') -- Iyyymmdd woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 20251231 Week 52 |
FORMAT_DATE('%G%m%e Week %U', DATE '2024-12-31') -- Iyyymm d woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 20251231 Week 52 |
FORMAT_DATE('%g%m%d Week %U', DATE '2024-12-31') -- Iymmdd woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 251231 Week 52 |
FORMAT_DATE('%g%m%e Week %U', DATE '2024-12-31') -- Iymm d woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 251231 Week 52 |
FORMAT_DATE('%Y%B%d Week %U', DATE '2024-12-31') -- yyyymonthdd woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024December31 Week 52 |
FORMAT_DATE('%Y%B%e Week %U', DATE '2024-12-31') -- yyyymonth d woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024December31 Week 52 |
FORMAT_DATE('%Y%b%d Week %U', DATE '2024-12-31') -- yyyymondd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024Dec31 Week 52 |
FORMAT_DATE('%Y%b%e Week %U', DATE '2024-12-31') -- yyyymon d woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024Dec31 Week 52 |
FORMAT_DATE('%Y%h%d Week %U', DATE '2024-12-31') -- yyyymondd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024Dec31 Week 52 |
FORMAT_DATE('%Y%h%e Week %U', DATE '2024-12-31') -- yyyymon-dd woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024Dec31 Week 52 |
FORMAT_DATE('%E4Y%B%d Week %U', DATE '2024-12-31') -- yyyymonthdd woy Four-character years (0001 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024December31 Week 52 |
FORMAT_DATE('%E4Y%B%e Week %U', DATE '2024-12-31') -- yyyymonth d woy Four-character years (0001 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024December31 Week 52 |
FORMAT_DATE('%E4Y%b%d Week %U', DATE '2024-12-31') -- yyyymondd woy Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024Dec31 Week 52 |
FORMAT_DATE('%E4Y%b%e Week %U', DATE '2024-12-31') -- yyyymon d woy Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024Dec31 Week 52 |
FORMAT_DATE('%E4Y%h%d Week %U', DATE '2024-12-31') -- yyyymondd woy Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2024Dec31 Week 52 |
FORMAT_DATE('%E4Y%h%e Week %U', DATE '2024-12-31') -- yyyymon d woy Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2024Dec31 Week 52 |
FORMAT_DATE('%y%B%d Week %U', DATE '2024-12-31') -- yymonthdd woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24December31 Week 52 |
FORMAT_DATE('%y%B%e Week %U', DATE '2024-12-31') -- yymonth d woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24December31 Week 52 |
FORMAT_DATE('%y%b%d Week %U', DATE '2024-12-31') -- yymondd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24Dec31 Week 52 |
FORMAT_DATE('%y%b%e Week %U', DATE '2024-12-31') -- yymon d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24Dec31 Week 52 |
FORMAT_DATE('%y%h%d Week %U', DATE '2024-12-31') -- yymondd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 24Dec31 Week 52 |
FORMAT_DATE('%y%h%e Week %U', DATE '2024-12-31') -- yymon d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 24Dec31 Week 52 |
FORMAT_DATE('%G%B%d Week %U', DATE '2024-12-31') -- Iymonthdd woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2025December31 Week 52 |
FORMAT_DATE('%G%B%e Week %U', DATE '2024-12-31') -- Iymonth d woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2025December31 Week 52 |
FORMAT_DATE('%G%b%d Week %U', DATE '2024-12-31') -- Iymondd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2025Dec31 Week 52 |
FORMAT_DATE('%G%b%e Week %U', DATE '2024-12-31') -- Iymon d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2025Dec31 Week 52 |
FORMAT_DATE('%G%h%d Week %U', DATE '2024-12-31') -- Iymondd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 2025Dec31 Week 52 |
FORMAT_DATE('%G%h%e Week %U', DATE '2024-12-31') -- Iymon d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 2025Dec31 Week 52 |
FORMAT_DATE('%g%B%d Week %U', DATE '2024-12-31') -- Iyyymonthdd woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 25December31 Week 52 |
FORMAT_DATE('%g%B%e Week %U', DATE '2024-12-31') -- Iyyymonth d woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 25December31 Week 52 |
FORMAT_DATE('%g%b%d Week %U', DATE '2024-12-31') -- Iyyymondd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 25Dec31 Week 52 |
FORMAT_DATE('%g%b%e Week %U', DATE '2024-12-31') -- Iyyymon d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 25Dec31 Week 52 |
FORMAT_DATE('%g%h%d Week %U', DATE '2024-12-31') -- Iyyymon-dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Sunday as the first day of the week) | 25Dec31 Week 52 |
FORMAT_DATE('%g%h%e Week %U', DATE '2024-12-31') -- Iyyymon d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Sunday as the first day of the week) | 25Dec31 Week 52 |
FORMAT_DATE('%Y-%m-%d Week %W', DATE '2024-12-31') -- yyyy-mm-dd woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024-12-31 Week 53 |
FORMAT_DATE('%Y-%m-%e Week %W', DATE '2024-12-31') -- yyyy-mm- d woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024-12-31 Week 53 |
FORMAT_DATE('%E4Y-%m-%d Week %W', DATE '2024-12-31') -- yyyy-mm-dd woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024-12-31 Week 53 |
FORMAT_DATE('%E4Y-%m-%e Week %W', DATE '2024-12-31') -- yyyy-mm- d woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024-12-31 Week 53 |
FORMAT_DATE('%y-%m-%d Week %W', DATE '2024-12-31') -- yy-mm-dd woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24-12-31 Week 53 |
FORMAT_DATE('%y-%m-%e Week %W', DATE '2024-12-31') -- yy-mm- d woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24-12-31 Week 53 |
FORMAT_DATE('%G-%m-%d Week %W', DATE '2024-12-31') -- Iyyy-mm-dd woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2025-12-31 Week 53 |
FORMAT_DATE('%G-%m-%e Week %W', DATE '2024-12-31') -- Iyyy-mm- d woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2025-12-31 Week 53 |
FORMAT_DATE('%g-%m-%d Week %W', DATE '2024-12-31') -- Iy-mm-dd woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 25-12-31 Week 53 |
FORMAT_DATE('%g-%m-%e Week %W', DATE '2024-12-31') -- Iy-mm- d woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 25-12-31 Week 53 |
FORMAT_DATE('%Y-%B-%d Week %W', DATE '2024-12-31') -- yyyy-month-dd woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024-December-31 Week 53 |
FORMAT_DATE('%Y-%B-%e Week %W', DATE '2024-12-31') -- yyyy-month- d woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024-December-31 Week 53 |
FORMAT_DATE('%Y-%b-%d Week %W', DATE '2024-12-31') -- yyyy-mon-dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024-Dec-31 Week 53 |
FORMAT_DATE('%Y-%b-%e Week %W', DATE '2024-12-31') -- yyyy-mon- d woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024-Dec-31 Week 53 |
FORMAT_DATE('%Y-%h-%d Week %W', DATE '2024-12-31') -- yyyy-mon-dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024-Dec-31 Week 53 |
FORMAT_DATE('%Y-%h-%e Week %W', DATE '2024-12-31') -- yyyy-mon-dd woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024-Dec-31 Week 53 |
FORMAT_DATE('%E4Y-%B-%d Week %W', DATE '2024-12-31') -- yyyy-month-dd woy Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024-December-31 Week 53 |
FORMAT_DATE('%E4Y-%B-%e Week %W', DATE '2024-12-31') -- yyyy-month- d woy Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024-December-31 Week 53 |
FORMAT_DATE('%E4Y-%b-%d Week %W', DATE '2024-12-31') -- yyyy-mon-dd woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024-Dec-31 Week 53 |
FORMAT_DATE('%E4Y-%b-%e Week %W', DATE '2024-12-31') -- yyyy-mon- d woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024-Dec-31 Week 53 |
FORMAT_DATE('%E4Y-%h-%d Week %W', DATE '2024-12-31') -- yyyy-mon-dd woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024-Dec-31 Week 53 |
FORMAT_DATE('%E4Y-%h-%e Week %W', DATE '2024-12-31') -- yyyy-mon- d woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024-Dec-31 Week 53 |
FORMAT_DATE('%y-%B-%d Week %W', DATE '2024-12-31') -- yy-month-dd woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24-December-31 Week 53 |
FORMAT_DATE('%y-%B-%e Week %W', DATE '2024-12-31') -- yy-month- d woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24-December-31 Week 53 |
FORMAT_DATE('%y-%b-%d Week %W', DATE '2024-12-31') -- yy-mon-dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24-Dec-31 Week 53 |
FORMAT_DATE('%y-%b-%e Week %W', DATE '2024-12-31') -- yy-mon- d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24-Dec-31 Week 53 |
FORMAT_DATE('%y-%h-%d Week %W', DATE '2024-12-31') -- yy-mon-dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24-Dec-31 Week 53 |
FORMAT_DATE('%y-%h-%e Week %W', DATE '2024-12-31') -- yy-mon- d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24-Dec-31 Week 53 |
FORMAT_DATE('%G-%B-%d Week %W', DATE '2024-12-31') -- Iy-month-dd woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2025-December-31 Week 53 |
FORMAT_DATE('%G-%B-%e Week %W', DATE '2024-12-31') -- Iy-month- d woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2025-December-31 Week 53 |
FORMAT_DATE('%G-%b-%d Week %W', DATE '2024-12-31') -- Iy-mon-dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2025-Dec-31 Week 53 |
FORMAT_DATE('%G-%b-%e Week %W', DATE '2024-12-31') -- Iy-mon- d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2025-Dec-31 Week 53 |
FORMAT_DATE('%G-%h-%d Week %W', DATE '2024-12-31') -- Iy-mon-dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2025-Dec-31 Week 53 |
FORMAT_DATE('%G-%h-%e Week %W', DATE '2024-12-31') -- Iy-mon- d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2025-Dec-31 Week 53 |
FORMAT_DATE('%g-%B-%d Week %W', DATE '2024-12-31') -- Iyyy-month-dd woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 25-December-31 Week 53 |
FORMAT_DATE('%g-%B-%e Week %W', DATE '2024-12-31') -- Iyyy-month- d woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 25-December-31 Week 53 |
FORMAT_DATE('%g-%b-%d Week %W', DATE '2024-12-31') -- Iyyy-mon-dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 25-Dec-31 Week 53 |
FORMAT_DATE('%g-%b-%e Week %W', DATE '2024-12-31') -- Iyyy-mon- d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 25-Dec-31 Week 53 |
FORMAT_DATE('%g-%h-%d Week %W', DATE '2024-12-31') -- Iyyy-mon-dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 25-Dec-31 Week 53 |
FORMAT_DATE('%g-%h-%e Week %W', DATE '2024-12-31') -- Iyyy-mon- d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 25-Dec-31 Week 53 |
FORMAT_DATE('%Y/%m/%d Week %W', DATE '2024-12-31') -- yyyy/mm/dd woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024/12/31 Week 53 |
FORMAT_DATE('%Y/%m/%e Week %W', DATE '2024-12-31') -- yyyy/mm/ d woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024/12/31 Week 53 |
FORMAT_DATE('%E4Y/%m/%d Week %W', DATE '2024-12-31') -- yyyy/mm/-dd woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024/12/31 Week 53 |
FORMAT_DATE('%E4Y/%m/%e Week %W', DATE '2024-12-31') -- yyyy/mm/ d woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024/12/31 Week 53 |
FORMAT_DATE('%y/%m/%d Week %W', DATE '2024-12-31') -- yy/mm/dd woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24/12/31 Week 53 |
FORMAT_DATE('%y/%m/%e Week %W', DATE '2024-12-31') -- yy/mm/ d woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24/12/31 Week 53 |
FORMAT_DATE('%G/%m/%d Week %W', DATE '2024-12-31') -- Iyyy/mm/dd woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2025/12/31 Week 53 |
FORMAT_DATE('%G/%m/%e Week %W', DATE '2024-12-31') -- Iyyy/mm/ d woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2025/12/31 Week 53 |
FORMAT_DATE('%g/%m/%d Week %W', DATE '2024-12-31') -- Iy/mm/dd woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 25/12/31 Week 53 |
FORMAT_DATE('%g/%m/%e Week %W', DATE '2024-12-31') -- Iy/mm/ d woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 25/12/31 Week 53 |
FORMAT_DATE('%Y/%B/%d Week %W', DATE '2024-12-31') -- yyyy/month/dd woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024/December/31 Week 53 |
FORMAT_DATE('%Y/%B/%e Week %W', DATE '2024-12-31') -- yyyy/month/ d woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024/December/31 Week 53 |
FORMAT_DATE('%Y/%b/%d Week %W', DATE '2024-12-31') -- yyyy/mon/dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024/Dec/31 Week 53 |
FORMAT_DATE('%Y/%b/%e Week %W', DATE '2024-12-31') -- yyyy/mon/ d woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024/Dec/31 Week 53 |
FORMAT_DATE('%Y/%h/%d Week %W', DATE '2024-12-31') -- yyyy/mon/dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024/Dec/31 Week 53 |
FORMAT_DATE('%Y/%h/%e Week %W', DATE '2024-12-31') -- yyyy/mon/-dd woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024/Dec/31 Week 53 |
FORMAT_DATE('%E4Y/%B/%d Week %W', DATE '2024-12-31') -- yyyy/month/dd woy Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024/December/31 Week 53 |
FORMAT_DATE('%E4Y/%B/%e Week %W', DATE '2024-12-31') -- yyyy/month/ d woy Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024/December/31 Week 53 |
FORMAT_DATE('%E4Y/%b/%d Week %W', DATE '2024-12-31') -- yyyy/mon/dd woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024/Dec/31 Week 53 |
FORMAT_DATE('%E4Y/%b/%e Week %W', DATE '2024-12-31') -- yyyy/mon/ d woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024/Dec/31 Week 53 |
FORMAT_DATE('%E4Y/%h/%d Week %W', DATE '2024-12-31') -- yyyy/mon/dd woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024/Dec/31 Week 53 |
FORMAT_DATE('%E4Y/%h/%e Week %W', DATE '2024-12-31') -- yyyy/mon/ d woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024/Dec/31 Week 53 |
FORMAT_DATE('%y/%B/%d Week %W', DATE '2024-12-31') -- yy/month/dd woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24/December/31 Week 53 |
FORMAT_DATE('%y/%B/%e Week %W', DATE '2024-12-31') -- yy/month/ d woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24/December/31 Week 53 |
FORMAT_DATE('%y/%b/%d Week %W', DATE '2024-12-31') -- yy/mon/dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24/Dec/31 Week 53 |
FORMAT_DATE('%y/%b/%e Week %W', DATE '2024-12-31') -- yy/mon/ d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24/Dec/31 Week 53 |
FORMAT_DATE('%y/%h/%d Week %W', DATE '2024-12-31') -- yy/mon/dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24/Dec/31 Week 53 |
FORMAT_DATE('%y/%h/%e Week %W', DATE '2024-12-31') -- yy/mon/ d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24/Dec/31 Week 53 |
FORMAT_DATE('%G/%B/%d Week %W', DATE '2024-12-31') -- Iy/month/dd woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2025/December/31 Week 53 |
FORMAT_DATE('%G/%B/%e Week %W', DATE '2024-12-31') -- Iy/month/ d woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2025/December/31 Week 53 |
FORMAT_DATE('%G/%b/%d Week %W', DATE '2024-12-31') -- Iy/mon/dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2025/Dec/31 Week 53 |
FORMAT_DATE('%G/%b/%e Week %W', DATE '2024-12-31') -- Iy/mon/ d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2025/Dec/31 Week 53 |
FORMAT_DATE('%G/%h/%d Week %W', DATE '2024-12-31') -- Iy/mon/dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2025/Dec/31 Week 53 |
FORMAT_DATE('%G/%h/%e Week %W', DATE '2024-12-31') -- Iy/mon/ d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2025/Dec/31 Week 53 |
FORMAT_DATE('%g/%B/%d Week %W', DATE '2024-12-31') -- Iyyy/month/dd woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 25/December/31 Week 53 |
FORMAT_DATE('%g/%B/%e Week %W', DATE '2024-12-31') -- Iyyy/month/ d woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 25/December/31 Week 53 |
FORMAT_DATE('%g/%b/%d Week %W', DATE '2024-12-31') -- Iyyy/mon/dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 25/Dec/31 Week 53 |
FORMAT_DATE('%g/%b/%e Week %W', DATE '2024-12-31') -- Iyyy/mon/ d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 25/Dec/31 Week 53 |
FORMAT_DATE('%g/%h/%d Week %W', DATE '2024-12-31') -- Iyyy/mon/-dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 25/Dec/31 Week 53 |
FORMAT_DATE('%g/%h/%e Week %W', DATE '2024-12-31') -- Iyyy/mon/ d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 25/Dec/31 Week 53 |
FORMAT_DATE('%Y:%m:%d Week %W', DATE '2024-12-31') -- yyyy:mm:dd woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024:12:31 Week 53 |
FORMAT_DATE('%Y:%m:%e Week %W', DATE '2024-12-31') -- yyyy:mm: d woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024:12:31 Week 53 |
FORMAT_DATE('%E4Y:%m:%d Week %W', DATE '2024-12-31') -- yyyy:mm:-dd woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024:12:31 Week 53 |
FORMAT_DATE('%E4Y:%m:%e Week %W', DATE '2024-12-31') -- yyyy:mm: d woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024:12:31 Week 53 |
FORMAT_DATE('%y:%m:%d Week %W', DATE '2024-12-31') -- yy:mm:dd woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24:12:31 Week 53 |
FORMAT_DATE('%y:%m:%e Week %W', DATE '2024-12-31') -- yy:mm: d woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24:12:31 Week 53 |
FORMAT_DATE('%G:%m:%d Week %W', DATE '2024-12-31') -- Iyyy:mm:dd woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2025:12:31 Week 53 |
FORMAT_DATE('%G:%m:%e Week %W', DATE '2024-12-31') -- Iyyy:mm: d woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2025:12:31 Week 53 |
FORMAT_DATE('%g:%m:%d Week %W', DATE '2024-12-31') -- Iy:mm:dd woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 25:12:31 Week 53 |
FORMAT_DATE('%g:%m:%e Week %W', DATE '2024-12-31') -- Iy:mm: d woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 25:12:31 Week 53 |
FORMAT_DATE('%Y:%B:%d Week %W', DATE '2024-12-31') -- yyyy:month:dd woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024:December:31 Week 53 |
FORMAT_DATE('%Y:%B:%e Week %W', DATE '2024-12-31') -- yyyy:month: d woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024:December:31 Week 53 |
FORMAT_DATE('%Y:%b:%d Week %W', DATE '2024-12-31') -- yyyy:mon:dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024:Dec:31 Week 53 |
FORMAT_DATE('%Y:%b:%e Week %W', DATE '2024-12-31') -- yyyy:mon: d woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024:Dec:31 Week 53 |
FORMAT_DATE('%Y:%h:%d Week %W', DATE '2024-12-31') -- yyyy:mon:dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024:Dec:31 Week 53 |
FORMAT_DATE('%Y:%h:%e Week %W', DATE '2024-12-31') -- yyyy:mon:-dd woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024:Dec:31 Week 53 |
FORMAT_DATE('%E4Y:%B:%d Week %W', DATE '2024-12-31') -- yyyy:month:dd woy Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024:December:31 Week 53 |
FORMAT_DATE('%E4Y:%B:%e Week %W', DATE '2024-12-31') -- yyyy:month: d woy Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024:December:31 Week 53 |
FORMAT_DATE('%E4Y:%b:%d Week %W', DATE '2024-12-31') -- yyyy:mon:dd woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024:Dec:31 Week 53 |
FORMAT_DATE('%E4Y:%b:%e Week %W', DATE '2024-12-31') -- yyyy:mon: d woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024:Dec:31 Week 53 |
FORMAT_DATE('%E4Y:%h:%d Week %W', DATE '2024-12-31') -- yyyy:mon:dd woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024:Dec:31 Week 53 |
FORMAT_DATE('%E4Y:%h:%e Week %W', DATE '2024-12-31') -- yyyy:mon: d woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024:Dec:31 Week 53 |
FORMAT_DATE('%y:%B:%d Week %W', DATE '2024-12-31') -- yy:month:dd woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24:December:31 Week 53 |
FORMAT_DATE('%y:%B:%e Week %W', DATE '2024-12-31') -- yy:month: d woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24:December:31 Week 53 |
FORMAT_DATE('%y:%b:%d Week %W', DATE '2024-12-31') -- yy:mon:dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24:Dec:31 Week 53 |
FORMAT_DATE('%y:%b:%e Week %W', DATE '2024-12-31') -- yy:mon: d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24:Dec:31 Week 53 |
FORMAT_DATE('%y:%h:%d Week %W', DATE '2024-12-31') -- yy:mon:dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24:Dec:31 Week 53 |
FORMAT_DATE('%y:%h:%e Week %W', DATE '2024-12-31') -- yy:mon: d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24:Dec:31 Week 53 |
FORMAT_DATE('%G:%B:%d Week %W', DATE '2024-12-31') -- Iy:month:dd woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2025:December:31 Week 53 |
FORMAT_DATE('%G:%B:%e Week %W', DATE '2024-12-31') -- Iy:month: d woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2025:December:31 Week 53 |
FORMAT_DATE('%G:%b:%d Week %W', DATE '2024-12-31') -- Iy:mon:dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2025:Dec:31 Week 53 |
FORMAT_DATE('%G:%b:%e Week %W', DATE '2024-12-31') -- Iy:mon: d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2025:Dec:31 Week 53 |
FORMAT_DATE('%G:%h:%d Week %W', DATE '2024-12-31') -- Iy:mon:dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2025:Dec:31 Week 53 |
FORMAT_DATE('%G:%h:%e Week %W', DATE '2024-12-31') -- Iy:mon: d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2025:Dec:31 Week 53 |
FORMAT_DATE('%g:%B:%d Week %W', DATE '2024-12-31') -- Iyyy:month:dd woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 25:December:31 Week 53 |
FORMAT_DATE('%g:%B:%e Week %W', DATE '2024-12-31') -- Iyyy:month: d woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 25:December:31 Week 53 |
FORMAT_DATE('%g:%b:%d Week %W', DATE '2024-12-31') -- Iyyy:mon:dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 25:Dec:31 Week 53 |
FORMAT_DATE('%g:%b:%e Week %W', DATE '2024-12-31') -- Iyyy:mon: d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 25:Dec:31 Week 53 |
FORMAT_DATE('%g:%h:%d Week %W', DATE '2024-12-31') -- Iyyy:mon:-dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 25:Dec:31 Week 53 |
FORMAT_DATE('%g:%h:%e Week %W', DATE '2024-12-31') -- Iyyy:mon: d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 25:Dec:31 Week 53 |
FORMAT_DATE('%Y.%m.%d Week %W', DATE '2024-12-31') -- yyyy.mm.dd woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024.12.31 Week 53 |
FORMAT_DATE('%Y.%m.%e Week %W', DATE '2024-12-31') -- yyyy.mm. d woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024.12.31 Week 53 |
FORMAT_DATE('%E4Y.%m.%d Week %W', DATE '2024-12-31') -- yyyy.mm.-dd woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024.12.31 Week 53 |
FORMAT_DATE('%E4Y.%m.%e Week %W', DATE '2024-12-31') -- yyyy.mm. d woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024.12.31 Week 53 |
FORMAT_DATE('%y.%m.%d Week %W', DATE '2024-12-31') -- yy.mm.dd woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24.12.31 Week 53 |
FORMAT_DATE('%y.%m.%e Week %W', DATE '2024-12-31') -- yy.mm. d woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24.12.31 Week 53 |
FORMAT_DATE('%G.%m.%d Week %W', DATE '2024-12-31') -- Iyyy.mm.dd woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2025.12.31 Week 53 |
FORMAT_DATE('%G.%m.%e Week %W', DATE '2024-12-31') -- Iyyy.mm. d woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2025.12.31 Week 53 |
FORMAT_DATE('%g.%m.%d Week %W', DATE '2024-12-31') -- Iy.mm.dd woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 25.12.31 Week 53 |
FORMAT_DATE('%g.%m.%e Week %W', DATE '2024-12-31') -- Iy.mm. d woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 25.12.31 Week 53 |
FORMAT_DATE('%Y.%B.%d Week %W', DATE '2024-12-31') -- yyyy.month.dd woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024.December.31 Week 53 |
FORMAT_DATE('%Y.%B.%e Week %W', DATE '2024-12-31') -- yyyy.month. d woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024.December.31 Week 53 |
FORMAT_DATE('%Y.%b.%d Week %W', DATE '2024-12-31') -- yyyy.mon.dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024.Dec.31 Week 53 |
FORMAT_DATE('%Y.%b.%e Week %W', DATE '2024-12-31') -- yyyy.mon. d woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024.Dec.31 Week 53 |
FORMAT_DATE('%Y.%h.%d Week %W', DATE '2024-12-31') -- yyyy.mon.dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024.Dec.31 Week 53 |
FORMAT_DATE('%Y.%h.%e Week %W', DATE '2024-12-31') -- yyyy.mon.-dd woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024.Dec.31 Week 53 |
FORMAT_DATE('%E4Y.%B.%d Week %W', DATE '2024-12-31') -- yyyy.month.dd woy Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024.December.31 Week 53 |
FORMAT_DATE('%E4Y.%B.%e Week %W', DATE '2024-12-31') -- yyyy.month. d woy Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024.December.31 Week 53 |
FORMAT_DATE('%E4Y.%b.%d Week %W', DATE '2024-12-31') -- yyyy.mon.dd woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024.Dec.31 Week 53 |
FORMAT_DATE('%E4Y.%b.%e Week %W', DATE '2024-12-31') -- yyyy.mon. d woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024.Dec.31 Week 53 |
FORMAT_DATE('%E4Y.%h.%d Week %W', DATE '2024-12-31') -- yyyy.mon.dd woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024.Dec.31 Week 53 |
FORMAT_DATE('%E4Y.%h.%e Week %W', DATE '2024-12-31') -- yyyy.mon. d woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024.Dec.31 Week 53 |
FORMAT_DATE('%y.%B.%d Week %W', DATE '2024-12-31') -- yy.month.dd woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24.December.31 Week 53 |
FORMAT_DATE('%y.%B.%e Week %W', DATE '2024-12-31') -- yy.month. d woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24.December.31 Week 53 |
FORMAT_DATE('%y.%b.%d Week %W', DATE '2024-12-31') -- yy.mon.dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24.Dec.31 Week 53 |
FORMAT_DATE('%y.%b.%e Week %W', DATE '2024-12-31') -- yy.mon. d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24.Dec.31 Week 53 |
FORMAT_DATE('%y.%h.%d Week %W', DATE '2024-12-31') -- yy.mon.dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24.Dec.31 Week 53 |
FORMAT_DATE('%y.%h.%e Week %W', DATE '2024-12-31') -- yy.mon. d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24.Dec.31 Week 53 |
FORMAT_DATE('%G.%B.%d Week %W', DATE '2024-12-31') -- Iy.month.dd woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2025.December.31 Week 53 |
FORMAT_DATE('%G.%B.%e Week %W', DATE '2024-12-31') -- Iy.month. d woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2025.December.31 Week 53 |
FORMAT_DATE('%G.%b.%d Week %W', DATE '2024-12-31') -- Iy.mon.dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2025.Dec.31 Week 53 |
FORMAT_DATE('%G.%b.%e Week %W', DATE '2024-12-31') -- Iy.mon. d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2025.Dec.31 Week 53 |
FORMAT_DATE('%G.%h.%d Week %W', DATE '2024-12-31') -- Iy.mon.dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2025.Dec.31 Week 53 |
FORMAT_DATE('%G.%h.%e Week %W', DATE '2024-12-31') -- Iy.mon. d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2025.Dec.31 Week 53 |
FORMAT_DATE('%g.%B.%d Week %W', DATE '2024-12-31') -- Iyyy.month.dd woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 25.December.31 Week 53 |
FORMAT_DATE('%g.%B.%e Week %W', DATE '2024-12-31') -- Iyyy.month. d woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 25.December.31 Week 53 |
FORMAT_DATE('%g.%b.%d Week %W', DATE '2024-12-31') -- Iyyy.mon.dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 25.Dec.31 Week 53 |
FORMAT_DATE('%g.%b.%e Week %W', DATE '2024-12-31') -- Iyyy.mon. d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 25.Dec.31 Week 53 |
FORMAT_DATE('%g.%h.%d Week %W', DATE '2024-12-31') -- Iyyy.mon.-dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 25.Dec.31 Week 53 |
FORMAT_DATE('%g.%h.%e Week %W', DATE '2024-12-31') -- Iyyy.mon. d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 25.Dec.31 Week 53 |
FORMAT_DATE('%Y %m %d Week %W', DATE '2024-12-31') -- yyyy mm dd woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024 12 31 Week 53 |
FORMAT_DATE('%Y %m %e Week %W', DATE '2024-12-31') -- yyyy mm d woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024 12 31 Week 53 |
FORMAT_DATE('%E4Y %m %d Week %W', DATE '2024-12-31') -- yyyy mm dd woy Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024 12 31 Week 53 |
FORMAT_DATE('%E4Y %m %e Week %W', DATE '2024-12-31') -- yyyy mm d woy Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024 12 31 Week 53 |
FORMAT_DATE('%y %m %d Week %W', DATE '2024-12-31') -- yy mm dd woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24 12 31 Week 53 |
FORMAT_DATE('%y %m %e Week %W', DATE '2024-12-31') -- yy mm d woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24 12 31 Week 53 |
FORMAT_DATE('%G %m %d Week %W', DATE '2024-12-31') -- Iyyy mm dd woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2025 12 31 Week 53 |
FORMAT_DATE('%G %m %e Week %W', DATE '2024-12-31') -- Iyyy mm d woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2025 12 31 Week 53 |
FORMAT_DATE('%g %m %d Week %W', DATE '2024-12-31') -- Iy mm dd woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 25 12 31 Week 53 |
FORMAT_DATE('%g %m %e Week %W', DATE '2024-12-31') -- Iy mm d woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 25 12 31 Week 53 |
FORMAT_DATE('%Y %B %d Week %W', DATE '2024-12-31') -- yyyy month dd woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024 December 31 Week 53 |
FORMAT_DATE('%Y %B %e Week %W', DATE '2024-12-31') -- yyyy month d woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024 December 31 Week 53 |
FORMAT_DATE('%Y %b %d Week %W', DATE '2024-12-31') -- yyyy mon dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024 Dec 31 Week 53 |
FORMAT_DATE('%Y %b %e Week %W', DATE '2024-12-31') -- yyyy mon d woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024 Dec 31 Week 53 |
FORMAT_DATE('%Y %h %d Week %W', DATE '2024-12-31') -- yyyy mon dd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024 Dec 31 Week 53 |
FORMAT_DATE('%Y %h %e Week %W', DATE '2024-12-31') -- yyyy mon -dd woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024 Dec 31 Week 53 |
FORMAT_DATE('%E4Y %B %d Week %W', DATE '2024-12-31') -- yyyy month dd woy Four-character years (0001 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024 December 31 Week 53 |
FORMAT_DATE('%E4Y %B %e Week %W', DATE '2024-12-31') -- yyyy month d woy Four-character years (0001 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024 December 31 Week 53 |
FORMAT_DATE('%E4Y %b %d Week %W', DATE '2024-12-31') -- yyyy mon dd woy Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024 Dec 31 Week 53 |
FORMAT_DATE('%E4Y %b %e Week %W', DATE '2024-12-31') -- yyyy mon d woy Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024 Dec 31 Week 53 |
FORMAT_DATE('%E4Y %h %d Week %W', DATE '2024-12-31') -- yyyy mon dd woy Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024 Dec 31 Week 53 |
FORMAT_DATE('%E4Y %h %e Week %W', DATE '2024-12-31') -- yyyy mon d woy Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024 Dec 31 Week 53 |
FORMAT_DATE('%y %B %d Week %W', DATE '2024-12-31') -- yy month dd woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24 December 31 Week 53 |
FORMAT_DATE('%y %B %e Week %W', DATE '2024-12-31') -- yy month d woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24 December 31 Week 53 |
FORMAT_DATE('%y %b %d Week %W', DATE '2024-12-31') -- yy mon dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24 Dec 31 Week 53 |
FORMAT_DATE('%y %b %e Week %W', DATE '2024-12-31') -- yy mon d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24 Dec 31 Week 53 |
FORMAT_DATE('%y %h %d Week %W', DATE '2024-12-31') -- yy mon dd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24 Dec 31 Week 53 |
FORMAT_DATE('%y %h %e Week %W', DATE '2024-12-31') -- yy mon d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24 Dec 31 Week 53 |
FORMAT_DATE('%G %B %d Week %W', DATE '2024-12-31') -- Iy month dd woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2025 December 31 Week 53 |
FORMAT_DATE('%G %B %e Week %W', DATE '2024-12-31') -- Iy month d woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2025 December 31 Week 53 |
FORMAT_DATE('%G %b %d Week %W', DATE '2024-12-31') -- Iy mon dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2025 Dec 31 Week 53 |
FORMAT_DATE('%G %b %e Week %W', DATE '2024-12-31') -- Iy mon d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2025 Dec 31 Week 53 |
FORMAT_DATE('%G %h %d Week %W', DATE '2024-12-31') -- Iy mon dd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2025 Dec 31 Week 53 |
FORMAT_DATE('%G %h %e Week %W', DATE '2024-12-31') -- Iy mon d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2025 Dec 31 Week 53 |
FORMAT_DATE('%g %B %d Week %W', DATE '2024-12-31') -- Iyyy month dd woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 25 December 31 Week 53 |
FORMAT_DATE('%g %B %e Week %W', DATE '2024-12-31') -- Iyyy month d woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 25 December 31 Week 53 |
FORMAT_DATE('%g %b %d Week %W', DATE '2024-12-31') -- Iyyy mon dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 25 Dec 31 Week 53 |
FORMAT_DATE('%g %b %e Week %W', DATE '2024-12-31') -- Iyyy mon d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 25 Dec 31 Week 53 |
FORMAT_DATE('%g %h %d Week %W', DATE '2024-12-31') -- Iyyy mon dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 25 Dec 31 Week 53 |
FORMAT_DATE('%g %h %e Week %W', DATE '2024-12-31') -- Iyyy mon d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 25 Dec 31 Week 53 |
FORMAT_DATE('%Y%m%d Week %W', DATE '2024-12-31') -- yyyymmdd woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 20241231 Week 53 |
FORMAT_DATE('%Y%m%e Week %W', DATE '2024-12-31') -- yyyymm d woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 20241231 Week 53 |
FORMAT_DATE('%E4Y%m%d Week %W', DATE '2024-12-31') -- yyyymmdd woy Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 20241231 Week 53 |
FORMAT_DATE('%E4Y%m%e Week %W', DATE '2024-12-31') -- yyyymm d woy Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 20241231 Week 53 |
FORMAT_DATE('%y%m%d Week %W', DATE '2024-12-31') -- yymmdd woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 241231 Week 53 |
FORMAT_DATE('%y%m%e Week %W', DATE '2024-12-31') -- yymm d woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 241231 Week 53 |
FORMAT_DATE('%G%m%d Week %W', DATE '2024-12-31') -- Iyyymmdd woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 20251231 Week 53 |
FORMAT_DATE('%G%m%e Week %W', DATE '2024-12-31') -- Iyyymm d woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 20251231 Week 53 |
FORMAT_DATE('%g%m%d Week %W', DATE '2024-12-31') -- Iymmdd woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 251231 Week 53 |
FORMAT_DATE('%g%m%e Week %W', DATE '2024-12-31') -- Iymm d woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 251231 Week 53 |
FORMAT_DATE('%Y%B%d Week %W', DATE '2024-12-31') -- yyyymonthdd woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024December31 Week 53 |
FORMAT_DATE('%Y%B%e Week %W', DATE '2024-12-31') -- yyyymonth d woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024December31 Week 53 |
FORMAT_DATE('%Y%b%d Week %W', DATE '2024-12-31') -- yyyymondd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024Dec31 Week 53 |
FORMAT_DATE('%Y%b%e Week %W', DATE '2024-12-31') -- yyyymon d woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024Dec31 Week 53 |
FORMAT_DATE('%Y%h%d Week %W', DATE '2024-12-31') -- yyyymondd woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024Dec31 Week 53 |
FORMAT_DATE('%Y%h%e Week %W', DATE '2024-12-31') -- yyyymon-dd woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024Dec31 Week 53 |
FORMAT_DATE('%E4Y%B%d Week %W', DATE '2024-12-31') -- yyyymonthdd woy Four-character years (0001 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024December31 Week 53 |
FORMAT_DATE('%E4Y%B%e Week %W', DATE '2024-12-31') -- yyyymonth d woy Four-character years (0001 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024December31 Week 53 |
FORMAT_DATE('%E4Y%b%d Week %W', DATE '2024-12-31') -- yyyymondd woy Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024Dec31 Week 53 |
FORMAT_DATE('%E4Y%b%e Week %W', DATE '2024-12-31') -- yyyymon d woy Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024Dec31 Week 53 |
FORMAT_DATE('%E4Y%h%d Week %W', DATE '2024-12-31') -- yyyymondd woy Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2024Dec31 Week 53 |
FORMAT_DATE('%E4Y%h%e Week %W', DATE '2024-12-31') -- yyyymon d woy Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2024Dec31 Week 53 |
FORMAT_DATE('%y%B%d Week %W', DATE '2024-12-31') -- yymonthdd woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24December31 Week 53 |
FORMAT_DATE('%y%B%e Week %W', DATE '2024-12-31') -- yymonth d woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24December31 Week 53 |
FORMAT_DATE('%y%b%d Week %W', DATE '2024-12-31') -- yymondd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24Dec31 Week 53 |
FORMAT_DATE('%y%b%e Week %W', DATE '2024-12-31') -- yymon d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24Dec31 Week 53 |
FORMAT_DATE('%y%h%d Week %W', DATE '2024-12-31') -- yymondd woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 24Dec31 Week 53 |
FORMAT_DATE('%y%h%e Week %W', DATE '2024-12-31') -- yymon d woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 24Dec31 Week 53 |
FORMAT_DATE('%G%B%d Week %W', DATE '2024-12-31') -- Iymonthdd woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2025December31 Week 53 |
FORMAT_DATE('%G%B%e Week %W', DATE '2024-12-31') -- Iymonth d woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2025December31 Week 53 |
FORMAT_DATE('%G%b%d Week %W', DATE '2024-12-31') -- Iymondd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2025Dec31 Week 53 |
FORMAT_DATE('%G%b%e Week %W', DATE '2024-12-31') -- Iymon d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2025Dec31 Week 53 |
FORMAT_DATE('%G%h%d Week %W', DATE '2024-12-31') -- Iymondd woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 2025Dec31 Week 53 |
FORMAT_DATE('%G%h%e Week %W', DATE '2024-12-31') -- Iymon d woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 2025Dec31 Week 53 |
FORMAT_DATE('%g%B%d Week %W', DATE '2024-12-31') -- Iyyymonthdd woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 25December31 Week 53 |
FORMAT_DATE('%g%B%e Week %W', DATE '2024-12-31') -- Iyyymonth d woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 25December31 Week 53 |
FORMAT_DATE('%g%b%d Week %W', DATE '2024-12-31') -- Iyyymondd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 25Dec31 Week 53 |
FORMAT_DATE('%g%b%e Week %W', DATE '2024-12-31') -- Iyyymon d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 25Dec31 Week 53 |
FORMAT_DATE('%g%h%d Week %W', DATE '2024-12-31') -- Iyyymon-dd woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the week number of the year (Monday as the first day of the week) | 25Dec31 Week 53 |
FORMAT_DATE('%g%h%e Week %W', DATE '2024-12-31') -- Iyyymon d woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the week number of the year (Monday as the first day of the week) | 25Dec31 Week 53 |
FORMAT_DATE('%Y-%m-%d ISO Week %V', DATE '2024-12-31') -- yyyy-mm-dd iso-woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-12-31 ISO Week 01 |
FORMAT_DATE('%Y-%m-%e ISO Week %V', DATE '2024-12-31') -- yyyy-mm- d iso-woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-12-31 ISO Week 01 |
FORMAT_DATE('%E4Y-%m-%d ISO Week %V', DATE '2024-12-31') -- yyyy-mm-dd iso-woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-12-31 ISO Week 01 |
FORMAT_DATE('%E4Y-%m-%e ISO Week %V', DATE '2024-12-31') -- yyyy-mm- d iso-woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-12-31 ISO Week 01 |
FORMAT_DATE('%y-%m-%d ISO Week %V', DATE '2024-12-31') -- yy-mm-dd iso-woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24-12-31 ISO Week 01 |
FORMAT_DATE('%y-%m-%e ISO Week %V', DATE '2024-12-31') -- yy-mm- d iso-woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24-12-31 ISO Week 01 |
FORMAT_DATE('%G-%m-%d ISO Week %V', DATE '2024-12-31') -- Iyyy-mm-dd iso-woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025-12-31 ISO Week 01 |
FORMAT_DATE('%G-%m-%e ISO Week %V', DATE '2024-12-31') -- Iyyy-mm- d iso-woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025-12-31 ISO Week 01 |
FORMAT_DATE('%g-%m-%d ISO Week %V', DATE '2024-12-31') -- Iy-mm-dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25-12-31 ISO Week 01 |
FORMAT_DATE('%g-%m-%e ISO Week %V', DATE '2024-12-31') -- Iy-mm- d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25-12-31 ISO Week 01 |
FORMAT_DATE('%Y-%B-%d ISO Week %V', DATE '2024-12-31') -- yyyy-month-dd iso-woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-December-31 ISO Week 01 |
FORMAT_DATE('%Y-%B-%e ISO Week %V', DATE '2024-12-31') -- yyyy-month- d iso-woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-December-31 ISO Week 01 |
FORMAT_DATE('%Y-%b-%d ISO Week %V', DATE '2024-12-31') -- yyyy-mon-dd iso-woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-Dec-31 ISO Week 01 |
FORMAT_DATE('%Y-%b-%e ISO Week %V', DATE '2024-12-31') -- yyyy-mon- d iso-woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-Dec-31 ISO Week 01 |
FORMAT_DATE('%Y-%h-%d ISO Week %V', DATE '2024-12-31') -- yyyy-mon-dd iso-woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-Dec-31 ISO Week 01 |
FORMAT_DATE('%Y-%h-%e ISO Week %V', DATE '2024-12-31') -- yyyy-mon-dd iso-woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-Dec-31 ISO Week 01 |
FORMAT_DATE('%E4Y-%B-%d ISO Week %V', DATE '2024-12-31') -- yyyy-month-dd iso-woy Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-December-31 ISO Week 01 |
FORMAT_DATE('%E4Y-%B-%e ISO Week %V', DATE '2024-12-31') -- yyyy-month- d iso-woy Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-December-31 ISO Week 01 |
FORMAT_DATE('%E4Y-%b-%d ISO Week %V', DATE '2024-12-31') -- yyyy-mon-dd iso-woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-Dec-31 ISO Week 01 |
FORMAT_DATE('%E4Y-%b-%e ISO Week %V', DATE '2024-12-31') -- yyyy-mon- d iso-woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-Dec-31 ISO Week 01 |
FORMAT_DATE('%E4Y-%h-%d ISO Week %V', DATE '2024-12-31') -- yyyy-mon-dd iso-woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-Dec-31 ISO Week 01 |
FORMAT_DATE('%E4Y-%h-%e ISO Week %V', DATE '2024-12-31') -- yyyy-mon- d iso-woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024-Dec-31 ISO Week 01 |
FORMAT_DATE('%y-%B-%d ISO Week %V', DATE '2024-12-31') -- yy-month-dd iso-woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24-December-31 ISO Week 01 |
FORMAT_DATE('%y-%B-%e ISO Week %V', DATE '2024-12-31') -- yy-month- d iso-woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24-December-31 ISO Week 01 |
FORMAT_DATE('%y-%b-%d ISO Week %V', DATE '2024-12-31') -- yy-mon-dd iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24-Dec-31 ISO Week 01 |
FORMAT_DATE('%y-%b-%e ISO Week %V', DATE '2024-12-31') -- yy-mon- d iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24-Dec-31 ISO Week 01 |
FORMAT_DATE('%y-%h-%d ISO Week %V', DATE '2024-12-31') -- yy-mon-dd iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24-Dec-31 ISO Week 01 |
FORMAT_DATE('%y-%h-%e ISO Week %V', DATE '2024-12-31') -- yy-mon- d iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24-Dec-31 ISO Week 01 |
FORMAT_DATE('%G-%B-%d ISO Week %V', DATE '2024-12-31') -- Iy-month-dd iso-woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025-December-31 ISO Week 01 |
FORMAT_DATE('%G-%B-%e ISO Week %V', DATE '2024-12-31') -- Iy-month- d iso-woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025-December-31 ISO Week 01 |
FORMAT_DATE('%G-%b-%d ISO Week %V', DATE '2024-12-31') -- Iy-mon-dd iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025-Dec-31 ISO Week 01 |
FORMAT_DATE('%G-%b-%e ISO Week %V', DATE '2024-12-31') -- Iy-mon- d iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025-Dec-31 ISO Week 01 |
FORMAT_DATE('%G-%h-%d ISO Week %V', DATE '2024-12-31') -- Iy-mon-dd iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025-Dec-31 ISO Week 01 |
FORMAT_DATE('%G-%h-%e ISO Week %V', DATE '2024-12-31') -- Iy-mon- d iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025-Dec-31 ISO Week 01 |
FORMAT_DATE('%g-%B-%d ISO Week %V', DATE '2024-12-31') -- Iyyy-month-dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25-December-31 ISO Week 01 |
FORMAT_DATE('%g-%B-%e ISO Week %V', DATE '2024-12-31') -- Iyyy-month- d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25-December-31 ISO Week 01 |
FORMAT_DATE('%g-%b-%d ISO Week %V', DATE '2024-12-31') -- Iyyy-mon-dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25-Dec-31 ISO Week 01 |
FORMAT_DATE('%g-%b-%e ISO Week %V', DATE '2024-12-31') -- Iyyy-mon- d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25-Dec-31 ISO Week 01 |
FORMAT_DATE('%g-%h-%d ISO Week %V', DATE '2024-12-31') -- Iyyy-mon-dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25-Dec-31 ISO Week 01 |
FORMAT_DATE('%g-%h-%e ISO Week %V', DATE '2024-12-31') -- Iyyy-mon- d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25-Dec-31 ISO Week 01 |
FORMAT_DATE('%Y/%m/%d ISO Week %V', DATE '2024-12-31') -- yyyy/mm/dd iso-woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/12/31 ISO Week 01 |
FORMAT_DATE('%Y/%m/%e ISO Week %V', DATE '2024-12-31') -- yyyy/mm/ d iso-woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/12/31 ISO Week 01 |
FORMAT_DATE('%E4Y/%m/%d ISO Week %V', DATE '2024-12-31') -- yyyy/mm/-dd iso-woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/12/31 ISO Week 01 |
FORMAT_DATE('%E4Y/%m/%e ISO Week %V', DATE '2024-12-31') -- yyyy/mm/ d iso-woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/12/31 ISO Week 01 |
FORMAT_DATE('%y/%m/%d ISO Week %V', DATE '2024-12-31') -- yy/mm/dd iso-woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24/12/31 ISO Week 01 |
FORMAT_DATE('%y/%m/%e ISO Week %V', DATE '2024-12-31') -- yy/mm/ d iso-woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24/12/31 ISO Week 01 |
FORMAT_DATE('%G/%m/%d ISO Week %V', DATE '2024-12-31') -- Iyyy/mm/dd iso-woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025/12/31 ISO Week 01 |
FORMAT_DATE('%G/%m/%e ISO Week %V', DATE '2024-12-31') -- Iyyy/mm/ d iso-woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025/12/31 ISO Week 01 |
FORMAT_DATE('%g/%m/%d ISO Week %V', DATE '2024-12-31') -- Iy/mm/dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25/12/31 ISO Week 01 |
FORMAT_DATE('%g/%m/%e ISO Week %V', DATE '2024-12-31') -- Iy/mm/ d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25/12/31 ISO Week 01 |
FORMAT_DATE('%Y/%B/%d ISO Week %V', DATE '2024-12-31') -- yyyy/month/dd iso-woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/December/31 ISO Week 01 |
FORMAT_DATE('%Y/%B/%e ISO Week %V', DATE '2024-12-31') -- yyyy/month/ d iso-woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/December/31 ISO Week 01 |
FORMAT_DATE('%Y/%b/%d ISO Week %V', DATE '2024-12-31') -- yyyy/mon/dd iso-woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/Dec/31 ISO Week 01 |
FORMAT_DATE('%Y/%b/%e ISO Week %V', DATE '2024-12-31') -- yyyy/mon/ d iso-woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/Dec/31 ISO Week 01 |
FORMAT_DATE('%Y/%h/%d ISO Week %V', DATE '2024-12-31') -- yyyy/mon/dd iso-woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/Dec/31 ISO Week 01 |
FORMAT_DATE('%Y/%h/%e ISO Week %V', DATE '2024-12-31') -- yyyy/mon/-dd iso-woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/Dec/31 ISO Week 01 |
FORMAT_DATE('%E4Y/%B/%d ISO Week %V', DATE '2024-12-31') -- yyyy/month/dd iso-woy Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/December/31 ISO Week 01 |
FORMAT_DATE('%E4Y/%B/%e ISO Week %V', DATE '2024-12-31') -- yyyy/month/ d iso-woy Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/December/31 ISO Week 01 |
FORMAT_DATE('%E4Y/%b/%d ISO Week %V', DATE '2024-12-31') -- yyyy/mon/dd iso-woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/Dec/31 ISO Week 01 |
FORMAT_DATE('%E4Y/%b/%e ISO Week %V', DATE '2024-12-31') -- yyyy/mon/ d iso-woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/Dec/31 ISO Week 01 |
FORMAT_DATE('%E4Y/%h/%d ISO Week %V', DATE '2024-12-31') -- yyyy/mon/dd iso-woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/Dec/31 ISO Week 01 |
FORMAT_DATE('%E4Y/%h/%e ISO Week %V', DATE '2024-12-31') -- yyyy/mon/ d iso-woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024/Dec/31 ISO Week 01 |
FORMAT_DATE('%y/%B/%d ISO Week %V', DATE '2024-12-31') -- yy/month/dd iso-woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24/December/31 ISO Week 01 |
FORMAT_DATE('%y/%B/%e ISO Week %V', DATE '2024-12-31') -- yy/month/ d iso-woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24/December/31 ISO Week 01 |
FORMAT_DATE('%y/%b/%d ISO Week %V', DATE '2024-12-31') -- yy/mon/dd iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24/Dec/31 ISO Week 01 |
FORMAT_DATE('%y/%b/%e ISO Week %V', DATE '2024-12-31') -- yy/mon/ d iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24/Dec/31 ISO Week 01 |
FORMAT_DATE('%y/%h/%d ISO Week %V', DATE '2024-12-31') -- yy/mon/dd iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24/Dec/31 ISO Week 01 |
FORMAT_DATE('%y/%h/%e ISO Week %V', DATE '2024-12-31') -- yy/mon/ d iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24/Dec/31 ISO Week 01 |
FORMAT_DATE('%G/%B/%d ISO Week %V', DATE '2024-12-31') -- Iy/month/dd iso-woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025/December/31 ISO Week 01 |
FORMAT_DATE('%G/%B/%e ISO Week %V', DATE '2024-12-31') -- Iy/month/ d iso-woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025/December/31 ISO Week 01 |
FORMAT_DATE('%G/%b/%d ISO Week %V', DATE '2024-12-31') -- Iy/mon/dd iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025/Dec/31 ISO Week 01 |
FORMAT_DATE('%G/%b/%e ISO Week %V', DATE '2024-12-31') -- Iy/mon/ d iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025/Dec/31 ISO Week 01 |
FORMAT_DATE('%G/%h/%d ISO Week %V', DATE '2024-12-31') -- Iy/mon/dd iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025/Dec/31 ISO Week 01 |
FORMAT_DATE('%G/%h/%e ISO Week %V', DATE '2024-12-31') -- Iy/mon/ d iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025/Dec/31 ISO Week 01 |
FORMAT_DATE('%g/%B/%d ISO Week %V', DATE '2024-12-31') -- Iyyy/month/dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25/December/31 ISO Week 01 |
FORMAT_DATE('%g/%B/%e ISO Week %V', DATE '2024-12-31') -- Iyyy/month/ d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25/December/31 ISO Week 01 |
FORMAT_DATE('%g/%b/%d ISO Week %V', DATE '2024-12-31') -- Iyyy/mon/dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25/Dec/31 ISO Week 01 |
FORMAT_DATE('%g/%b/%e ISO Week %V', DATE '2024-12-31') -- Iyyy/mon/ d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25/Dec/31 ISO Week 01 |
FORMAT_DATE('%g/%h/%d ISO Week %V', DATE '2024-12-31') -- Iyyy/mon/-dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25/Dec/31 ISO Week 01 |
FORMAT_DATE('%g/%h/%e ISO Week %V', DATE '2024-12-31') -- Iyyy/mon/ d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25/Dec/31 ISO Week 01 |
FORMAT_DATE('%Y:%m:%d ISO Week %V', DATE '2024-12-31') -- yyyy:mm:dd iso-woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:12:31 ISO Week 01 |
FORMAT_DATE('%Y:%m:%e ISO Week %V', DATE '2024-12-31') -- yyyy:mm: d iso-woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:12:31 ISO Week 01 |
FORMAT_DATE('%E4Y:%m:%d ISO Week %V', DATE '2024-12-31') -- yyyy:mm:-dd iso-woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:12:31 ISO Week 01 |
FORMAT_DATE('%E4Y:%m:%e ISO Week %V', DATE '2024-12-31') -- yyyy:mm: d iso-woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:12:31 ISO Week 01 |
FORMAT_DATE('%y:%m:%d ISO Week %V', DATE '2024-12-31') -- yy:mm:dd iso-woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24:12:31 ISO Week 01 |
FORMAT_DATE('%y:%m:%e ISO Week %V', DATE '2024-12-31') -- yy:mm: d iso-woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24:12:31 ISO Week 01 |
FORMAT_DATE('%G:%m:%d ISO Week %V', DATE '2024-12-31') -- Iyyy:mm:dd iso-woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025:12:31 ISO Week 01 |
FORMAT_DATE('%G:%m:%e ISO Week %V', DATE '2024-12-31') -- Iyyy:mm: d iso-woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025:12:31 ISO Week 01 |
FORMAT_DATE('%g:%m:%d ISO Week %V', DATE '2024-12-31') -- Iy:mm:dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25:12:31 ISO Week 01 |
FORMAT_DATE('%g:%m:%e ISO Week %V', DATE '2024-12-31') -- Iy:mm: d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25:12:31 ISO Week 01 |
FORMAT_DATE('%Y:%B:%d ISO Week %V', DATE '2024-12-31') -- yyyy:month:dd iso-woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:December:31 ISO Week 01 |
FORMAT_DATE('%Y:%B:%e ISO Week %V', DATE '2024-12-31') -- yyyy:month: d iso-woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:December:31 ISO Week 01 |
FORMAT_DATE('%Y:%b:%d ISO Week %V', DATE '2024-12-31') -- yyyy:mon:dd iso-woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:Dec:31 ISO Week 01 |
FORMAT_DATE('%Y:%b:%e ISO Week %V', DATE '2024-12-31') -- yyyy:mon: d iso-woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:Dec:31 ISO Week 01 |
FORMAT_DATE('%Y:%h:%d ISO Week %V', DATE '2024-12-31') -- yyyy:mon:dd iso-woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:Dec:31 ISO Week 01 |
FORMAT_DATE('%Y:%h:%e ISO Week %V', DATE '2024-12-31') -- yyyy:mon:-dd iso-woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:Dec:31 ISO Week 01 |
FORMAT_DATE('%E4Y:%B:%d ISO Week %V', DATE '2024-12-31') -- yyyy:month:dd iso-woy Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:December:31 ISO Week 01 |
FORMAT_DATE('%E4Y:%B:%e ISO Week %V', DATE '2024-12-31') -- yyyy:month: d iso-woy Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:December:31 ISO Week 01 |
FORMAT_DATE('%E4Y:%b:%d ISO Week %V', DATE '2024-12-31') -- yyyy:mon:dd iso-woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:Dec:31 ISO Week 01 |
FORMAT_DATE('%E4Y:%b:%e ISO Week %V', DATE '2024-12-31') -- yyyy:mon: d iso-woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:Dec:31 ISO Week 01 |
FORMAT_DATE('%E4Y:%h:%d ISO Week %V', DATE '2024-12-31') -- yyyy:mon:dd iso-woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:Dec:31 ISO Week 01 |
FORMAT_DATE('%E4Y:%h:%e ISO Week %V', DATE '2024-12-31') -- yyyy:mon: d iso-woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024:Dec:31 ISO Week 01 |
FORMAT_DATE('%y:%B:%d ISO Week %V', DATE '2024-12-31') -- yy:month:dd iso-woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24:December:31 ISO Week 01 |
FORMAT_DATE('%y:%B:%e ISO Week %V', DATE '2024-12-31') -- yy:month: d iso-woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24:December:31 ISO Week 01 |
FORMAT_DATE('%y:%b:%d ISO Week %V', DATE '2024-12-31') -- yy:mon:dd iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24:Dec:31 ISO Week 01 |
FORMAT_DATE('%y:%b:%e ISO Week %V', DATE '2024-12-31') -- yy:mon: d iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24:Dec:31 ISO Week 01 |
FORMAT_DATE('%y:%h:%d ISO Week %V', DATE '2024-12-31') -- yy:mon:dd iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24:Dec:31 ISO Week 01 |
FORMAT_DATE('%y:%h:%e ISO Week %V', DATE '2024-12-31') -- yy:mon: d iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24:Dec:31 ISO Week 01 |
FORMAT_DATE('%G:%B:%d ISO Week %V', DATE '2024-12-31') -- Iy:month:dd iso-woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025:December:31 ISO Week 01 |
FORMAT_DATE('%G:%B:%e ISO Week %V', DATE '2024-12-31') -- Iy:month: d iso-woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025:December:31 ISO Week 01 |
FORMAT_DATE('%G:%b:%d ISO Week %V', DATE '2024-12-31') -- Iy:mon:dd iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025:Dec:31 ISO Week 01 |
FORMAT_DATE('%G:%b:%e ISO Week %V', DATE '2024-12-31') -- Iy:mon: d iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025:Dec:31 ISO Week 01 |
FORMAT_DATE('%G:%h:%d ISO Week %V', DATE '2024-12-31') -- Iy:mon:dd iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025:Dec:31 ISO Week 01 |
FORMAT_DATE('%G:%h:%e ISO Week %V', DATE '2024-12-31') -- Iy:mon: d iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025:Dec:31 ISO Week 01 |
FORMAT_DATE('%g:%B:%d ISO Week %V', DATE '2024-12-31') -- Iyyy:month:dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25:December:31 ISO Week 01 |
FORMAT_DATE('%g:%B:%e ISO Week %V', DATE '2024-12-31') -- Iyyy:month: d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25:December:31 ISO Week 01 |
FORMAT_DATE('%g:%b:%d ISO Week %V', DATE '2024-12-31') -- Iyyy:mon:dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25:Dec:31 ISO Week 01 |
FORMAT_DATE('%g:%b:%e ISO Week %V', DATE '2024-12-31') -- Iyyy:mon: d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25:Dec:31 ISO Week 01 |
FORMAT_DATE('%g:%h:%d ISO Week %V', DATE '2024-12-31') -- Iyyy:mon:-dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25:Dec:31 ISO Week 01 |
FORMAT_DATE('%g:%h:%e ISO Week %V', DATE '2024-12-31') -- Iyyy:mon: d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25:Dec:31 ISO Week 01 |
FORMAT_DATE('%Y.%m.%d ISO Week %V', DATE '2024-12-31') -- yyyy.mm.dd iso-woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.12.31 ISO Week 01 |
FORMAT_DATE('%Y.%m.%e ISO Week %V', DATE '2024-12-31') -- yyyy.mm. d iso-woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.12.31 ISO Week 01 |
FORMAT_DATE('%E4Y.%m.%d ISO Week %V', DATE '2024-12-31') -- yyyy.mm.-dd iso-woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.12.31 ISO Week 01 |
FORMAT_DATE('%E4Y.%m.%e ISO Week %V', DATE '2024-12-31') -- yyyy.mm. d iso-woy Four-character years (0001 ... 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.12.31 ISO Week 01 |
FORMAT_DATE('%y.%m.%d ISO Week %V', DATE '2024-12-31') -- yy.mm.dd iso-woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24.12.31 ISO Week 01 |
FORMAT_DATE('%y.%m.%e ISO Week %V', DATE '2024-12-31') -- yy.mm. d iso-woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24.12.31 ISO Week 01 |
FORMAT_DATE('%G.%m.%d ISO Week %V', DATE '2024-12-31') -- Iyyy.mm.dd iso-woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025.12.31 ISO Week 01 |
FORMAT_DATE('%G.%m.%e ISO Week %V', DATE '2024-12-31') -- Iyyy.mm. d iso-woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025.12.31 ISO Week 01 |
FORMAT_DATE('%g.%m.%d ISO Week %V', DATE '2024-12-31') -- Iy.mm.dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25.12.31 ISO Week 01 |
FORMAT_DATE('%g.%m.%e ISO Week %V', DATE '2024-12-31') -- Iy.mm. d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25.12.31 ISO Week 01 |
FORMAT_DATE('%Y.%B.%d ISO Week %V', DATE '2024-12-31') -- yyyy.month.dd iso-woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.December.31 ISO Week 01 |
FORMAT_DATE('%Y.%B.%e ISO Week %V', DATE '2024-12-31') -- yyyy.month. d iso-woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.December.31 ISO Week 01 |
FORMAT_DATE('%Y.%b.%d ISO Week %V', DATE '2024-12-31') -- yyyy.mon.dd iso-woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.Dec.31 ISO Week 01 |
FORMAT_DATE('%Y.%b.%e ISO Week %V', DATE '2024-12-31') -- yyyy.mon. d iso-woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.Dec.31 ISO Week 01 |
FORMAT_DATE('%Y.%h.%d ISO Week %V', DATE '2024-12-31') -- yyyy.mon.dd iso-woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.Dec.31 ISO Week 01 |
FORMAT_DATE('%Y.%h.%e ISO Week %V', DATE '2024-12-31') -- yyyy.mon.-dd iso-woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.Dec.31 ISO Week 01 |
FORMAT_DATE('%E4Y.%B.%d ISO Week %V', DATE '2024-12-31') -- yyyy.month.dd iso-woy Four-character years (0001 ... 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.December.31 ISO Week 01 |
FORMAT_DATE('%E4Y.%B.%e ISO Week %V', DATE '2024-12-31') -- yyyy.month. d iso-woy Four-character years (0001 ... 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.December.31 ISO Week 01 |
FORMAT_DATE('%E4Y.%b.%d ISO Week %V', DATE '2024-12-31') -- yyyy.mon.dd iso-woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.Dec.31 ISO Week 01 |
FORMAT_DATE('%E4Y.%b.%e ISO Week %V', DATE '2024-12-31') -- yyyy.mon. d iso-woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.Dec.31 ISO Week 01 |
FORMAT_DATE('%E4Y.%h.%d ISO Week %V', DATE '2024-12-31') -- yyyy.mon.dd iso-woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.Dec.31 ISO Week 01 |
FORMAT_DATE('%E4Y.%h.%e ISO Week %V', DATE '2024-12-31') -- yyyy.mon. d iso-woy Four-character years (0001 ... 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024.Dec.31 ISO Week 01 |
FORMAT_DATE('%y.%B.%d ISO Week %V', DATE '2024-12-31') -- yy.month.dd iso-woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24.December.31 ISO Week 01 |
FORMAT_DATE('%y.%B.%e ISO Week %V', DATE '2024-12-31') -- yy.month. d iso-woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24.December.31 ISO Week 01 |
FORMAT_DATE('%y.%b.%d ISO Week %V', DATE '2024-12-31') -- yy.mon.dd iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24.Dec.31 ISO Week 01 |
FORMAT_DATE('%y.%b.%e ISO Week %V', DATE '2024-12-31') -- yy.mon. d iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24.Dec.31 ISO Week 01 |
FORMAT_DATE('%y.%h.%d ISO Week %V', DATE '2024-12-31') -- yy.mon.dd iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24.Dec.31 ISO Week 01 |
FORMAT_DATE('%y.%h.%e ISO Week %V', DATE '2024-12-31') -- yy.mon. d iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24.Dec.31 ISO Week 01 |
FORMAT_DATE('%G.%B.%d ISO Week %V', DATE '2024-12-31') -- Iy.month.dd iso-woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025.December.31 ISO Week 01 |
FORMAT_DATE('%G.%B.%e ISO Week %V', DATE '2024-12-31') -- Iy.month. d iso-woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025.December.31 ISO Week 01 |
FORMAT_DATE('%G.%b.%d ISO Week %V', DATE '2024-12-31') -- Iy.mon.dd iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025.Dec.31 ISO Week 01 |
FORMAT_DATE('%G.%b.%e ISO Week %V', DATE '2024-12-31') -- Iy.mon. d iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025.Dec.31 ISO Week 01 |
FORMAT_DATE('%G.%h.%d ISO Week %V', DATE '2024-12-31') -- Iy.mon.dd iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025.Dec.31 ISO Week 01 |
FORMAT_DATE('%G.%h.%e ISO Week %V', DATE '2024-12-31') -- Iy.mon. d iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025.Dec.31 ISO Week 01 |
FORMAT_DATE('%g.%B.%d ISO Week %V', DATE '2024-12-31') -- Iyyy.month.dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25.December.31 ISO Week 01 |
FORMAT_DATE('%g.%B.%e ISO Week %V', DATE '2024-12-31') -- Iyyy.month. d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25.December.31 ISO Week 01 |
FORMAT_DATE('%g.%b.%d ISO Week %V', DATE '2024-12-31') -- Iyyy.mon.dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25.Dec.31 ISO Week 01 |
FORMAT_DATE('%g.%b.%e ISO Week %V', DATE '2024-12-31') -- Iyyy.mon. d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25.Dec.31 ISO Week 01 |
FORMAT_DATE('%g.%h.%d ISO Week %V', DATE '2024-12-31') -- Iyyy.mon.-dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25.Dec.31 ISO Week 01 |
FORMAT_DATE('%g.%h.%e ISO Week %V', DATE '2024-12-31') -- Iyyy.mon. d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25.Dec.31 ISO Week 01 |
FORMAT_DATE('%Y %m %d ISO Week %V', DATE '2024-12-31') -- yyyy mm dd iso-woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 12 31 ISO Week 01 |
FORMAT_DATE('%Y %m %e ISO Week %V', DATE '2024-12-31') -- yyyy mm d iso-woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 12 31 ISO Week 01 |
FORMAT_DATE('%E4Y %m %d ISO Week %V', DATE '2024-12-31') -- yyyy mm dd iso-woy Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 12 31 ISO Week 01 |
FORMAT_DATE('%E4Y %m %e ISO Week %V', DATE '2024-12-31') -- yyyy mm d iso-woy Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 12 31 ISO Week 01 |
FORMAT_DATE('%y %m %d ISO Week %V', DATE '2024-12-31') -- yy mm dd iso-woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24 12 31 ISO Week 01 |
FORMAT_DATE('%y %m %e ISO Week %V', DATE '2024-12-31') -- yy mm d iso-woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24 12 31 ISO Week 01 |
FORMAT_DATE('%G %m %d ISO Week %V', DATE '2024-12-31') -- Iyyy mm dd iso-woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025 12 31 ISO Week 01 |
FORMAT_DATE('%G %m %e ISO Week %V', DATE '2024-12-31') -- Iyyy mm d iso-woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025 12 31 ISO Week 01 |
FORMAT_DATE('%g %m %d ISO Week %V', DATE '2024-12-31') -- Iy mm dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25 12 31 ISO Week 01 |
FORMAT_DATE('%g %m %e ISO Week %V', DATE '2024-12-31') -- Iy mm d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25 12 31 ISO Week 01 |
FORMAT_DATE('%Y %B %d ISO Week %V', DATE '2024-12-31') -- yyyy month dd iso-woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 December 31 ISO Week 01 |
FORMAT_DATE('%Y %B %e ISO Week %V', DATE '2024-12-31') -- yyyy month d iso-woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 December 31 ISO Week 01 |
FORMAT_DATE('%Y %b %d ISO Week %V', DATE '2024-12-31') -- yyyy mon dd iso-woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 Dec 31 ISO Week 01 |
FORMAT_DATE('%Y %b %e ISO Week %V', DATE '2024-12-31') -- yyyy mon d iso-woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 Dec 31 ISO Week 01 |
FORMAT_DATE('%Y %h %d ISO Week %V', DATE '2024-12-31') -- yyyy mon dd iso-woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 Dec 31 ISO Week 01 |
FORMAT_DATE('%Y %h %e ISO Week %V', DATE '2024-12-31') -- yyyy mon -dd iso-woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 Dec 31 ISO Week 01 |
FORMAT_DATE('%E4Y %B %d ISO Week %V', DATE '2024-12-31') -- yyyy month dd iso-woy Four-character years (0001 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 December 31 ISO Week 01 |
FORMAT_DATE('%E4Y %B %e ISO Week %V', DATE '2024-12-31') -- yyyy month d iso-woy Four-character years (0001 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 December 31 ISO Week 01 |
FORMAT_DATE('%E4Y %b %d ISO Week %V', DATE '2024-12-31') -- yyyy mon dd iso-woy Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 Dec 31 ISO Week 01 |
FORMAT_DATE('%E4Y %b %e ISO Week %V', DATE '2024-12-31') -- yyyy mon d iso-woy Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 Dec 31 ISO Week 01 |
FORMAT_DATE('%E4Y %h %d ISO Week %V', DATE '2024-12-31') -- yyyy mon dd iso-woy Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 Dec 31 ISO Week 01 |
FORMAT_DATE('%E4Y %h %e ISO Week %V', DATE '2024-12-31') -- yyyy mon d iso-woy Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024 Dec 31 ISO Week 01 |
FORMAT_DATE('%y %B %d ISO Week %V', DATE '2024-12-31') -- yy month dd iso-woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24 December 31 ISO Week 01 |
FORMAT_DATE('%y %B %e ISO Week %V', DATE '2024-12-31') -- yy month d iso-woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24 December 31 ISO Week 01 |
FORMAT_DATE('%y %b %d ISO Week %V', DATE '2024-12-31') -- yy mon dd iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24 Dec 31 ISO Week 01 |
FORMAT_DATE('%y %b %e ISO Week %V', DATE '2024-12-31') -- yy mon d iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24 Dec 31 ISO Week 01 |
FORMAT_DATE('%y %h %d ISO Week %V', DATE '2024-12-31') -- yy mon dd iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24 Dec 31 ISO Week 01 |
FORMAT_DATE('%y %h %e ISO Week %V', DATE '2024-12-31') -- yy mon d iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24 Dec 31 ISO Week 01 |
FORMAT_DATE('%G %B %d ISO Week %V', DATE '2024-12-31') -- Iy month dd iso-woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025 December 31 ISO Week 01 |
FORMAT_DATE('%G %B %e ISO Week %V', DATE '2024-12-31') -- Iy month d iso-woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025 December 31 ISO Week 01 |
FORMAT_DATE('%G %b %d ISO Week %V', DATE '2024-12-31') -- Iy mon dd iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025 Dec 31 ISO Week 01 |
FORMAT_DATE('%G %b %e ISO Week %V', DATE '2024-12-31') -- Iy mon d iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025 Dec 31 ISO Week 01 |
FORMAT_DATE('%G %h %d ISO Week %V', DATE '2024-12-31') -- Iy mon dd iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025 Dec 31 ISO Week 01 |
FORMAT_DATE('%G %h %e ISO Week %V', DATE '2024-12-31') -- Iy mon d iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025 Dec 31 ISO Week 01 |
FORMAT_DATE('%g %B %d ISO Week %V', DATE '2024-12-31') -- Iyyy month dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25 December 31 ISO Week 01 |
FORMAT_DATE('%g %B %e ISO Week %V', DATE '2024-12-31') -- Iyyy month d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25 December 31 ISO Week 01 |
FORMAT_DATE('%g %b %d ISO Week %V', DATE '2024-12-31') -- Iyyy mon dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25 Dec 31 ISO Week 01 |
FORMAT_DATE('%g %b %e ISO Week %V', DATE '2024-12-31') -- Iyyy mon d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25 Dec 31 ISO Week 01 |
FORMAT_DATE('%g %h %d ISO Week %V', DATE '2024-12-31') -- Iyyy mon dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25 Dec 31 ISO Week 01 |
FORMAT_DATE('%g %h %e ISO Week %V', DATE '2024-12-31') -- Iyyy mon d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25 Dec 31 ISO Week 01 |
FORMAT_DATE('%Y%m%d ISO Week %V', DATE '2024-12-31') -- yyyymmdd iso-woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 20241231 ISO Week 01 |
FORMAT_DATE('%Y%m%e ISO Week %V', DATE '2024-12-31') -- yyyymm d iso-woy The year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 20241231 ISO Week 01 |
FORMAT_DATE('%E4Y%m%d ISO Week %V', DATE '2024-12-31') -- yyyymmdd iso-woy Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 20241231 ISO Week 01 |
FORMAT_DATE('%E4Y%m%e ISO Week %V', DATE '2024-12-31') -- yyyymm d iso-woy Four-character years (0001 9999) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 20241231 ISO Week 01 |
FORMAT_DATE('%y%m%d ISO Week %V', DATE '2024-12-31') -- yymmdd iso-woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 241231 ISO Week 01 |
FORMAT_DATE('%y%m%e ISO Week %V', DATE '2024-12-31') -- yymm d iso-woy The year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 241231 ISO Week 01 |
FORMAT_DATE('%G%m%d ISO Week %V', DATE '2024-12-31') -- Iyyymmdd iso-woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 20251231 ISO Week 01 |
FORMAT_DATE('%G%m%e ISO Week %V', DATE '2024-12-31') -- Iyyymm d iso-woy The ISO 8601 year with century as a decimal number - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 20251231 ISO Week 01 |
FORMAT_DATE('%g%m%d ISO Week %V', DATE '2024-12-31') -- Iymmdd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 251231 ISO Week 01 |
FORMAT_DATE('%g%m%e ISO Week %V', DATE '2024-12-31') -- Iymm d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The month as a decimal number (01-12) - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 251231 ISO Week 01 |
FORMAT_DATE('%Y%B%d ISO Week %V', DATE '2024-12-31') -- yyyymonthdd iso-woy The year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024December31 ISO Week 01 |
FORMAT_DATE('%Y%B%e ISO Week %V', DATE '2024-12-31') -- yyyymonth d iso-woy The year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024December31 ISO Week 01 |
FORMAT_DATE('%Y%b%d ISO Week %V', DATE '2024-12-31') -- yyyymondd iso-woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024Dec31 ISO Week 01 |
FORMAT_DATE('%Y%b%e ISO Week %V', DATE '2024-12-31') -- yyyymon d iso-woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024Dec31 ISO Week 01 |
FORMAT_DATE('%Y%h%d ISO Week %V', DATE '2024-12-31') -- yyyymondd iso-woy The year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024Dec31 ISO Week 01 |
FORMAT_DATE('%Y%h%e ISO Week %V', DATE '2024-12-31') -- yyyymon-dd iso-woy The year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024Dec31 ISO Week 01 |
FORMAT_DATE('%E4Y%B%d ISO Week %V', DATE '2024-12-31') -- yyyymonthdd iso-woy Four-character years (0001 9999) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024December31 ISO Week 01 |
FORMAT_DATE('%E4Y%B%e ISO Week %V', DATE '2024-12-31') -- yyyymonth d iso-woy Four-character years (0001 9999) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024December31 ISO Week 01 |
FORMAT_DATE('%E4Y%b%d ISO Week %V', DATE '2024-12-31') -- yyyymondd iso-woy Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024Dec31 ISO Week 01 |
FORMAT_DATE('%E4Y%b%e ISO Week %V', DATE '2024-12-31') -- yyyymon d iso-woy Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024Dec31 ISO Week 01 |
FORMAT_DATE('%E4Y%h%d ISO Week %V', DATE '2024-12-31') -- yyyymondd iso-woy Four-character years (0001 9999) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024Dec31 ISO Week 01 |
FORMAT_DATE('%E4Y%h%e ISO Week %V', DATE '2024-12-31') -- yyyymon d iso-woy Four-character years (0001 9999) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2024Dec31 ISO Week 01 |
FORMAT_DATE('%y%B%d ISO Week %V', DATE '2024-12-31') -- yymonthdd iso-woy The year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24December31 ISO Week 01 |
FORMAT_DATE('%y%B%e ISO Week %V', DATE '2024-12-31') -- yymonth d iso-woy The year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24December31 ISO Week 01 |
FORMAT_DATE('%y%b%d ISO Week %V', DATE '2024-12-31') -- yymondd iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24Dec31 ISO Week 01 |
FORMAT_DATE('%y%b%e ISO Week %V', DATE '2024-12-31') -- yymon d iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24Dec31 ISO Week 01 |
FORMAT_DATE('%y%h%d ISO Week %V', DATE '2024-12-31') -- yymondd iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24Dec31 ISO Week 01 |
FORMAT_DATE('%y%h%e ISO Week %V', DATE '2024-12-31') -- yymon d iso-woy The year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 24Dec31 ISO Week 01 |
FORMAT_DATE('%G%B%d ISO Week %V', DATE '2024-12-31') -- Iymonthdd iso-woy The ISO 8601 year with century as a decimal number - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025December31 ISO Week 01 |
FORMAT_DATE('%G%B%e ISO Week %V', DATE '2024-12-31') -- Iymonth d iso-woy The ISO 8601 year with century as a decimal number - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025December31 ISO Week 01 |
FORMAT_DATE('%G%b%d ISO Week %V', DATE '2024-12-31') -- Iymondd iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025Dec31 ISO Week 01 |
FORMAT_DATE('%G%b%e ISO Week %V', DATE '2024-12-31') -- Iymon d iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025Dec31 ISO Week 01 |
FORMAT_DATE('%G%h%d ISO Week %V', DATE '2024-12-31') -- Iymondd iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025Dec31 ISO Week 01 |
FORMAT_DATE('%G%h%e ISO Week %V', DATE '2024-12-31') -- Iymon d iso-woy The ISO 8601 year with century as a decimal number - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 2025Dec31 ISO Week 01 |
FORMAT_DATE('%g%B%d ISO Week %V', DATE '2024-12-31') -- Iyyymonthdd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25December31 ISO Week 01 |
FORMAT_DATE('%g%B%e ISO Week %V', DATE '2024-12-31') -- Iyyymonth d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The full month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25December31 ISO Week 01 |
FORMAT_DATE('%g%b%d ISO Week %V', DATE '2024-12-31') -- Iyyymondd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25Dec31 ISO Week 01 |
FORMAT_DATE('%g%b%e ISO Week %V', DATE '2024-12-31') -- Iyyymon d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25Dec31 ISO Week 01 |
FORMAT_DATE('%g%h%d ISO Week %V', DATE '2024-12-31') -- Iyyymon-dd iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of the month as a decimal number (01-31) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25Dec31 ISO Week 01 |
FORMAT_DATE('%g%h%e ISO Week %V', DATE '2024-12-31') -- Iyyymon d iso-woy The ISO 8601 year without century as a decimal number (00-99) - The abbreviated month name - The day of month as a decimal number (1-31); single digits preceded by a space - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 25Dec31 ISO Week 01 |
FORMAT_DATE('%d-%m-%Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number | 31-12-2024 |
FORMAT_DATE('%d-%m-%E4Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 ... 9999) | 31-12-2024 |
FORMAT_DATE('%d-%m-%y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) | 31-12-24 |
FORMAT_DATE('%d-%m-%G', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number | 31-12-2025 |
FORMAT_DATE('%d-%m-%g', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) | 31-12-25 |
FORMAT_DATE('%d-%B-%Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The year with century as a decimal number | 31-December-2024 |
FORMAT_DATE('%d-%b-%Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number | 31-Dec-2024 |
FORMAT_DATE('%d-%h-%Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number | 31-Dec-2024 |
FORMAT_DATE('%d-%B-%E4Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - Four-character years (0001 ... 9999) | 31-December-2024 |
FORMAT_DATE('%d-%b-%E4Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 ... 9999) | 31-Dec-2024 |
FORMAT_DATE('%d-%h-%E4Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 ... 9999) | 31-Dec-2024 |
FORMAT_DATE('%d-%B-%y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The year without century as a decimal number (00-99) | 31-December-24 |
FORMAT_DATE('%d-%b-%y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) | 31-Dec-24 |
FORMAT_DATE('%d-%h-%y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) | 31-Dec-24 |
FORMAT_DATE('%d-%B-%G', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The ISO 8601 year with century as a decimal number | 31-December-2025 |
FORMAT_DATE('%d-%b-%G', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number | 31-Dec-2025 |
FORMAT_DATE('%d-%h-%G', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number | 31-Dec-2025 |
FORMAT_DATE('%d-%B-%g', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) | 31-December-25 |
FORMAT_DATE('%d-%b-%g', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) | 31-Dec-25 |
FORMAT_DATE('%d-%h-%g', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) | 31-Dec-25 |
FORMAT_DATE('%d-%m-%Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, day of year | 31-12-2024 Day 366 |
FORMAT_DATE('%d-%m-%E4Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 ... 9999) - Plus, day of year | 31-12-2024 Day 366 |
FORMAT_DATE('%d-%m-%y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, day of year | 31-12-24 Day 366 |
FORMAT_DATE('%d-%m-%G Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, day of year | 31-12-2025 Day 366 |
FORMAT_DATE('%d-%m-%g Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31-12-25 Day 366 |
FORMAT_DATE('%d-%B-%Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The year with century as a decimal number - Plus, day of year | 31-December-2024 Day 366 |
FORMAT_DATE('%d-%b-%Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of year | 31-Dec-2024 Day 366 |
FORMAT_DATE('%d-%h-%Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of year | 31-Dec-2024 Day 366 |
FORMAT_DATE('%d-%B-%E4Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - Four-character years (0001 ... 9999) - Plus, day of year | 31-December-2024 Day 366 |
FORMAT_DATE('%d-%b-%E4Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 ... 9999) - Plus, day of year | 31-Dec-2024 Day 366 |
FORMAT_DATE('%d-%h-%E4Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 ... 9999) - Plus, day of year | 31-Dec-2024 Day 366 |
FORMAT_DATE('%d-%B-%y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The year without century as a decimal number (00-99) - Plus, day of year | 31-December-24 Day 366 |
FORMAT_DATE('%d-%b-%y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of year | 31-Dec-24 Day 366 |
FORMAT_DATE('%d-%h-%y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of year | 31-Dec-24 Day 366 |
FORMAT_DATE('%d-%B-%G Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The ISO 8601 year with century as a decimal number - Plus, day of year | 31-December-2025 Day 366 |
FORMAT_DATE('%d-%b-%G Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of year | 31-Dec-2025 Day 366 |
FORMAT_DATE('%d-%h-%G Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of year | 31-Dec-2025 Day 366 |
FORMAT_DATE('%d-%B-%g Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31-December-25 Day 366 |
FORMAT_DATE('%d-%b-%g Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31-Dec-25 Day 366 |
FORMAT_DATE('%d-%h-%g Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31-Dec-25 Day 366 |
FORMAT_DATE('%d/%m/%Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The year with century as a decimal number | 31/12/2024 |
FORMAT_DATE('%d/%m/%E4Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / Four-character years (0001 ... 9999) | 31/12/2024 |
FORMAT_DATE('%d/%m/%y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The year without century as a decimal number (00-99) | 31/12/24 |
FORMAT_DATE('%d/%m/%G', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The ISO 8601 year with century as a decimal number | 31/12/2025 |
FORMAT_DATE('%d/%m/%g', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) | 31/12/25 |
FORMAT_DATE('%d/%B/%Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - / The year with century as a decimal number | 31/December/2024 |
FORMAT_DATE('%d/%b/%Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year with century as a decimal number | 31/Dec/2024 |
FORMAT_DATE('%d/%h/%Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year with century as a decimal number | 31/Dec/2024 |
FORMAT_DATE('%d/%B/%E4Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - / Four-character years (0001 ... 9999) | 31/December/2024 |
FORMAT_DATE('%d/%b/%E4Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / Four-character years (0001 ... 9999) | 31/Dec/2024 |
FORMAT_DATE('%d/%h/%E4Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / Four-character years (0001 ... 9999) | 31/Dec/2024 |
FORMAT_DATE('%d/%B/%y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - / The year without century as a decimal number (00-99) | 31/December/24 |
FORMAT_DATE('%d/%b/%y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year without century as a decimal number (00-99) | 31/Dec/24 |
FORMAT_DATE('%d/%h/%y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year without century as a decimal number (00-99) | 31/Dec/24 |
FORMAT_DATE('%d/%B/%G', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - / The ISO 8601 year with century as a decimal number | 31/December/2025 |
FORMAT_DATE('%d/%b/%G', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - /- The ISO 8601 year with century as a decimal number | 31/Dec/2025 |
FORMAT_DATE('%d/%h/%G', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The ISO 8601 year with century as a decimal number | 31/Dec/2025 |
FORMAT_DATE('%d/%B/%g', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) | 31/December/25 |
FORMAT_DATE('%d/%b/%g', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) | 31/Dec/25 |
FORMAT_DATE('%d/%h/%g', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) | 31/Dec/25 |
FORMAT_DATE('%d/%m/%Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The year with century as a decimal number - Plus, day of year | 31/12/2024 Day 366 |
FORMAT_DATE('%d/%m/%E4Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - /- Four-character years (0001 ... 9999) - Plus, day of year | 31/12/2024 Day 366 |
FORMAT_DATE('%d/%m/%y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The year without century as a decimal number (00-99) - Plus, day of year | 31/12/24 Day 366 |
FORMAT_DATE('%d/%m/%G Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The ISO 8601 year with century as a decimal number - Plus, day of year | 31/12/2025 Day 366 |
FORMAT_DATE('%d/%m/%g Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31/12/25 Day 366 |
FORMAT_DATE('%d/%B/%Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - / The year with century as a decimal number - Plus, day of year | 31/December/2024 Day 366 |
FORMAT_DATE('%d/%b/%Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year with century as a decimal number - Plus, day of year | 31/Dec/2024 Day 366 |
FORMAT_DATE('%d/%h/%Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year with century as a decimal number - Plus, day of year | 31/Dec/2024 Day 366 |
FORMAT_DATE('%d/%B/%E4Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - / Four-character years (0001 ... 9999) - Plus, day of year | 31/December/2024 Day 366 |
FORMAT_DATE('%d/%b/%E4Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / Four-character years (0001 ... 9999) - Plus, day of year | 31/Dec/2024 Day 366 |
FORMAT_DATE('%d/%h/%E4Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / Four-character years (0001 ... 9999) - Plus, day of year | 31/Dec/2024 Day 366 |
FORMAT_DATE('%d/%B/%y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - / The year without century as a decimal number (00-99) - Plus, day of year | 31/December/24 Day 366 |
FORMAT_DATE('%d/%b/%y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year without century as a decimal number (00-99) - Plus, day of year | 31/Dec/24 Day 366 |
FORMAT_DATE('%d/%h/%y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year without century as a decimal number (00-99) - Plus, day of year | 31/Dec/24 Day 366 |
FORMAT_DATE('%d/%B/%G Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - / The ISO 8601 year with century as a decimal number - Plus, day of year | 31/December/2025 Day 366 |
FORMAT_DATE('%d/%b/%G Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The ISO 8601 year with century as a decimal number - Plus, day of year | 31/Dec/2025 Day 366 |
FORMAT_DATE('%d/%h/%G Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The ISO 8601 year with century as a decimal number - Plus, day of year | 31/Dec/2025 Day 366 |
FORMAT_DATE('%d/%B/%g Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31/December/25 Day 366 |
FORMAT_DATE('%d/%b/%g Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31/Dec/25 Day 366 |
FORMAT_DATE('%d/%h/%g Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) /- The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31/Dec/25 Day 366 |
FORMAT_DATE('%d:%m:%Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The year with century as a decimal number | 31:12:2024 |
FORMAT_DATE('%d:%m:%E4Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : Four-character years (0001 ... 9999) | 31:12:2024 |
FORMAT_DATE('%d:%m:%y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The year without century as a decimal number (00-99) | 31:12:24 |
FORMAT_DATE('%d:%m:%G', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The ISO 8601 year with century as a decimal number | 31:12:2025 |
FORMAT_DATE('%d:%m:%g', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) : The ISO 8601 year without century as a decimal number (00-99) | 31:12:25 |
FORMAT_DATE('%d:%B:%Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - : The year with century as a decimal number | 31:December:2024 |
FORMAT_DATE('%d:%b:%Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year with century as a decimal number | 31:Dec:2024 |
FORMAT_DATE('%d:%h:%Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year with century as a decimal number | 31:Dec:2024 |
FORMAT_DATE('%d:%B:%E4Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - : Four-character years (0001 ... 9999) | 31:December:2024 |
FORMAT_DATE('%d:%b:%E4Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : Four-character years (0001 ... 9999) | 31:Dec:2024 |
FORMAT_DATE('%d:%h:%E4Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : Four-character years (0001 ... 9999) | 31:Dec:2024 |
FORMAT_DATE('%d:%B:%y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - : The year without century as a decimal number (00-99) | 31:December:24 |
FORMAT_DATE('%d:%b:%y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year without century as a decimal number (00-99) | 31:Dec:24 |
FORMAT_DATE('%d:%h:%y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year without century as a decimal number (00-99) | 31:Dec:24 |
FORMAT_DATE('%d:%B:%G', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - : The ISO 8601 year with century as a decimal number | 31:December:2025 |
FORMAT_DATE('%d:%b:%G', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - :- The ISO 8601 year with century as a decimal number | 31:Dec:2025 |
FORMAT_DATE('%d:%h:%G', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The ISO 8601 year with century as a decimal number | 31:Dec:2025 |
FORMAT_DATE('%d:%B:%g', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) | 31:December:25 |
FORMAT_DATE('%d:%b:%g', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) | 31:Dec:25 |
FORMAT_DATE('%d:%h:%g', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) | 31:Dec:25 |
FORMAT_DATE('%d:%m:%Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The year with century as a decimal number - Plus, day of year | 31:12:2024 Day 366 |
FORMAT_DATE('%d:%m:%E4Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - :- Four-character years (0001 ... 9999) - Plus, day of year | 31:12:2024 Day 366 |
FORMAT_DATE('%d:%m:%y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The year without century as a decimal number (00-99) - Plus, day of year | 31:12:24 Day 366 |
FORMAT_DATE('%d:%m:%G Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The ISO 8601 year with century as a decimal number - Plus, day of year | 31:12:2025 Day 366 |
FORMAT_DATE('%d:%m:%g Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31:12:25 Day 366 |
FORMAT_DATE('%d:%B:%Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - : The year with century as a decimal number - Plus, day of year | 31:December:2024 Day 366 |
FORMAT_DATE('%d:%b:%Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year with century as a decimal number - Plus, day of year | 31:Dec:2024 Day 366 |
FORMAT_DATE('%d:%h:%Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year with century as a decimal number - Plus, day of year | 31:Dec:2024 Day 366 |
FORMAT_DATE('%d:%B:%E4Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - : Four-character years (0001 ... 9999) - Plus, day of year | 31:December:2024 Day 366 |
FORMAT_DATE('%d:%b:%E4Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : Four-character years (0001 ... 9999) - Plus, day of year | 31:Dec:2024 Day 366 |
FORMAT_DATE('%d:%h:%E4Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : Four-character years (0001 ... 9999) - Plus, day of year | 31:Dec:2024 Day 366 |
FORMAT_DATE('%d:%B:%y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - : The year without century as a decimal number (00-99) - Plus, day of year | 31:December:24 Day 366 |
FORMAT_DATE('%d:%b:%y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year without century as a decimal number (00-99) - Plus, day of year | 31:Dec:24 Day 366 |
FORMAT_DATE('%d:%h:%y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year without century as a decimal number (00-99) - Plus, day of year | 31:Dec:24 Day 366 |
FORMAT_DATE('%d:%B:%G Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - : The ISO 8601 year with century as a decimal number - Plus, day of year | 31:December:2025 Day 366 |
FORMAT_DATE('%d:%b:%G Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The ISO 8601 year with century as a decimal number - Plus, day of year | 31:Dec:2025 Day 366 |
FORMAT_DATE('%d:%h:%G Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The ISO 8601 year with century as a decimal number - Plus, day of year | 31:Dec:2025 Day 366 |
FORMAT_DATE('%d:%B:%g Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31:December:25 Day 366 |
FORMAT_DATE('%d:%b:%g Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31:Dec:25 Day 366 |
FORMAT_DATE('%d:%h:%g Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) :- The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31:Dec:25 Day 366 |
FORMAT_DATE('%d.%m.%Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The year with century as a decimal number | 31.12.2024 |
FORMAT_DATE('%d.%m.%E4Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . Four-character years (0001 ... 9999) | 31.12.2024 |
FORMAT_DATE('%d.%m.%y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The year without century as a decimal number (00-99) | 31.12.24 |
FORMAT_DATE('%d.%m.%G', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The ISO 8601 year with century as a decimal number | 31.12.2025 |
FORMAT_DATE('%d.%m.%g', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) | 31.12.25 |
FORMAT_DATE('%d.%B.%Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - . The year with century as a decimal number | 31.December.2024 |
FORMAT_DATE('%d.%b.%Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year with century as a decimal number | 31.Dec.2024 |
FORMAT_DATE('%d.%h.%Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year with century as a decimal number | 31.Dec.2024 |
FORMAT_DATE('%d.%B.%E4Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - . Four-character years (0001 ... 9999) | 31.December.2024 |
FORMAT_DATE('%d.%b.%E4Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . Four-character years (0001 ... 9999) | 31.Dec.2024 |
FORMAT_DATE('%d.%h.%E4Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . Four-character years (0001 ... 9999) | 31.Dec.2024 |
FORMAT_DATE('%d.%B.%y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - . The year without century as a decimal number (00-99) | 31.December.24 |
FORMAT_DATE('%d.%b.%y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year without century as a decimal number (00-99) | 31.Dec.24 |
FORMAT_DATE('%d.%h.%y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year without century as a decimal number (00-99) | 31.Dec.24 |
FORMAT_DATE('%d.%B.%G', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - . The ISO 8601 year with century as a decimal number | 31.December.2025 |
FORMAT_DATE('%d.%b.%G', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - .- The ISO 8601 year with century as a decimal number | 31.Dec.2025 |
FORMAT_DATE('%d.%h.%G', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The ISO 8601 year with century as a decimal number | 31.Dec.2025 |
FORMAT_DATE('%d.%B.%g', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) | 31.December.25 |
FORMAT_DATE('%d.%b.%g', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) | 31.Dec.25 |
FORMAT_DATE('%d.%h.%g', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) | 31.Dec.25 |
FORMAT_DATE('%d.%m.%Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The year with century as a decimal number - Plus, day of year | 31.12.2024 Day 366 |
FORMAT_DATE('%d.%m.%E4Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - .- Four-character years (0001 ... 9999) - Plus, day of year | 31.12.2024 Day 366 |
FORMAT_DATE('%d.%m.%y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The year without century as a decimal number (00-99) - Plus, day of year | 31.12.24 Day 366 |
FORMAT_DATE('%d.%m.%G Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The ISO 8601 year with century as a decimal number - Plus, day of year | 31.12.2025 Day 366 |
FORMAT_DATE('%d.%m.%g Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31.12.25 Day 366 |
FORMAT_DATE('%d.%B.%Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - . The year with century as a decimal number - Plus, day of year | 31.December.2024 Day 366 |
FORMAT_DATE('%d.%b.%Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year with century as a decimal number - Plus, day of year | 31.Dec.2024 Day 366 |
FORMAT_DATE('%d.%h.%Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year with century as a decimal number - Plus, day of year | 31.Dec.2024 Day 366 |
FORMAT_DATE('%d.%B.%E4Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - . Four-character years (0001 ... 9999) - Plus, day of year | 31.December.2024 Day 366 |
FORMAT_DATE('%d.%b.%E4Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . Four-character years (0001 ... 9999) - Plus, day of year | 31.Dec.2024 Day 366 |
FORMAT_DATE('%d.%h.%E4Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . Four-character years (0001 ... 9999) - Plus, day of year | 31.Dec.2024 Day 366 |
FORMAT_DATE('%d.%B.%y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - . The year without century as a decimal number (00-99) - Plus, day of year | 31.December.24 Day 366 |
FORMAT_DATE('%d.%b.%y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year without century as a decimal number (00-99) - Plus, day of year | 31.Dec.24 Day 366 |
FORMAT_DATE('%d.%h.%y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year without century as a decimal number (00-99) - Plus, day of year | 31.Dec.24 Day 366 |
FORMAT_DATE('%d.%B.%G Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - . The ISO 8601 year with century as a decimal number - Plus, day of year | 31.December.2025 Day 366 |
FORMAT_DATE('%d.%b.%G Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The ISO 8601 year with century as a decimal number - Plus, day of year | 31.Dec.2025 Day 366 |
FORMAT_DATE('%d.%h.%G Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The ISO 8601 year with century as a decimal number - Plus, day of year | 31.Dec.2025 Day 366 |
FORMAT_DATE('%d.%B.%g Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31.December.25 Day 366 |
FORMAT_DATE('%d.%b.%g Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31.Dec.25 Day 366 |
FORMAT_DATE('%d.%h.%g Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) .- The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31.Dec.25 Day 366 |
FORMAT_DATE('%d %m %Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number | 31 12 2024 |
FORMAT_DATE('%d %m %E4Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 9999) | 31 12 2024 |
FORMAT_DATE('%d %m %y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) | 31 12 24 |
FORMAT_DATE('%d %m %G', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number | 31 12 2025 |
FORMAT_DATE('%d %m %g', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) | 31 12 25 |
FORMAT_DATE('%d %B %Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The year with century as a decimal number | 31 December 2024 |
FORMAT_DATE('%d %b %Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number | 31 Dec 2024 |
FORMAT_DATE('%d %h %Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number | 31 Dec 2024 |
FORMAT_DATE('%d %B %E4Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month Four-character years (0001 9999) | 31 December 2024 |
FORMAT_DATE('%d %b %E4Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) | 31 Dec 2024 |
FORMAT_DATE('%d %h %E4Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) | 31 Dec 2024 |
FORMAT_DATE('%d %B %y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The year without century as a decimal number (00-99) | 31 December 24 |
FORMAT_DATE('%d %b %y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) | 31 Dec 24 |
FORMAT_DATE('%d %h %y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) | 31 Dec 24 |
FORMAT_DATE('%d %B %G', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The ISO 8601 year with century as a decimal number | 31 December 2025 |
FORMAT_DATE('%d %b %G', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - - The ISO 8601 year with century as a decimal number | 31 Dec 2025 |
FORMAT_DATE('%d %h %G', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number | 31 Dec 2025 |
FORMAT_DATE('%d %B %g', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) month The ISO 8601 year without century as a decimal number (00-99) | 31 December 25 |
FORMAT_DATE('%d %b %g', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) | 31 Dec 25 |
FORMAT_DATE('%d %h %g', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) | 31 Dec 25 |
FORMAT_DATE('%d %m %Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, day of year | 31 12 2024 Day 366 |
FORMAT_DATE('%d %m %E4Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - - Four-character years (0001 9999) - Plus, day of year | 31 12 2024 Day 366 |
FORMAT_DATE('%d %m %y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, day of year | 31 12 24 Day 366 |
FORMAT_DATE('%d %m %G Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, day of year | 31 12 2025 Day 366 |
FORMAT_DATE('%d %m %g Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31 12 25 Day 366 |
FORMAT_DATE('%d %B %Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The year with century as a decimal number - Plus, day of year | 31 December 2024 Day 366 |
FORMAT_DATE('%d %b %Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of year | 31 Dec 2024 Day 366 |
FORMAT_DATE('%d %h %Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of year | 31 Dec 2024 Day 366 |
FORMAT_DATE('%d %B %E4Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month Four-character years (0001 9999) - Plus, day of year | 31 December 2024 Day 366 |
FORMAT_DATE('%d %b %E4Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, day of year | 31 Dec 2024 Day 366 |
FORMAT_DATE('%d %h %E4Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, day of year | 31 Dec 2024 Day 366 |
FORMAT_DATE('%d %B %y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The year without century as a decimal number (00-99) - Plus, day of year | 31 December 24 Day 366 |
FORMAT_DATE('%d %b %y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of year | 31 Dec 24 Day 366 |
FORMAT_DATE('%d %h %y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of year | 31 Dec 24 Day 366 |
FORMAT_DATE('%d %B %G Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The ISO 8601 year with century as a decimal number - Plus, day of year | 31 December 2025 Day 366 |
FORMAT_DATE('%d %b %G Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of year | 31 Dec 2025 Day 366 |
FORMAT_DATE('%d %h %G Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of year | 31 Dec 2025 Day 366 |
FORMAT_DATE('%d %B %g Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) month The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31 December 25 Day 366 |
FORMAT_DATE('%d %b %g Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31 Dec 25 Day 366 |
FORMAT_DATE('%d %h %g Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31 Dec 25 Day 366 |
FORMAT_DATE('%d%m%Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number | 31122024 |
FORMAT_DATE('%d%m%E4Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 9999) | 31122024 |
FORMAT_DATE('%d%m%y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) | 311224 |
FORMAT_DATE('%d%m%G', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number | 31122025 |
FORMAT_DATE('%d%m%g', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) | 311225 |
FORMAT_DATE('%d%B%Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The year with century as a decimal number | 31December2024 |
FORMAT_DATE('%d%b%Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number | 31Dec2024 |
FORMAT_DATE('%d%h%Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number | 31Dec2024 |
FORMAT_DATE('%d%B%E4Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month Four-character years (0001 9999) | 31December2024 |
FORMAT_DATE('%d%b%E4Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) | 31Dec2024 |
FORMAT_DATE('%d%h%E4Y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) | 31Dec2024 |
FORMAT_DATE('%d%B%y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The year without century as a decimal number (00-99) | 31December24 |
FORMAT_DATE('%d%b%y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) | 31Dec24 |
FORMAT_DATE('%d%h%y', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) | 31Dec24 |
FORMAT_DATE('%d%B%G', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The ISO 8601 year with century as a decimal number | 31December2025 |
FORMAT_DATE('%d%b%G', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - mon- The ISO 8601 year with century as a decimal number | 31Dec2025 |
FORMAT_DATE('%d%h%G', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number | 31Dec2025 |
FORMAT_DATE('%d%B%g', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) month The ISO 8601 year without century as a decimal number (00-99) | 31December25 |
FORMAT_DATE('%d%b%g', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31)The ISO 8601 year without century as a decimal number (00-99) | 31Dec25 |
FORMAT_DATE('%d%h%g', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31)The ISO 8601 year without century as a decimal number (00-99) | 31Dec25 |
FORMAT_DATE('%d%m%Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, day of year | 31122024 Day 366 |
FORMAT_DATE('%d%m%E4Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - - Four-character years (0001 9999) - Plus, day of year | 31122024 Day 366 |
FORMAT_DATE('%d%m%y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, day of year | 311224 Day 366 |
FORMAT_DATE('%d%m%G Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, day of year | 31122025 Day 366 |
FORMAT_DATE('%d%m%g Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 311225 Day 366 |
FORMAT_DATE('%d%B%Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The year with century as a decimal number - Plus, day of year | 31December2024 Day 366 |
FORMAT_DATE('%d%b%Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of year | 31Dec2024 Day 366 |
FORMAT_DATE('%d%h%Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of year | 31Dec2024 Day 366 |
FORMAT_DATE('%d%B%E4Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month Four-character years (0001 9999) - Plus, day of year | 31December2024 Day 366 |
FORMAT_DATE('%d%b%E4Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, day of year | 31Dec2024 Day 366 |
FORMAT_DATE('%d%h%E4Y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, day of year | 31Dec2024 Day 366 |
FORMAT_DATE('%d%B%y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The year without century as a decimal number (00-99) - Plus, day of year | 31December24 Day 366 |
FORMAT_DATE('%d%b%y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of year | 31Dec24 Day 366 |
FORMAT_DATE('%d%h%y Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of year | 31Dec24 Day 366 |
FORMAT_DATE('%d%B%G Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The ISO 8601 year with century as a decimal number - Plus, day of year | 31December2025 Day 366 |
FORMAT_DATE('%d%b%G Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of year | 31Dec2025 Day 366 |
FORMAT_DATE('%d%h%G Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of year | 31Dec2025 Day 366 |
FORMAT_DATE('%d%B%g Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) month The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31December25 Day 366 |
FORMAT_DATE('%d%b%g Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31Dec25 Day 366 |
FORMAT_DATE('%d%h%g Day %j', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) mon- The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31Dec25 Day 366 |
FORMAT_DATE('%d-%m-%Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, day of the week | 31-12-2024 Tuesday |
FORMAT_DATE('%d-%m-%E4Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 ... 9999) - Plus, day of the week | 31-12-2024 Tuesday |
FORMAT_DATE('%d-%m-%y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, day of the week | 31-12-24 Tuesday |
FORMAT_DATE('%d-%m-%G %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, day of the week | 31-12-2025 Tuesday |
FORMAT_DATE('%d-%m-%g %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31-12-25 Tuesday |
FORMAT_DATE('%d-%B-%Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The year with century as a decimal number - Plus, day of the week | 31-December-2024 Tuesday |
FORMAT_DATE('%d-%b-%Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of the week | 31-Dec-2024 Tuesday |
FORMAT_DATE('%d-%h-%Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of the week | 31-Dec-2024 Tuesday |
FORMAT_DATE('%d-%B-%E4Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - Four-character years (0001 ... 9999) - Plus, day of the week | 31-December-2024 Tuesday |
FORMAT_DATE('%d-%b-%E4Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 ... 9999) - Plus, day of the week | 31-Dec-2024 Tuesday |
FORMAT_DATE('%d-%h-%E4Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 ... 9999) - Plus, day of the week | 31-Dec-2024 Tuesday |
FORMAT_DATE('%d-%B-%y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The year without century as a decimal number (00-99) - Plus, day of the week | 31-December-24 Tuesday |
FORMAT_DATE('%d-%b-%y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of the week | 31-Dec-24 Tuesday |
FORMAT_DATE('%d-%h-%y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of the week | 31-Dec-24 Tuesday |
FORMAT_DATE('%d-%B-%G %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The ISO 8601 year with century as a decimal number - Plus, day of the week | 31-December-2025 Tuesday |
FORMAT_DATE('%d-%b-%G %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of the week | 31-Dec-2025 Tuesday |
FORMAT_DATE('%d-%h-%G %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of the week | 31-Dec-2025 Tuesday |
FORMAT_DATE('%d-%B-%g %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31-December-25 Tuesday |
FORMAT_DATE('%d-%b-%g %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31-Dec-25 Tuesday |
FORMAT_DATE('%d-%h-%g %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31-Dec-25 Tuesday |
FORMAT_DATE('%d/%m/%Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The year with century as a decimal number - Plus, day of the week | 31/12/2024 Tuesday |
FORMAT_DATE('%d/%m/%E4Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - /- Four-character years (0001 ... 9999) - Plus, day of the week | 31/12/2024 Tuesday |
FORMAT_DATE('%d/%m/%y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The year without century as a decimal number (00-99) - Plus, day of the week | 31/12/24 Tuesday |
FORMAT_DATE('%d/%m/%G %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The ISO 8601 year with century as a decimal number - Plus, day of the week | 31/12/2025 Tuesday |
FORMAT_DATE('%d/%m/%g %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31/12/25 Tuesday |
FORMAT_DATE('%d/%B/%Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - / The year with century as a decimal number - Plus, day of the week | 31/December/2024 Tuesday |
FORMAT_DATE('%d/%b/%Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year with century as a decimal number - Plus, day of the week | 31/Dec/2024 Tuesday |
FORMAT_DATE('%d/%h/%Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year with century as a decimal number - Plus, day of the week | 31/Dec/2024 Tuesday |
FORMAT_DATE('%d/%B/%E4Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - / Four-character years (0001 ... 9999) - Plus, day of the week | 31/December/2024 Tuesday |
FORMAT_DATE('%d/%b/%E4Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / Four-character years (0001 ... 9999) - Plus, day of the week | 31/Dec/2024 Tuesday |
FORMAT_DATE('%d/%h/%E4Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / Four-character years (0001 ... 9999) - Plus, day of the week | 31/Dec/2024 Tuesday |
FORMAT_DATE('%d/%B/%y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - / The year without century as a decimal number (00-99) - Plus, day of the week | 31/December/24 Tuesday |
FORMAT_DATE('%d/%b/%y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year without century as a decimal number (00-99) - Plus, day of the week | 31/Dec/24 Tuesday |
FORMAT_DATE('%d/%h/%y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year without century as a decimal number (00-99) - Plus, day of the week | 31/Dec/24 Tuesday |
FORMAT_DATE('%d/%B/%G %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - / The ISO 8601 year with century as a decimal number - Plus, day of the week | 31/December/2025 Tuesday |
FORMAT_DATE('%d/%b/%G %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The ISO 8601 year with century as a decimal number - Plus, day of the week | 31/Dec/2025 Tuesday |
FORMAT_DATE('%d/%h/%G %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The ISO 8601 year with century as a decimal number - Plus, day of the week | 31/Dec/2025 Tuesday |
FORMAT_DATE('%d/%B/%g %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31/December/25 Tuesday |
FORMAT_DATE('%d/%b/%g %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31/Dec/25 Tuesday |
FORMAT_DATE('%d/%h/%g %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) /- The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31/Dec/25 Tuesday |
FORMAT_DATE('%d:%m:%Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The year with century as a decimal number - Plus, day of the week | 31:12:2024 Tuesday |
FORMAT_DATE('%d:%m:%E4Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - :- Four-character years (0001 ... 9999) - Plus, day of the week | 31:12:2024 Tuesday |
FORMAT_DATE('%d:%m:%y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The year without century as a decimal number (00-99) - Plus, day of the week | 31:12:24 Tuesday |
FORMAT_DATE('%d:%m:%G %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The ISO 8601 year with century as a decimal number - Plus, day of the week | 31:12:2025 Tuesday |
FORMAT_DATE('%d:%m:%g %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31:12:25 Tuesday |
FORMAT_DATE('%d:%B:%Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - : The year with century as a decimal number - Plus, day of the week | 31:December:2024 Tuesday |
FORMAT_DATE('%d:%b:%Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year with century as a decimal number - Plus, day of the week | 31:Dec:2024 Tuesday |
FORMAT_DATE('%d:%h:%Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year with century as a decimal number - Plus, day of the week | 31:Dec:2024 Tuesday |
FORMAT_DATE('%d:%B:%E4Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - : Four-character years (0001 ... 9999) - Plus, day of the week | 31:December:2024 Tuesday |
FORMAT_DATE('%d:%b:%E4Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : Four-character years (0001 ... 9999) - Plus, day of the week | 31:Dec:2024 Tuesday |
FORMAT_DATE('%d:%h:%E4Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : Four-character years (0001 ... 9999) - Plus, day of the week | 31:Dec:2024 Tuesday |
FORMAT_DATE('%d:%B:%y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - : The year without century as a decimal number (00-99) - Plus, day of the week | 31:December:24 Tuesday |
FORMAT_DATE('%d:%b:%y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year without century as a decimal number (00-99) - Plus, day of the week | 31:Dec:24 Tuesday |
FORMAT_DATE('%d:%h:%y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year without century as a decimal number (00-99) - Plus, day of the week | 31:Dec:24 Tuesday |
FORMAT_DATE('%d:%B:%G %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - : The ISO 8601 year with century as a decimal number - Plus, day of the week | 31:December:2025 Tuesday |
FORMAT_DATE('%d:%b:%G %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The ISO 8601 year with century as a decimal number - Plus, day of the week | 31:Dec:2025 Tuesday |
FORMAT_DATE('%d:%h:%G %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The ISO 8601 year with century as a decimal number - Plus, day of the week | 31:Dec:2025 Tuesday |
FORMAT_DATE('%d:%B:%g %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31:December:25 Tuesday |
FORMAT_DATE('%d:%b:%g %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31:Dec:25 Tuesday |
FORMAT_DATE('%d:%h:%g %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) :- The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31:Dec:25 Tuesday |
FORMAT_DATE('%d.%m.%Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The year with century as a decimal number - Plus, day of the week | 31.12.2024 Tuesday |
FORMAT_DATE('%d.%m.%E4Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - .- Four-character years (0001 ... 9999) - Plus, day of the week | 31.12.2024 Tuesday |
FORMAT_DATE('%d.%m.%y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The year without century as a decimal number (00-99) - Plus, day of the week | 31.12.24 Tuesday |
FORMAT_DATE('%d.%m.%G %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The ISO 8601 year with century as a decimal number - Plus, day of the week | 31.12.2025 Tuesday |
FORMAT_DATE('%d.%m.%g %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31.12.25 Tuesday |
FORMAT_DATE('%d.%B.%Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - . The year with century as a decimal number - Plus, day of the week | 31.December.2024 Tuesday |
FORMAT_DATE('%d.%b.%Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year with century as a decimal number - Plus, day of the week | 31.Dec.2024 Tuesday |
FORMAT_DATE('%d.%h.%Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year with century as a decimal number - Plus, day of the week | 31.Dec.2024 Tuesday |
FORMAT_DATE('%d.%B.%E4Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - . Four-character years (0001 ... 9999) - Plus, day of the week | 31.December.2024 Tuesday |
FORMAT_DATE('%d.%b.%E4Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . Four-character years (0001 ... 9999) - Plus, day of the week | 31.Dec.2024 Tuesday |
FORMAT_DATE('%d.%h.%E4Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . Four-character years (0001 ... 9999) - Plus, day of the week | 31.Dec.2024 Tuesday |
FORMAT_DATE('%d.%B.%y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - . The year without century as a decimal number (00-99) - Plus, day of the week | 31.December.24 Tuesday |
FORMAT_DATE('%d.%b.%y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year without century as a decimal number (00-99) - Plus, day of the week | 31.Dec.24 Tuesday |
FORMAT_DATE('%d.%h.%y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year without century as a decimal number (00-99) - Plus, day of the week | 31.Dec.24 Tuesday |
FORMAT_DATE('%d.%B.%G %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - . The ISO 8601 year with century as a decimal number - Plus, day of the week | 31.December.2025 Tuesday |
FORMAT_DATE('%d.%b.%G %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The ISO 8601 year with century as a decimal number - Plus, day of the week | 31.Dec.2025 Tuesday |
FORMAT_DATE('%d.%h.%G %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The ISO 8601 year with century as a decimal number - Plus, day of the week | 31.Dec.2025 Tuesday |
FORMAT_DATE('%d.%B.%g %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31.December.25 Tuesday |
FORMAT_DATE('%d.%b.%g %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31.Dec.25 Tuesday |
FORMAT_DATE('%d.%h.%g %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) .- The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31.Dec.25 Tuesday |
FORMAT_DATE('%d %m %Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, day of the week | 31 12 2024 Tuesday |
FORMAT_DATE('%d %m %E4Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 9999) - Plus, day of the week | 31 12 2024 Tuesday |
FORMAT_DATE('%d %m %y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, day of the week | 31 12 24 Tuesday |
FORMAT_DATE('%d %m %G %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, day of the week | 31 12 2025 Tuesday |
FORMAT_DATE('%d %m %g %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31 12 25 Tuesday |
FORMAT_DATE('%d %B %Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The year with century as a decimal number - Plus, day of the week | 31 December 2024 Tuesday |
FORMAT_DATE('%d %b %Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of the week | 31 Dec 2024 Tuesday |
FORMAT_DATE('%d %h %Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of the week | 31 Dec 2024 Tuesday |
FORMAT_DATE('%d %B %E4Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month Four-character years (0001 9999) - Plus, day of the week | 31 December 2024 Tuesday |
FORMAT_DATE('%d %b %E4Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, day of the week | 31 Dec 2024 Tuesday |
FORMAT_DATE('%d %h %E4Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, day of the week | 31 Dec 2024 Tuesday |
FORMAT_DATE('%d %B %y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The year without century as a decimal number (00-99) - Plus, day of the week | 31 December 24 Tuesday |
FORMAT_DATE('%d %b %y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of the week | 31 Dec 24 Tuesday |
FORMAT_DATE('%d %h %y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of the week | 31 Dec 24 Tuesday |
FORMAT_DATE('%d %B %G %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The ISO 8601 year with century as a decimal number - Plus, day of the week | 31 December 2025 Tuesday |
FORMAT_DATE('%d %b %G %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of the week | 31 Dec 2025 Tuesday |
FORMAT_DATE('%d %h %G %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of the week | 31 Dec 2025 Tuesday |
FORMAT_DATE('%d %B %g %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) month The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31 December 25 Tuesday |
FORMAT_DATE('%d %b %g %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31 Dec 25 Tuesday |
FORMAT_DATE('%d %h %g %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31 Dec 25 Tuesday |
FORMAT_DATE('%d%m%Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, day of the week | 31122024 Tuesday |
FORMAT_DATE('%d%m%E4Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 9999) - Plus, day of the week | 31122024 Tuesday |
FORMAT_DATE('%d%m%y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, day of the week | 311224 Tuesday |
FORMAT_DATE('%d%m%G %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, day of the week | 31122025 Tuesday |
FORMAT_DATE('%d%m%g %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 311225 Tuesday |
FORMAT_DATE('%d%B%Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The year with century as a decimal number - Plus, day of the week | 31December2024 Tuesday |
FORMAT_DATE('%d%b%Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of the week | 31Dec2024 Tuesday |
FORMAT_DATE('%d%h%Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of the week | 31Dec2024 Tuesday |
FORMAT_DATE('%d%B%E4Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month Four-character years (0001 9999) - Plus, day of the week | 31December2024 Tuesday |
FORMAT_DATE('%d%b%E4Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, day of the week | 31Dec2024 Tuesday |
FORMAT_DATE('%d%h%E4Y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, day of the week | 31Dec2024 Tuesday |
FORMAT_DATE('%d%B%y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The year without century as a decimal number (00-99) - Plus, day of the week | 31December24 Tuesday |
FORMAT_DATE('%d%b%y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of the week | 31Dec24 Tuesday |
FORMAT_DATE('%d%h%y %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of the week | 31Dec24 Tuesday |
FORMAT_DATE('%d%B%G %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The ISO 8601 year with century as a decimal number - Plus, day of the week | 31December2025 Tuesday |
FORMAT_DATE('%d%b%G %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of the week | 31Dec2025 Tuesday |
FORMAT_DATE('%d%h%G %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of the week | 31Dec2025 Tuesday |
FORMAT_DATE('%d%B%g %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) month The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31December25 Tuesday |
FORMAT_DATE('%d%b%g %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31Dec25 Tuesday |
FORMAT_DATE('%d%h%g %A', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) mon- The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31Dec25 Tuesday |
FORMAT_DATE('%d-%m-%Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, day of the week abbreviated | 31-12-2024 Tue |
FORMAT_DATE('%d-%m-%E4Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 ... 9999) - Plus, day of the week abbreviated | 31-12-2024 Tue |
FORMAT_DATE('%d-%m-%y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31-12-24 Tue |
FORMAT_DATE('%d-%m-%G %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31-12-2025 Tue |
FORMAT_DATE('%d-%m-%g %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31-12-25 Tue |
FORMAT_DATE('%d-%B-%Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The year with century as a decimal number - Plus, day of the week abbreviated | 31-December-2024 Tue |
FORMAT_DATE('%d-%b-%Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of the week abbreviated | 31-Dec-2024 Tue |
FORMAT_DATE('%d-%h-%Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of the week abbreviated | 31-Dec-2024 Tue |
FORMAT_DATE('%d-%B-%E4Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - Four-character years (0001 ... 9999) - Plus, day of the week abbreviated | 31-December-2024 Tue |
FORMAT_DATE('%d-%b-%E4Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 ... 9999) - Plus, day of the week abbreviated | 31-Dec-2024 Tue |
FORMAT_DATE('%d-%h-%E4Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 ... 9999) - Plus, day of the week abbreviated | 31-Dec-2024 Tue |
FORMAT_DATE('%d-%B-%y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31-December-24 Tue |
FORMAT_DATE('%d-%b-%y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31-Dec-24 Tue |
FORMAT_DATE('%d-%h-%y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31-Dec-24 Tue |
FORMAT_DATE('%d-%B-%G %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31-December-2025 Tue |
FORMAT_DATE('%d-%b-%G %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31-Dec-2025 Tue |
FORMAT_DATE('%d-%h-%G %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31-Dec-2025 Tue |
FORMAT_DATE('%d-%B-%g %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31-December-25 Tue |
FORMAT_DATE('%d-%b-%g %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31-Dec-25 Tue |
FORMAT_DATE('%d-%h-%g %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31-Dec-25 Tue |
FORMAT_DATE('%d/%m/%Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The year with century as a decimal number - Plus, day of the week abbreviated | 31/12/2024 Tue |
FORMAT_DATE('%d/%m/%E4Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - /- Four-character years (0001 ... 9999) - Plus, day of the week abbreviated | 31/12/2024 Tue |
FORMAT_DATE('%d/%m/%y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31/12/24 Tue |
FORMAT_DATE('%d/%m/%G %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31/12/2025 Tue |
FORMAT_DATE('%d/%m/%g %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31/12/25 Tue |
FORMAT_DATE('%d/%B/%Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - / The year with century as a decimal number - Plus, day of the week abbreviated | 31/December/2024 Tue |
FORMAT_DATE('%d/%b/%Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year with century as a decimal number - Plus, day of the week abbreviated | 31/Dec/2024 Tue |
FORMAT_DATE('%d/%h/%Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year with century as a decimal number - Plus, day of the week abbreviated | 31/Dec/2024 Tue |
FORMAT_DATE('%d/%B/%E4Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - / Four-character years (0001 ... 9999) - Plus, day of the week abbreviated | 31/December/2024 Tue |
FORMAT_DATE('%d/%b/%E4Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / Four-character years (0001 ... 9999) - Plus, day of the week abbreviated | 31/Dec/2024 Tue |
FORMAT_DATE('%d/%h/%E4Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / Four-character years (0001 ... 9999) - Plus, day of the week abbreviated | 31/Dec/2024 Tue |
FORMAT_DATE('%d/%B/%y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - / The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31/December/24 Tue |
FORMAT_DATE('%d/%b/%y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31/Dec/24 Tue |
FORMAT_DATE('%d/%h/%y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31/Dec/24 Tue |
FORMAT_DATE('%d/%B/%G %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - / The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31/December/2025 Tue |
FORMAT_DATE('%d/%b/%G %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31/Dec/2025 Tue |
FORMAT_DATE('%d/%h/%G %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31/Dec/2025 Tue |
FORMAT_DATE('%d/%B/%g %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31/December/25 Tue |
FORMAT_DATE('%d/%b/%g %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31/Dec/25 Tue |
FORMAT_DATE('%d/%h/%g %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) /- The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31/Dec/25 Tue |
FORMAT_DATE('%d:%m:%Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The year with century as a decimal number - Plus, day of the week abbreviated | 31:12:2024 Tue |
FORMAT_DATE('%d:%m:%E4Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - :- Four-character years (0001 ... 9999) - Plus, day of the week abbreviated | 31:12:2024 Tue |
FORMAT_DATE('%d:%m:%y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31:12:24 Tue |
FORMAT_DATE('%d:%m:%G %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31:12:2025 Tue |
FORMAT_DATE('%d:%m:%g %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31:12:25 Tue |
FORMAT_DATE('%d:%B:%Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - : The year with century as a decimal number - Plus, day of the week abbreviated | 31:December:2024 Tue |
FORMAT_DATE('%d:%b:%Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year with century as a decimal number - Plus, day of the week abbreviated | 31:Dec:2024 Tue |
FORMAT_DATE('%d:%h:%Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year with century as a decimal number - Plus, day of the week abbreviated | 31:Dec:2024 Tue |
FORMAT_DATE('%d:%B:%E4Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - : Four-character years (0001 ... 9999) - Plus, day of the week abbreviated | 31:December:2024 Tue |
FORMAT_DATE('%d:%b:%E4Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : Four-character years (0001 ... 9999) - Plus, day of the week abbreviated | 31:Dec:2024 Tue |
FORMAT_DATE('%d:%h:%E4Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : Four-character years (0001 ... 9999) - Plus, day of the week abbreviated | 31:Dec:2024 Tue |
FORMAT_DATE('%d:%B:%y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - : The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31:December:24 Tue |
FORMAT_DATE('%d:%b:%y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31:Dec:24 Tue |
FORMAT_DATE('%d:%h:%y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31:Dec:24 Tue |
FORMAT_DATE('%d:%B:%G %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - : The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31:December:2025 Tue |
FORMAT_DATE('%d:%b:%G %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31:Dec:2025 Tue |
FORMAT_DATE('%d:%h:%G %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31:Dec:2025 Tue |
FORMAT_DATE('%d:%B:%g %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31:December:25 Tue |
FORMAT_DATE('%d:%b:%g %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31:Dec:25 Tue |
FORMAT_DATE('%d:%h:%g %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) :- The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31:Dec:25 Tue |
FORMAT_DATE('%d.%m.%Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The year with century as a decimal number - Plus, day of the week abbreviated | 31.12.2024 Tue |
FORMAT_DATE('%d.%m.%E4Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - .- Four-character years (0001 ... 9999) - Plus, day of the week abbreviated | 31.12.2024 Tue |
FORMAT_DATE('%d.%m.%y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31.12.24 Tue |
FORMAT_DATE('%d.%m.%G %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31.12.2025 Tue |
FORMAT_DATE('%d.%m.%g %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31.12.25 Tue |
FORMAT_DATE('%d.%B.%Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - . The year with century as a decimal number - Plus, day of the week abbreviated | 31.December.2024 Tue |
FORMAT_DATE('%d.%b.%Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year with century as a decimal number - Plus, day of the week abbreviated | 31.Dec.2024 Tue |
FORMAT_DATE('%d.%h.%Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year with century as a decimal number - Plus, day of the week abbreviated | 31.Dec.2024 Tue |
FORMAT_DATE('%d.%B.%E4Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - . Four-character years (0001 ... 9999) - Plus, day of the week abbreviated | 31.December.2024 Tue |
FORMAT_DATE('%d.%b.%E4Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . Four-character years (0001 ... 9999) - Plus, day of the week abbreviated | 31.Dec.2024 Tue |
FORMAT_DATE('%d.%h.%E4Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . Four-character years (0001 ... 9999) - Plus, day of the week abbreviated | 31.Dec.2024 Tue |
FORMAT_DATE('%d.%B.%y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - . The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31.December.24 Tue |
FORMAT_DATE('%d.%b.%y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31.Dec.24 Tue |
FORMAT_DATE('%d.%h.%y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31.Dec.24 Tue |
FORMAT_DATE('%d.%B.%G %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - . The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31.December.2025 Tue |
FORMAT_DATE('%d.%b.%G %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31.Dec.2025 Tue |
FORMAT_DATE('%d.%h.%G %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31.Dec.2025 Tue |
FORMAT_DATE('%d.%B.%g %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31.December.25 Tue |
FORMAT_DATE('%d.%b.%g %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31.Dec.25 Tue |
FORMAT_DATE('%d.%h.%g %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) .- The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31.Dec.25 Tue |
FORMAT_DATE('%d %m %Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, day of the week abbreviated | 31 12 2024 Tue |
FORMAT_DATE('%d %m %E4Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 9999) - Plus, day of the week abbreviated | 31 12 2024 Tue |
FORMAT_DATE('%d %m %y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31 12 24 Tue |
FORMAT_DATE('%d %m %G %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31 12 2025 Tue |
FORMAT_DATE('%d %m %g %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31 12 25 Tue |
FORMAT_DATE('%d %B %Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The year with century as a decimal number - Plus, day of the week abbreviated | 31 December 2024 Tue |
FORMAT_DATE('%d %b %Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of the week abbreviated | 31 Dec 2024 Tue |
FORMAT_DATE('%d %h %Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of the week abbreviated | 31 Dec 2024 Tue |
FORMAT_DATE('%d %B %E4Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month Four-character years (0001 9999) - Plus, day of the week abbreviated | 31 December 2024 Tue |
FORMAT_DATE('%d %b %E4Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, day of the week abbreviated | 31 Dec 2024 Tue |
FORMAT_DATE('%d %h %E4Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, day of the week abbreviated | 31 Dec 2024 Tue |
FORMAT_DATE('%d %B %y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31 December 24 Tue |
FORMAT_DATE('%d %b %y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31 Dec 24 Tue |
FORMAT_DATE('%d %h %y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31 Dec 24 Tue |
FORMAT_DATE('%d %B %G %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31 December 2025 Tue |
FORMAT_DATE('%d %b %G %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31 Dec 2025 Tue |
FORMAT_DATE('%d %h %G %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31 Dec 2025 Tue |
FORMAT_DATE('%d %B %g %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) month The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31 December 25 Tue |
FORMAT_DATE('%d %b %g %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31 Dec 25 Tue |
FORMAT_DATE('%d %h %g %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31 Dec 25 Tue |
FORMAT_DATE('%d%m%Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, day of the week abbreviated | 31122024 Tue |
FORMAT_DATE('%d%m%E4Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 9999) - Plus, day of the week abbreviated | 31122024 Tue |
FORMAT_DATE('%d%m%y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 311224 Tue |
FORMAT_DATE('%d%m%G %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31122025 Tue |
FORMAT_DATE('%d%m%g %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 311225 Tue |
FORMAT_DATE('%d%B%Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The year with century as a decimal number - Plus, day of the week abbreviated | 31December2024 Tue |
FORMAT_DATE('%d%b%Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of the week abbreviated | 31Dec2024 Tue |
FORMAT_DATE('%d%h%Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, day of the week abbreviated | 31Dec2024 Tue |
FORMAT_DATE('%d%B%E4Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month Four-character years (0001 9999) - Plus, day of the week abbreviated | 31December2024 Tue |
FORMAT_DATE('%d%b%E4Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, day of the week abbreviated | 31Dec2024 Tue |
FORMAT_DATE('%d%h%E4Y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, day of the week abbreviated | 31Dec2024 Tue |
FORMAT_DATE('%d%B%y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31December24 Tue |
FORMAT_DATE('%d%b%y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31Dec24 Tue |
FORMAT_DATE('%d%h%y %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31Dec24 Tue |
FORMAT_DATE('%d%B%G %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31December2025 Tue |
FORMAT_DATE('%d%b%G %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31Dec2025 Tue |
FORMAT_DATE('%d%h%G %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31Dec2025 Tue |
FORMAT_DATE('%d%B%g %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) month The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31December25 Tue |
FORMAT_DATE('%d%b%g %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31Dec25 Tue |
FORMAT_DATE('%d%h%g %a', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) mon- The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31Dec25 Tue |
FORMAT_DATE('%d-%m-%Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, the quarter | 31-12-2024 Quarter 4 |
FORMAT_DATE('%d-%m-%E4Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 ... 9999) - Plus, the quarter | 31-12-2024 Quarter 4 |
FORMAT_DATE('%d-%m-%y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, the quarter | 31-12-24 Quarter 4 |
FORMAT_DATE('%d-%m-%G Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, the quarter | 31-12-2025 Quarter 4 |
FORMAT_DATE('%d-%m-%g Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31-12-25 Quarter 4 |
FORMAT_DATE('%d-%B-%Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The year with century as a decimal number - Plus, the quarter | 31-December-2024 Quarter 4 |
FORMAT_DATE('%d-%b-%Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the quarter | 31-Dec-2024 Quarter 4 |
FORMAT_DATE('%d-%h-%Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the quarter | 31-Dec-2024 Quarter 4 |
FORMAT_DATE('%d-%B-%E4Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - Four-character years (0001 ... 9999) - Plus, the quarter | 31-December-2024 Quarter 4 |
FORMAT_DATE('%d-%b-%E4Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 ... 9999) - Plus, the quarter | 31-Dec-2024 Quarter 4 |
FORMAT_DATE('%d-%h-%E4Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 ... 9999) - Plus, the quarter | 31-Dec-2024 Quarter 4 |
FORMAT_DATE('%d-%B-%y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The year without century as a decimal number (00-99) - Plus, the quarter | 31-December-24 Quarter 4 |
FORMAT_DATE('%d-%b-%y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the quarter | 31-Dec-24 Quarter 4 |
FORMAT_DATE('%d-%h-%y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the quarter | 31-Dec-24 Quarter 4 |
FORMAT_DATE('%d-%B-%G Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The ISO 8601 year with century as a decimal number - Plus, the quarter | 31-December-2025 Quarter 4 |
FORMAT_DATE('%d-%b-%G Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the quarter | 31-Dec-2025 Quarter 4 |
FORMAT_DATE('%d-%h-%G Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the quarter | 31-Dec-2025 Quarter 4 |
FORMAT_DATE('%d-%B-%g Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31-December-25 Quarter 4 |
FORMAT_DATE('%d-%b-%g Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31-Dec-25 Quarter 4 |
FORMAT_DATE('%d-%h-%g Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31-Dec-25 Quarter 4 |
FORMAT_DATE('%d/%m/%Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The year with century as a decimal number - Plus, the quarter | 31/12/2024 Quarter 4 |
FORMAT_DATE('%d/%m/%E4Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - /- Four-character years (0001 ... 9999) - Plus, the quarter | 31/12/2024 Quarter 4 |
FORMAT_DATE('%d/%m/%y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The year without century as a decimal number (00-99) - Plus, the quarter | 31/12/24 Quarter 4 |
FORMAT_DATE('%d/%m/%G Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The ISO 8601 year with century as a decimal number - Plus, the quarter | 31/12/2025 Quarter 4 |
FORMAT_DATE('%d/%m/%g Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31/12/25 Quarter 4 |
FORMAT_DATE('%d/%B/%Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - / The year with century as a decimal number - Plus, the quarter | 31/December/2024 Quarter 4 |
FORMAT_DATE('%d/%b/%Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year with century as a decimal number - Plus, the quarter | 31/Dec/2024 Quarter 4 |
FORMAT_DATE('%d/%h/%Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year with century as a decimal number - Plus, the quarter | 31/Dec/2024 Quarter 4 |
FORMAT_DATE('%d/%B/%E4Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - / Four-character years (0001 ... 9999) - Plus, the quarter | 31/December/2024 Quarter 4 |
FORMAT_DATE('%d/%b/%E4Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / Four-character years (0001 ... 9999) - Plus, the quarter | 31/Dec/2024 Quarter 4 |
FORMAT_DATE('%d/%h/%E4Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / Four-character years (0001 ... 9999) - Plus, the quarter | 31/Dec/2024 Quarter 4 |
FORMAT_DATE('%d/%B/%y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - / The year without century as a decimal number (00-99) - Plus, the quarter | 31/December/24 Quarter 4 |
FORMAT_DATE('%d/%b/%y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year without century as a decimal number (00-99) - Plus, the quarter | 31/Dec/24 Quarter 4 |
FORMAT_DATE('%d/%h/%y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year without century as a decimal number (00-99) - Plus, the quarter | 31/Dec/24 Quarter 4 |
FORMAT_DATE('%d/%B/%G Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - / The ISO 8601 year with century as a decimal number - Plus, the quarter | 31/December/2025 Quarter 4 |
FORMAT_DATE('%d/%b/%G Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The ISO 8601 year with century as a decimal number - Plus, the quarter | 31/Dec/2025 Quarter 4 |
FORMAT_DATE('%d/%h/%G Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The ISO 8601 year with century as a decimal number - Plus, the quarter | 31/Dec/2025 Quarter 4 |
FORMAT_DATE('%d/%B/%g Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31/December/25 Quarter 4 |
FORMAT_DATE('%d/%b/%g Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31/Dec/25 Quarter 4 |
FORMAT_DATE('%d/%h/%g Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) /- The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31/Dec/25 Quarter 4 |
FORMAT_DATE('%d:%m:%Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The year with century as a decimal number - Plus, the quarter | 31:12:2024 Quarter 4 |
FORMAT_DATE('%d:%m:%E4Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - :- Four-character years (0001 ... 9999) - Plus, the quarter | 31:12:2024 Quarter 4 |
FORMAT_DATE('%d:%m:%y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The year without century as a decimal number (00-99) - Plus, the quarter | 31:12:24 Quarter 4 |
FORMAT_DATE('%d:%m:%G Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The ISO 8601 year with century as a decimal number - Plus, the quarter | 31:12:2025 Quarter 4 |
FORMAT_DATE('%d:%m:%g Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31:12:25 Quarter 4 |
FORMAT_DATE('%d:%B:%Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - : The year with century as a decimal number - Plus, the quarter | 31:December:2024 Quarter 4 |
FORMAT_DATE('%d:%b:%Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year with century as a decimal number - Plus, the quarter | 31:Dec:2024 Quarter 4 |
FORMAT_DATE('%d:%h:%Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year with century as a decimal number - Plus, the quarter | 31:Dec:2024 Quarter 4 |
FORMAT_DATE('%d:%B:%E4Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - : Four-character years (0001 ... 9999) - Plus, the quarter | 31:December:2024 Quarter 4 |
FORMAT_DATE('%d:%b:%E4Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : Four-character years (0001 ... 9999) - Plus, the quarter | 31:Dec:2024 Quarter 4 |
FORMAT_DATE('%d:%h:%E4Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : Four-character years (0001 ... 9999) - Plus, the quarter | 31:Dec:2024 Quarter 4 |
FORMAT_DATE('%d:%B:%y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - : The year without century as a decimal number (00-99) - Plus, the quarter | 31:December:24 Quarter 4 |
FORMAT_DATE('%d:%b:%y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year without century as a decimal number (00-99) - Plus, the quarter | 31:Dec:24 Quarter 4 |
FORMAT_DATE('%d:%h:%y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year without century as a decimal number (00-99) - Plus, the quarter | 31:Dec:24 Quarter 4 |
FORMAT_DATE('%d:%B:%G Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - : The ISO 8601 year with century as a decimal number - Plus, the quarter | 31:December:2025 Quarter 4 |
FORMAT_DATE('%d:%b:%G Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The ISO 8601 year with century as a decimal number - Plus, the quarter | 31:Dec:2025 Quarter 4 |
FORMAT_DATE('%d:%h:%G Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The ISO 8601 year with century as a decimal number - Plus, the quarter | 31:Dec:2025 Quarter 4 |
FORMAT_DATE('%d:%B:%g Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31:December:25 Quarter 4 |
FORMAT_DATE('%d:%b:%g Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31:Dec:25 Quarter 4 |
FORMAT_DATE('%d:%h:%g Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) :- The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31:Dec:25 Quarter 4 |
FORMAT_DATE('%d.%m.%Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The year with century as a decimal number - Plus, the quarter | 31.12.2024 Quarter 4 |
FORMAT_DATE('%d.%m.%E4Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - .- Four-character years (0001 ... 9999) - Plus, the quarter | 31.12.2024 Quarter 4 |
FORMAT_DATE('%d.%m.%y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The year without century as a decimal number (00-99) - Plus, the quarter | 31.12.24 Quarter 4 |
FORMAT_DATE('%d.%m.%G Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The ISO 8601 year with century as a decimal number - Plus, the quarter | 31.12.2025 Quarter 4 |
FORMAT_DATE('%d.%m.%g Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31.12.25 Quarter 4 |
FORMAT_DATE('%d.%B.%Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - . The year with century as a decimal number - Plus, the quarter | 31.December.2024 Quarter 4 |
FORMAT_DATE('%d.%b.%Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year with century as a decimal number - Plus, the quarter | 31.Dec.2024 Quarter 4 |
FORMAT_DATE('%d.%h.%Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year with century as a decimal number - Plus, the quarter | 31.Dec.2024 Quarter 4 |
FORMAT_DATE('%d.%B.%E4Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - . Four-character years (0001 ... 9999) - Plus, the quarter | 31.December.2024 Quarter 4 |
FORMAT_DATE('%d.%b.%E4Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . Four-character years (0001 ... 9999) - Plus, the quarter | 31.Dec.2024 Quarter 4 |
FORMAT_DATE('%d.%h.%E4Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . Four-character years (0001 ... 9999) - Plus, the quarter | 31.Dec.2024 Quarter 4 |
FORMAT_DATE('%d.%B.%y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - . The year without century as a decimal number (00-99) - Plus, the quarter | 31.December.24 Quarter 4 |
FORMAT_DATE('%d.%b.%y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year without century as a decimal number (00-99) - Plus, the quarter | 31.Dec.24 Quarter 4 |
FORMAT_DATE('%d.%h.%y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year without century as a decimal number (00-99) - Plus, the quarter | 31.Dec.24 Quarter 4 |
FORMAT_DATE('%d.%B.%G Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - . The ISO 8601 year with century as a decimal number - Plus, the quarter | 31.December.2025 Quarter 4 |
FORMAT_DATE('%d.%b.%G Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The ISO 8601 year with century as a decimal number - Plus, the quarter | 31.Dec.2025 Quarter 4 |
FORMAT_DATE('%d.%h.%G Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The ISO 8601 year with century as a decimal number - Plus, the quarter | 31.Dec.2025 Quarter 4 |
FORMAT_DATE('%d.%B.%g Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31.December.25 Quarter 4 |
FORMAT_DATE('%d.%b.%g Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31.Dec.25 Quarter 4 |
FORMAT_DATE('%d.%h.%g Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) .- The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31.Dec.25 Quarter 4 |
FORMAT_DATE('%d %m %Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, the quarter | 31 12 2024 Quarter 4 |
FORMAT_DATE('%d %m %E4Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 9999) - Plus, the quarter | 31 12 2024 Quarter 4 |
FORMAT_DATE('%d %m %y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, the quarter | 31 12 24 Quarter 4 |
FORMAT_DATE('%d %m %G Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, the quarter | 31 12 2025 Quarter 4 |
FORMAT_DATE('%d %m %g Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31 12 25 Quarter 4 |
FORMAT_DATE('%d %B %Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The year with century as a decimal number - Plus, the quarter | 31 December 2024 Quarter 4 |
FORMAT_DATE('%d %b %Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the quarter | 31 Dec 2024 Quarter 4 |
FORMAT_DATE('%d %h %Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the quarter | 31 Dec 2024 Quarter 4 |
FORMAT_DATE('%d %B %E4Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month Four-character years (0001 9999) - Plus, the quarter | 31 December 2024 Quarter 4 |
FORMAT_DATE('%d %b %E4Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, the quarter | 31 Dec 2024 Quarter 4 |
FORMAT_DATE('%d %h %E4Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, the quarter | 31 Dec 2024 Quarter 4 |
FORMAT_DATE('%d %B %y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The year without century as a decimal number (00-99) - Plus, the quarter | 31 December 24 Quarter 4 |
FORMAT_DATE('%d %b %y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the quarter | 31 Dec 24 Quarter 4 |
FORMAT_DATE('%d %h %y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the quarter | 31 Dec 24 Quarter 4 |
FORMAT_DATE('%d %B %G Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The ISO 8601 year with century as a decimal number - Plus, the quarter | 31 December 2025 Quarter 4 |
FORMAT_DATE('%d %b %G Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the quarter | 31 Dec 2025 Quarter 4 |
FORMAT_DATE('%d %h %G Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the quarter | 31 Dec 2025 Quarter 4 |
FORMAT_DATE('%d %B %g Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) month The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31 December 25 Quarter 4 |
FORMAT_DATE('%d %b %g Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31 Dec 25 Quarter 4 |
FORMAT_DATE('%d %h %g Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31 Dec 25 Quarter 4 |
FORMAT_DATE('%d%m%Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, the quarter | 31122024 Quarter 4 |
FORMAT_DATE('%d%m%E4Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 9999) - Plus, the quarter | 31122024 Quarter 4 |
FORMAT_DATE('%d%m%y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, the quarter | 311224 Quarter 4 |
FORMAT_DATE('%d%m%G Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, the quarter | 31122025 Quarter 4 |
FORMAT_DATE('%d%m%g Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 311225 Quarter 4 |
FORMAT_DATE('%d%B%Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The year with century as a decimal number - Plus, the quarter | 31December2024 Quarter 4 |
FORMAT_DATE('%d%b%Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the quarter | 31Dec2024 Quarter 4 |
FORMAT_DATE('%d%h%Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the quarter | 31Dec2024 Quarter 4 |
FORMAT_DATE('%d%B%E4Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month Four-character years (0001 9999) - Plus, the quarter | 31December2024 Quarter 4 |
FORMAT_DATE('%d%b%E4Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, the quarter | 31Dec2024 Quarter 4 |
FORMAT_DATE('%d%h%E4Y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, the quarter | 31Dec2024 Quarter 4 |
FORMAT_DATE('%d%B%y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The year without century as a decimal number (00-99) - Plus, the quarter | 31December24 Quarter 4 |
FORMAT_DATE('%d%b%y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the quarter | 31Dec24 Quarter 4 |
FORMAT_DATE('%d%h%y Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the quarter | 31Dec24 Quarter 4 |
FORMAT_DATE('%d%B%G Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The ISO 8601 year with century as a decimal number - Plus, the quarter | 31December2025 Quarter 4 |
FORMAT_DATE('%d%b%G Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the quarter | 31Dec2025 Quarter 4 |
FORMAT_DATE('%d%h%G Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the quarter | 31Dec2025 Quarter 4 |
FORMAT_DATE('%d%B%g Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) month The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31December25 Quarter 4 |
FORMAT_DATE('%d%b%g Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31Dec25 Quarter 4 |
FORMAT_DATE('%d%h%g Quarter %Q', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) mon- The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31Dec25 Quarter 4 |
FORMAT_DATE('%d-%m-%Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31-12-2024 Week 52 |
FORMAT_DATE('%d-%m-%E4Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 ... 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31-12-2024 Week 52 |
FORMAT_DATE('%d-%m-%y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31-12-24 Week 52 |
FORMAT_DATE('%d-%m-%G Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31-12-2025 Week 52 |
FORMAT_DATE('%d-%m-%g Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31-12-25 Week 52 |
FORMAT_DATE('%d-%B-%Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31-December-2024 Week 52 |
FORMAT_DATE('%d-%b-%Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31-Dec-2024 Week 52 |
FORMAT_DATE('%d-%h-%Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31-Dec-2024 Week 52 |
FORMAT_DATE('%d-%B-%E4Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - Four-character years (0001 ... 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31-December-2024 Week 52 |
FORMAT_DATE('%d-%b-%E4Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 ... 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31-Dec-2024 Week 52 |
FORMAT_DATE('%d-%h-%E4Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 ... 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31-Dec-2024 Week 52 |
FORMAT_DATE('%d-%B-%y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31-December-24 Week 52 |
FORMAT_DATE('%d-%b-%y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31-Dec-24 Week 52 |
FORMAT_DATE('%d-%h-%y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31-Dec-24 Week 52 |
FORMAT_DATE('%d-%B-%G Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31-December-2025 Week 52 |
FORMAT_DATE('%d-%b-%G Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31-Dec-2025 Week 52 |
FORMAT_DATE('%d-%h-%G Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31-Dec-2025 Week 52 |
FORMAT_DATE('%d-%B-%g Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31-December-25 Week 52 |
FORMAT_DATE('%d-%b-%g Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31-Dec-25 Week 52 |
FORMAT_DATE('%d-%h-%g Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31-Dec-25 Week 52 |
FORMAT_DATE('%d/%m/%Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31/12/2024 Week 52 |
FORMAT_DATE('%d/%m/%E4Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - /- Four-character years (0001 ... 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31/12/2024 Week 52 |
FORMAT_DATE('%d/%m/%y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31/12/24 Week 52 |
FORMAT_DATE('%d/%m/%G Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31/12/2025 Week 52 |
FORMAT_DATE('%d/%m/%g Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31/12/25 Week 52 |
FORMAT_DATE('%d/%B/%Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - / The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31/December/2024 Week 52 |
FORMAT_DATE('%d/%b/%Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31/Dec/2024 Week 52 |
FORMAT_DATE('%d/%h/%Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31/Dec/2024 Week 52 |
FORMAT_DATE('%d/%B/%E4Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - / Four-character years (0001 ... 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31/December/2024 Week 52 |
FORMAT_DATE('%d/%b/%E4Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / Four-character years (0001 ... 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31/Dec/2024 Week 52 |
FORMAT_DATE('%d/%h/%E4Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / Four-character years (0001 ... 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31/Dec/2024 Week 52 |
FORMAT_DATE('%d/%B/%y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - / The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31/December/24 Week 52 |
FORMAT_DATE('%d/%b/%y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31/Dec/24 Week 52 |
FORMAT_DATE('%d/%h/%y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31/Dec/24 Week 52 |
FORMAT_DATE('%d/%B/%G Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - / The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31/December/2025 Week 52 |
FORMAT_DATE('%d/%b/%G Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31/Dec/2025 Week 52 |
FORMAT_DATE('%d/%h/%G Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31/Dec/2025 Week 52 |
FORMAT_DATE('%d/%B/%g Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31/December/25 Week 52 |
FORMAT_DATE('%d/%b/%g Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31/Dec/25 Week 52 |
FORMAT_DATE('%d/%h/%g Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) /- The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31/Dec/25 Week 52 |
FORMAT_DATE('%d:%m:%Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31:12:2024 Week 52 |
FORMAT_DATE('%d:%m:%E4Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - :- Four-character years (0001 ... 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31:12:2024 Week 52 |
FORMAT_DATE('%d:%m:%y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31:12:24 Week 52 |
FORMAT_DATE('%d:%m:%G Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31:12:2025 Week 52 |
FORMAT_DATE('%d:%m:%g Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31:12:25 Week 52 |
FORMAT_DATE('%d:%B:%Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - : The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31:December:2024 Week 52 |
FORMAT_DATE('%d:%b:%Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31:Dec:2024 Week 52 |
FORMAT_DATE('%d:%h:%Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31:Dec:2024 Week 52 |
FORMAT_DATE('%d:%B:%E4Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - : Four-character years (0001 ... 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31:December:2024 Week 52 |
FORMAT_DATE('%d:%b:%E4Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : Four-character years (0001 ... 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31:Dec:2024 Week 52 |
FORMAT_DATE('%d:%h:%E4Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : Four-character years (0001 ... 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31:Dec:2024 Week 52 |
FORMAT_DATE('%d:%B:%y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - : The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31:December:24 Week 52 |
FORMAT_DATE('%d:%b:%y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31:Dec:24 Week 52 |
FORMAT_DATE('%d:%h:%y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31:Dec:24 Week 52 |
FORMAT_DATE('%d:%B:%G Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - : The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31:December:2025 Week 52 |
FORMAT_DATE('%d:%b:%G Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31:Dec:2025 Week 52 |
FORMAT_DATE('%d:%h:%G Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31:Dec:2025 Week 52 |
FORMAT_DATE('%d:%B:%g Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31:December:25 Week 52 |
FORMAT_DATE('%d:%b:%g Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31:Dec:25 Week 52 |
FORMAT_DATE('%d:%h:%g Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) :- The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31:Dec:25 Week 52 |
FORMAT_DATE('%d.%m.%Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31.12.2024 Week 52 |
FORMAT_DATE('%d.%m.%E4Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - .- Four-character years (0001 ... 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31.12.2024 Week 52 |
FORMAT_DATE('%d.%m.%y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31.12.24 Week 52 |
FORMAT_DATE('%d.%m.%G Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31.12.2025 Week 52 |
FORMAT_DATE('%d.%m.%g Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31.12.25 Week 52 |
FORMAT_DATE('%d.%B.%Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - . The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31.December.2024 Week 52 |
FORMAT_DATE('%d.%b.%Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31.Dec.2024 Week 52 |
FORMAT_DATE('%d.%h.%Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31.Dec.2024 Week 52 |
FORMAT_DATE('%d.%B.%E4Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - . Four-character years (0001 ... 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31.December.2024 Week 52 |
FORMAT_DATE('%d.%b.%E4Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . Four-character years (0001 ... 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31.Dec.2024 Week 52 |
FORMAT_DATE('%d.%h.%E4Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . Four-character years (0001 ... 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31.Dec.2024 Week 52 |
FORMAT_DATE('%d.%B.%y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - . The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31.December.24 Week 52 |
FORMAT_DATE('%d.%b.%y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31.Dec.24 Week 52 |
FORMAT_DATE('%d.%h.%y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31.Dec.24 Week 52 |
FORMAT_DATE('%d.%B.%G Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - . The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31.December.2025 Week 52 |
FORMAT_DATE('%d.%b.%G Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31.Dec.2025 Week 52 |
FORMAT_DATE('%d.%h.%G Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31.Dec.2025 Week 52 |
FORMAT_DATE('%d.%B.%g Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31.December.25 Week 52 |
FORMAT_DATE('%d.%b.%g Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31.Dec.25 Week 52 |
FORMAT_DATE('%d.%h.%g Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) .- The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31.Dec.25 Week 52 |
FORMAT_DATE('%d %m %Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31 12 2024 Week 52 |
FORMAT_DATE('%d %m %E4Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31 12 2024 Week 52 |
FORMAT_DATE('%d %m %y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31 12 24 Week 52 |
FORMAT_DATE('%d %m %G Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31 12 2025 Week 52 |
FORMAT_DATE('%d %m %g Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31 12 25 Week 52 |
FORMAT_DATE('%d %B %Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31 December 2024 Week 52 |
FORMAT_DATE('%d %b %Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31 Dec 2024 Week 52 |
FORMAT_DATE('%d %h %Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31 Dec 2024 Week 52 |
FORMAT_DATE('%d %B %E4Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month Four-character years (0001 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31 December 2024 Week 52 |
FORMAT_DATE('%d %b %E4Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31 Dec 2024 Week 52 |
FORMAT_DATE('%d %h %E4Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31 Dec 2024 Week 52 |
FORMAT_DATE('%d %B %y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31 December 24 Week 52 |
FORMAT_DATE('%d %b %y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31 Dec 24 Week 52 |
FORMAT_DATE('%d %h %y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31 Dec 24 Week 52 |
FORMAT_DATE('%d %B %G Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31 December 2025 Week 52 |
FORMAT_DATE('%d %b %G Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31 Dec 2025 Week 52 |
FORMAT_DATE('%d %h %G Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31 Dec 2025 Week 52 |
FORMAT_DATE('%d %B %g Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) month The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31 December 25 Week 52 |
FORMAT_DATE('%d %b %g Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31 Dec 25 Week 52 |
FORMAT_DATE('%d %h %g Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31 Dec 25 Week 52 |
FORMAT_DATE('%d%m%Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31122024 Week 52 |
FORMAT_DATE('%d%m%E4Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31122024 Week 52 |
FORMAT_DATE('%d%m%y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 311224 Week 52 |
FORMAT_DATE('%d%m%G Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31122025 Week 52 |
FORMAT_DATE('%d%m%g Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 311225 Week 52 |
FORMAT_DATE('%d%B%Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31December2024 Week 52 |
FORMAT_DATE('%d%b%Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31Dec2024 Week 52 |
FORMAT_DATE('%d%h%Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31Dec2024 Week 52 |
FORMAT_DATE('%d%B%E4Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month Four-character years (0001 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31December2024 Week 52 |
FORMAT_DATE('%d%b%E4Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31Dec2024 Week 52 |
FORMAT_DATE('%d%h%E4Y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31Dec2024 Week 52 |
FORMAT_DATE('%d%B%y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31December24 Week 52 |
FORMAT_DATE('%d%b%y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31Dec24 Week 52 |
FORMAT_DATE('%d%h%y Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31Dec24 Week 52 |
FORMAT_DATE('%d%B%G Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31December2025 Week 52 |
FORMAT_DATE('%d%b%G Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31Dec2025 Week 52 |
FORMAT_DATE('%d%h%G Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31Dec2025 Week 52 |
FORMAT_DATE('%d%B%g Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) month The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31December25 Week 52 |
FORMAT_DATE('%d%b%g Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31Dec25 Week 52 |
FORMAT_DATE('%d%h%g Week %U', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) mon- The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31Dec25 Week 52 |
FORMAT_DATE('%d-%m-%Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31-12-2024 Week 53 |
FORMAT_DATE('%d-%m-%E4Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 ... 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31-12-2024 Week 53 |
FORMAT_DATE('%d-%m-%y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31-12-24 Week 53 |
FORMAT_DATE('%d-%m-%G Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31-12-2025 Week 53 |
FORMAT_DATE('%d-%m-%g Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31-12-25 Week 53 |
FORMAT_DATE('%d-%B-%Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31-December-2024 Week 53 |
FORMAT_DATE('%d-%b-%Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31-Dec-2024 Week 53 |
FORMAT_DATE('%d-%h-%Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31-Dec-2024 Week 53 |
FORMAT_DATE('%d-%B-%E4Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - Four-character years (0001 ... 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31-December-2024 Week 53 |
FORMAT_DATE('%d-%b-%E4Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 ... 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31-Dec-2024 Week 53 |
FORMAT_DATE('%d-%h-%E4Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 ... 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31-Dec-2024 Week 53 |
FORMAT_DATE('%d-%B-%y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31-December-24 Week 53 |
FORMAT_DATE('%d-%b-%y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31-Dec-24 Week 53 |
FORMAT_DATE('%d-%h-%y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31-Dec-24 Week 53 |
FORMAT_DATE('%d-%B-%G Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31-December-2025 Week 53 |
FORMAT_DATE('%d-%b-%G Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31-Dec-2025 Week 53 |
FORMAT_DATE('%d-%h-%G Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31-Dec-2025 Week 53 |
FORMAT_DATE('%d-%B-%g Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31-December-25 Week 53 |
FORMAT_DATE('%d-%b-%g Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31-Dec-25 Week 53 |
FORMAT_DATE('%d-%h-%g Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31-Dec-25 Week 53 |
FORMAT_DATE('%d/%m/%Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31/12/2024 Week 53 |
FORMAT_DATE('%d/%m/%E4Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - /- Four-character years (0001 ... 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31/12/2024 Week 53 |
FORMAT_DATE('%d/%m/%y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31/12/24 Week 53 |
FORMAT_DATE('%d/%m/%G Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31/12/2025 Week 53 |
FORMAT_DATE('%d/%m/%g Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31/12/25 Week 53 |
FORMAT_DATE('%d/%B/%Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - / The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31/December/2024 Week 53 |
FORMAT_DATE('%d/%b/%Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31/Dec/2024 Week 53 |
FORMAT_DATE('%d/%h/%Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31/Dec/2024 Week 53 |
FORMAT_DATE('%d/%B/%E4Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - / Four-character years (0001 ... 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31/December/2024 Week 53 |
FORMAT_DATE('%d/%b/%E4Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / Four-character years (0001 ... 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31/Dec/2024 Week 53 |
FORMAT_DATE('%d/%h/%E4Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / Four-character years (0001 ... 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31/Dec/2024 Week 53 |
FORMAT_DATE('%d/%B/%y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - / The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31/December/24 Week 53 |
FORMAT_DATE('%d/%b/%y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31/Dec/24 Week 53 |
FORMAT_DATE('%d/%h/%y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31/Dec/24 Week 53 |
FORMAT_DATE('%d/%B/%G Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - / The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31/December/2025 Week 53 |
FORMAT_DATE('%d/%b/%G Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31/Dec/2025 Week 53 |
FORMAT_DATE('%d/%h/%G Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31/Dec/2025 Week 53 |
FORMAT_DATE('%d/%B/%g Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31/December/25 Week 53 |
FORMAT_DATE('%d/%b/%g Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) / The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31/Dec/25 Week 53 |
FORMAT_DATE('%d/%h/%g Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) /- The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31/Dec/25 Week 53 |
FORMAT_DATE('%d:%m:%Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31:12:2024 Week 53 |
FORMAT_DATE('%d:%m:%E4Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - :- Four-character years (0001 ... 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31:12:2024 Week 53 |
FORMAT_DATE('%d:%m:%y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31:12:24 Week 53 |
FORMAT_DATE('%d:%m:%G Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31:12:2025 Week 53 |
FORMAT_DATE('%d:%m:%g Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31:12:25 Week 53 |
FORMAT_DATE('%d:%B:%Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - : The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31:December:2024 Week 53 |
FORMAT_DATE('%d:%b:%Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31:Dec:2024 Week 53 |
FORMAT_DATE('%d:%h:%Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31:Dec:2024 Week 53 |
FORMAT_DATE('%d:%B:%E4Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - : Four-character years (0001 ... 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31:December:2024 Week 53 |
FORMAT_DATE('%d:%b:%E4Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : Four-character years (0001 ... 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31:Dec:2024 Week 53 |
FORMAT_DATE('%d:%h:%E4Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : Four-character years (0001 ... 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31:Dec:2024 Week 53 |
FORMAT_DATE('%d:%B:%y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - : The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31:December:24 Week 53 |
FORMAT_DATE('%d:%b:%y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31:Dec:24 Week 53 |
FORMAT_DATE('%d:%h:%y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31:Dec:24 Week 53 |
FORMAT_DATE('%d:%B:%G Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - : The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31:December:2025 Week 53 |
FORMAT_DATE('%d:%b:%G Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31:Dec:2025 Week 53 |
FORMAT_DATE('%d:%h:%G Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31:Dec:2025 Week 53 |
FORMAT_DATE('%d:%B:%g Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31:December:25 Week 53 |
FORMAT_DATE('%d:%b:%g Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) : The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31:Dec:25 Week 53 |
FORMAT_DATE('%d:%h:%g Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) :- The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31:Dec:25 Week 53 |
FORMAT_DATE('%d.%m.%Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31.12.2024 Week 53 |
FORMAT_DATE('%d.%m.%E4Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - .- Four-character years (0001 ... 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31.12.2024 Week 53 |
FORMAT_DATE('%d.%m.%y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31.12.24 Week 53 |
FORMAT_DATE('%d.%m.%G Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31.12.2025 Week 53 |
FORMAT_DATE('%d.%m.%g Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31.12.25 Week 53 |
FORMAT_DATE('%d.%B.%Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - . The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31.December.2024 Week 53 |
FORMAT_DATE('%d.%b.%Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31.Dec.2024 Week 53 |
FORMAT_DATE('%d.%h.%Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31.Dec.2024 Week 53 |
FORMAT_DATE('%d.%B.%E4Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - . Four-character years (0001 ... 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31.December.2024 Week 53 |
FORMAT_DATE('%d.%b.%E4Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . Four-character years (0001 ... 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31.Dec.2024 Week 53 |
FORMAT_DATE('%d.%h.%E4Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . Four-character years (0001 ... 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31.Dec.2024 Week 53 |
FORMAT_DATE('%d.%B.%y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - . The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31.December.24 Week 53 |
FORMAT_DATE('%d.%b.%y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31.Dec.24 Week 53 |
FORMAT_DATE('%d.%h.%y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31.Dec.24 Week 53 |
FORMAT_DATE('%d.%B.%G Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - . The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31.December.2025 Week 53 |
FORMAT_DATE('%d.%b.%G Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31.Dec.2025 Week 53 |
FORMAT_DATE('%d.%h.%G Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31.Dec.2025 Week 53 |
FORMAT_DATE('%d.%B.%g Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31.December.25 Week 53 |
FORMAT_DATE('%d.%b.%g Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) . The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31.Dec.25 Week 53 |
FORMAT_DATE('%d.%h.%g Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) .- The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31.Dec.25 Week 53 |
FORMAT_DATE('%d %m %Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31 12 2024 Week 53 |
FORMAT_DATE('%d %m %E4Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31 12 2024 Week 53 |
FORMAT_DATE('%d %m %y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31 12 24 Week 53 |
FORMAT_DATE('%d %m %G Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31 12 2025 Week 53 |
FORMAT_DATE('%d %m %g Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31 12 25 Week 53 |
FORMAT_DATE('%d %B %Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31 December 2024 Week 53 |
FORMAT_DATE('%d %b %Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31 Dec 2024 Week 53 |
FORMAT_DATE('%d %h %Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31 Dec 2024 Week 53 |
FORMAT_DATE('%d %B %E4Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month Four-character years (0001 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31 December 2024 Week 53 |
FORMAT_DATE('%d %b %E4Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31 Dec 2024 Week 53 |
FORMAT_DATE('%d %h %E4Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31 Dec 2024 Week 53 |
FORMAT_DATE('%d %B %y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31 December 24 Week 53 |
FORMAT_DATE('%d %b %y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31 Dec 24 Week 53 |
FORMAT_DATE('%d %h %y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31 Dec 24 Week 53 |
FORMAT_DATE('%d %B %G Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31 December 2025 Week 53 |
FORMAT_DATE('%d %b %G Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31 Dec 2025 Week 53 |
FORMAT_DATE('%d %h %G Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31 Dec 2025 Week 53 |
FORMAT_DATE('%d %B %g Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) month The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31 December 25 Week 53 |
FORMAT_DATE('%d %b %g Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31 Dec 25 Week 53 |
FORMAT_DATE('%d %h %g Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31 Dec 25 Week 53 |
FORMAT_DATE('%d%m%Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31122024 Week 53 |
FORMAT_DATE('%d%m%E4Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - Four-character years (0001 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31122024 Week 53 |
FORMAT_DATE('%d%m%y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 311224 Week 53 |
FORMAT_DATE('%d%m%G Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31122025 Week 53 |
FORMAT_DATE('%d%m%g Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 311225 Week 53 |
FORMAT_DATE('%d%B%Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31December2024 Week 53 |
FORMAT_DATE('%d%b%Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31Dec2024 Week 53 |
FORMAT_DATE('%d%h%Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31Dec2024 Week 53 |
FORMAT_DATE('%d%B%E4Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month Four-character years (0001 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31December2024 Week 53 |
FORMAT_DATE('%d%b%E4Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31Dec2024 Week 53 |
FORMAT_DATE('%d%h%E4Y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - Four-character years (0001 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31Dec2024 Week 53 |
FORMAT_DATE('%d%B%y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31December24 Week 53 |
FORMAT_DATE('%d%b%y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31Dec24 Week 53 |
FORMAT_DATE('%d%h%y Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31Dec24 Week 53 |
FORMAT_DATE('%d%B%G Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31December2025 Week 53 |
FORMAT_DATE('%d%b%G Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31Dec2025 Week 53 |
FORMAT_DATE('%d%h%G Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31Dec2025 Week 53 |
FORMAT_DATE('%d%B%g Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) month The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31December25 Week 53 |
FORMAT_DATE('%d%b%g Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31Dec25 Week 53 |
FORMAT_DATE('%d%h%g Week %W', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) mon- The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31Dec25 Week 53 |
FORMAT_DATE('%d-%m-%Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-12-2024 ISO Week 01 |
FORMAT_DATE('%d-%m-%E4Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - iso- Four-character years (0001 ... 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-12-2024 ISO Week 01 |
FORMAT_DATE('%d-%m-%y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-12-24 ISO Week 01 |
FORMAT_DATE('%d-%m-%G ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-12-2025 ISO Week 01 |
FORMAT_DATE('%d-%m-%g ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) - iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-12-25 ISO Week 01 |
FORMAT_DATE('%d-%B-%Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-December-2024 ISO Week 01 |
FORMAT_DATE('%d-%b-%Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-Dec-2024 ISO Week 01 |
FORMAT_DATE('%d-%h-%Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-Dec-2024 ISO Week 01 |
FORMAT_DATE('%d-%B-%E4Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - iso- Four-character years (0001 ... 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-December-2024 ISO Week 01 |
FORMAT_DATE('%d-%b-%E4Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- Four-character years (0001 ... 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-Dec-2024 ISO Week 01 |
FORMAT_DATE('%d-%h-%E4Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- Four-character years (0001 ... 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-Dec-2024 ISO Week 01 |
FORMAT_DATE('%d-%B-%y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-December-24 ISO Week 01 |
FORMAT_DATE('%d-%b-%y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-Dec-24 ISO Week 01 |
FORMAT_DATE('%d-%h-%y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-Dec-24 ISO Week 01 |
FORMAT_DATE('%d-%B-%G ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-December-2025 ISO Week 01 |
FORMAT_DATE('%d-%b-%G ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-Dec-2025 ISO Week 01 |
FORMAT_DATE('%d-%h-%G ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-Dec-2025 ISO Week 01 |
FORMAT_DATE('%d-%B-%g ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) - iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-December-25 ISO Week 01 |
FORMAT_DATE('%d-%b-%g ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-Dec-25 ISO Week 01 |
FORMAT_DATE('%d-%h-%g ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) - iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-Dec-25 ISO Week 01 |
FORMAT_DATE('%d/%m/%Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/12/2024 ISO Week 01 |
FORMAT_DATE('%d/%m/%E4Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - /- iso- Four-character years (0001 ... 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/12/2024 ISO Week 01 |
FORMAT_DATE('%d/%m/%y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/12/24 ISO Week 01 |
FORMAT_DATE('%d/%m/%G ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - / iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/12/2025 ISO Week 01 |
FORMAT_DATE('%d/%m/%g ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) / iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/12/25 ISO Week 01 |
FORMAT_DATE('%d/%B/%Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - / iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/December/2024 ISO Week 01 |
FORMAT_DATE('%d/%b/%Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/Dec/2024 ISO Week 01 |
FORMAT_DATE('%d/%h/%Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/Dec/2024 ISO Week 01 |
FORMAT_DATE('%d/%B/%E4Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - / iso- Four-character years (0001 ... 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/December/2024 ISO Week 01 |
FORMAT_DATE('%d/%b/%E4Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / iso- Four-character years (0001 ... 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/Dec/2024 ISO Week 01 |
FORMAT_DATE('%d/%h/%E4Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / iso- Four-character years (0001 ... 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/Dec/2024 ISO Week 01 |
FORMAT_DATE('%d/%B/%y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - / iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/December/24 ISO Week 01 |
FORMAT_DATE('%d/%b/%y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/Dec/24 ISO Week 01 |
FORMAT_DATE('%d/%h/%y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/Dec/24 ISO Week 01 |
FORMAT_DATE('%d/%B/%G ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - / iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/December/2025 ISO Week 01 |
FORMAT_DATE('%d/%b/%G ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/Dec/2025 ISO Week 01 |
FORMAT_DATE('%d/%h/%G ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - / iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/Dec/2025 ISO Week 01 |
FORMAT_DATE('%d/%B/%g ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) / iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/December/25 ISO Week 01 |
FORMAT_DATE('%d/%b/%g ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) / iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/Dec/25 ISO Week 01 |
FORMAT_DATE('%d/%h/%g ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) /- iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/Dec/25 ISO Week 01 |
FORMAT_DATE('%d:%m:%Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:12:2024 ISO Week 01 |
FORMAT_DATE('%d:%m:%E4Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - :- iso- Four-character years (0001 ... 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:12:2024 ISO Week 01 |
FORMAT_DATE('%d:%m:%y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:12:24 ISO Week 01 |
FORMAT_DATE('%d:%m:%G ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - : iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:12:2025 ISO Week 01 |
FORMAT_DATE('%d:%m:%g ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) : iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:12:25 ISO Week 01 |
FORMAT_DATE('%d:%B:%Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - : iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:December:2024 ISO Week 01 |
FORMAT_DATE('%d:%b:%Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:Dec:2024 ISO Week 01 |
FORMAT_DATE('%d:%h:%Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:Dec:2024 ISO Week 01 |
FORMAT_DATE('%d:%B:%E4Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - : iso- Four-character years (0001 ... 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:December:2024 ISO Week 01 |
FORMAT_DATE('%d:%b:%E4Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : iso- Four-character years (0001 ... 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:Dec:2024 ISO Week 01 |
FORMAT_DATE('%d:%h:%E4Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : iso- Four-character years (0001 ... 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:Dec:2024 ISO Week 01 |
FORMAT_DATE('%d:%B:%y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - : iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:December:24 ISO Week 01 |
FORMAT_DATE('%d:%b:%y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:Dec:24 ISO Week 01 |
FORMAT_DATE('%d:%h:%y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:Dec:24 ISO Week 01 |
FORMAT_DATE('%d:%B:%G ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - : iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:December:2025 ISO Week 01 |
FORMAT_DATE('%d:%b:%G ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:Dec:2025 ISO Week 01 |
FORMAT_DATE('%d:%h:%G ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - : iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:Dec:2025 ISO Week 01 |
FORMAT_DATE('%d:%B:%g ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) : iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:December:25 ISO Week 01 |
FORMAT_DATE('%d:%b:%g ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) : iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:Dec:25 ISO Week 01 |
FORMAT_DATE('%d:%h:%g ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) :- iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:Dec:25 ISO Week 01 |
FORMAT_DATE('%d.%m.%Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.12.2024 ISO Week 01 |
FORMAT_DATE('%d.%m.%E4Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - .- iso- Four-character years (0001 ... 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.12.2024 ISO Week 01 |
FORMAT_DATE('%d.%m.%y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.12.24 ISO Week 01 |
FORMAT_DATE('%d.%m.%G ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - . iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.12.2025 ISO Week 01 |
FORMAT_DATE('%d.%m.%g ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) . iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.12.25 ISO Week 01 |
FORMAT_DATE('%d.%B.%Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - . iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.December.2024 ISO Week 01 |
FORMAT_DATE('%d.%b.%Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.Dec.2024 ISO Week 01 |
FORMAT_DATE('%d.%h.%Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.Dec.2024 ISO Week 01 |
FORMAT_DATE('%d.%B.%E4Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - . iso- Four-character years (0001 ... 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.December.2024 ISO Week 01 |
FORMAT_DATE('%d.%b.%E4Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . iso- Four-character years (0001 ... 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.Dec.2024 ISO Week 01 |
FORMAT_DATE('%d.%h.%E4Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . iso- Four-character years (0001 ... 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.Dec.2024 ISO Week 01 |
FORMAT_DATE('%d.%B.%y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - . iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.December.24 ISO Week 01 |
FORMAT_DATE('%d.%b.%y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.Dec.24 ISO Week 01 |
FORMAT_DATE('%d.%h.%y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.Dec.24 ISO Week 01 |
FORMAT_DATE('%d.%B.%G ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - . iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.December.2025 ISO Week 01 |
FORMAT_DATE('%d.%b.%G ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.Dec.2025 ISO Week 01 |
FORMAT_DATE('%d.%h.%G ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - . iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.Dec.2025 ISO Week 01 |
FORMAT_DATE('%d.%B.%g ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) . iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.December.25 ISO Week 01 |
FORMAT_DATE('%d.%b.%g ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) . iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.Dec.25 ISO Week 01 |
FORMAT_DATE('%d.%h.%g ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) .- iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.Dec.25 ISO Week 01 |
FORMAT_DATE('%d %m %Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 12 2024 ISO Week 01 |
FORMAT_DATE('%d %m %E4Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - iso- Four-character years (0001 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 12 2024 ISO Week 01 |
FORMAT_DATE('%d %m %y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 12 24 ISO Week 01 |
FORMAT_DATE('%d %m %G ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 12 2025 ISO Week 01 |
FORMAT_DATE('%d %m %g ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 12 25 ISO Week 01 |
FORMAT_DATE('%d %B %Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 December 2024 ISO Week 01 |
FORMAT_DATE('%d %b %Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 Dec 2024 ISO Week 01 |
FORMAT_DATE('%d %h %Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 Dec 2024 ISO Week 01 |
FORMAT_DATE('%d %B %E4Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month iso- Four-character years (0001 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 December 2024 ISO Week 01 |
FORMAT_DATE('%d %b %E4Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- Four-character years (0001 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 Dec 2024 ISO Week 01 |
FORMAT_DATE('%d %h %E4Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- Four-character years (0001 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 Dec 2024 ISO Week 01 |
FORMAT_DATE('%d %B %y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 December 24 ISO Week 01 |
FORMAT_DATE('%d %b %y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 Dec 24 ISO Week 01 |
FORMAT_DATE('%d %h %y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 Dec 24 ISO Week 01 |
FORMAT_DATE('%d %B %G ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 December 2025 ISO Week 01 |
FORMAT_DATE('%d %b %G ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 Dec 2025 ISO Week 01 |
FORMAT_DATE('%d %h %G ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 Dec 2025 ISO Week 01 |
FORMAT_DATE('%d %B %g ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) month iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 December 25 ISO Week 01 |
FORMAT_DATE('%d %b %g ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 Dec 25 ISO Week 01 |
FORMAT_DATE('%d %h %g ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 Dec 25 ISO Week 01 |
FORMAT_DATE('%d%m%Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31122024 ISO Week 01 |
FORMAT_DATE('%d%m%E4Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - iso- Four-character years (0001 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31122024 ISO Week 01 |
FORMAT_DATE('%d%m%y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 311224 ISO Week 01 |
FORMAT_DATE('%d%m%G ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31122025 ISO Week 01 |
FORMAT_DATE('%d%m%g ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The month as a decimal number (01-12) - The day of the month as a decimal number (01-31) iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 311225 ISO Week 01 |
FORMAT_DATE('%d%B%Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31December2024 ISO Week 01 |
FORMAT_DATE('%d%b%Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31Dec2024 ISO Week 01 |
FORMAT_DATE('%d%h%Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31Dec2024 ISO Week 01 |
FORMAT_DATE('%d%B%E4Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month iso- Four-character years (0001 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31December2024 ISO Week 01 |
FORMAT_DATE('%d%b%E4Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- Four-character years (0001 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31Dec2024 ISO Week 01 |
FORMAT_DATE('%d%h%E4Y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- Four-character years (0001 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31Dec2024 ISO Week 01 |
FORMAT_DATE('%d%B%y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31December24 ISO Week 01 |
FORMAT_DATE('%d%b%y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31Dec24 ISO Week 01 |
FORMAT_DATE('%d%h%y ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31Dec24 ISO Week 01 |
FORMAT_DATE('%d%B%G ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - month iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31December2025 ISO Week 01 |
FORMAT_DATE('%d%b%G ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31Dec2025 ISO Week 01 |
FORMAT_DATE('%d%h%G ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - iso- The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31Dec2025 ISO Week 01 |
FORMAT_DATE('%d%B%g ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The full month name - The day of the month as a decimal number (01-31) month iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31December25 ISO Week 01 |
FORMAT_DATE('%d%b%g ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31)iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31Dec25 ISO Week 01 |
FORMAT_DATE('%d%h%g ISO Week %V', DATE '2024-12-31') -- The day of the month as a decimal number (01-31) - The abbreviated month name - The day of the month as a decimal number (01-31) mon- iso- The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31Dec25 ISO Week 01 |
FORMAT_DATE('%e-%m-%Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -The year with century as a decimal number | 31-12-2024 |
FORMAT_DATE('%e-%m-%E4Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -Four-character years (0001 . 9999) | 31-12-2024 |
FORMAT_DATE('%e-%m-%y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -The year without century as a decimal number (00-99) | 31-12-24 |
FORMAT_DATE('%e-%m-%G', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -The ISO 8601 year with century as a decimal number | 31-12-2025 |
FORMAT_DATE('%e-%m-%g', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -The ISO 8601 year without century as a decimal number (00-99) | 31-12-25 |
FORMAT_DATE('%e-%B-%Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -The year with century as a decimal number | 31-December-2024 |
FORMAT_DATE('%e-%b-%Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number | 31-Dec-2024 |
FORMAT_DATE('%e-%h-%Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name dd The year with century as a decimal number | 31-Dec-2024 |
FORMAT_DATE('%e-%B-%E4Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -Four-character years (0001 . 9999) | 31-December-2024 |
FORMAT_DATE('%e-%b-%E4Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) | 31-Dec-2024 |
FORMAT_DATE('%e-%h-%E4Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) | 31-Dec-2024 |
FORMAT_DATE('%e-%B-%y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -The year without century as a decimal number (00-99) | 31-December-24 |
FORMAT_DATE('%e-%b-%y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) | 31-Dec-24 |
FORMAT_DATE('%e-%h-%y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) | 31-Dec-24 |
FORMAT_DATE('%e-%B-%G', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -The ISO 8601 year with century as a decimal number | 31-December-2025 |
FORMAT_DATE('%e-%b-%G', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number | 31-Dec-2025 |
FORMAT_DATE('%e-%h-%G', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number | 31-Dec-2025 |
FORMAT_DATE('%e-%B-%g', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -The ISO 8601 year without century as a decimal number (00-99) | 31-December-25 |
FORMAT_DATE('%e-%b-%g', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) | 31-Dec-25 |
FORMAT_DATE('%e-%h-%g', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) | 31-Dec-25 |
FORMAT_DATE('%e-%m-%Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -The year with century as a decimal number - Plus, day of year | 31-12-2024 Day 366 |
FORMAT_DATE('%e-%m-%E4Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -Four-character years (0001 . 9999) - Plus, day of year | 31-12-2024 Day 366 |
FORMAT_DATE('%e-%m-%y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -The year without century as a decimal number (00-99) - Plus, day of year | 31-12-24 Day 366 |
FORMAT_DATE('%e-%m-%G Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -The ISO 8601 year with century as a decimal number - Plus, day of year | 31-12-2025 Day 366 |
FORMAT_DATE('%e-%m-%g Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31-12-25 Day 366 |
FORMAT_DATE('%e-%B-%Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -The year with century as a decimal number - Plus, day of year | 31-December-2024 Day 366 |
FORMAT_DATE('%e-%b-%Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of year | 31-Dec-2024 Day 366 |
FORMAT_DATE('%e-%h-%Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name dd The year with century as a decimal number - Plus, day of year | 31-Dec-2024 Day 366 |
FORMAT_DATE('%e-%B-%E4Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -Four-character years (0001 . 9999) - Plus, day of year | 31-December-2024 Day 366 |
FORMAT_DATE('%e-%b-%E4Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of year | 31-Dec-2024 Day 366 |
FORMAT_DATE('%e-%h-%E4Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of year | 31-Dec-2024 Day 366 |
FORMAT_DATE('%e-%B-%y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -The year without century as a decimal number (00-99) - Plus, day of year | 31-December-24 Day 366 |
FORMAT_DATE('%e-%b-%y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of year | 31-Dec-24 Day 366 |
FORMAT_DATE('%e-%h-%y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of year | 31-Dec-24 Day 366 |
FORMAT_DATE('%e-%B-%G Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -The ISO 8601 year with century as a decimal number - Plus, day of year | 31-December-2025 Day 366 |
FORMAT_DATE('%e-%b-%G Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of year | 31-Dec-2025 Day 366 |
FORMAT_DATE('%e-%h-%G Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of year | 31-Dec-2025 Day 366 |
FORMAT_DATE('%e-%B-%g Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31-December-25 Day 366 |
FORMAT_DATE('%e-%b-%g Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31-Dec-25 Day 366 |
FORMAT_DATE('%e-%h-%g Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31-Dec-25 Day 366 |
FORMAT_DATE('%e/%m/%Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number | 31/12/2024 |
FORMAT_DATE('%e/%m/%E4Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) | 31/12/2024 |
FORMAT_DATE('%e/%m/%y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) | 31/12/24 |
FORMAT_DATE('%e/%m/%G', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number | 31/12/2025 |
FORMAT_DATE('%e/%m/%g', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) | 31/12/25 |
FORMAT_DATE('%e/%B/%Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/The year with century as a decimal number | 31/December/2024 |
FORMAT_DATE('%e/%b/%Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number | 31/Dec/2024 |
FORMAT_DATE('%e/%h/%Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name dd The year with century as a decimal number | 31/Dec/2024 |
FORMAT_DATE('%e/%B/%E4Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/Four-character years (0001 . 9999) | 31/December/2024 |
FORMAT_DATE('%e/%b/%E4Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) | 31/Dec/2024 |
FORMAT_DATE('%e/%h/%E4Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) | 31/Dec/2024 |
FORMAT_DATE('%e/%B/%y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/The year without century as a decimal number (00-99) | 31/December/24 |
FORMAT_DATE('%e/%b/%y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) | 31/Dec/24 |
FORMAT_DATE('%e/%h/%y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) | 31/Dec/24 |
FORMAT_DATE('%e/%B/%G', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/-The ISO 8601 year with century as a decimal number | 31/December/2025 |
FORMAT_DATE('%e/%b/%G', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name -The ISO 8601 year with century as a decimal number | 31/Dec/2025 |
FORMAT_DATE('%e/%h/%G', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number | 31/Dec/2025 |
FORMAT_DATE('%e/%B/%g', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/The ISO 8601 year without century as a decimal number (00-99) | 31/December/25 |
FORMAT_DATE('%e/%b/%g', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) | 31/Dec/25 |
FORMAT_DATE('%e/%h/%g', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) | 31/Dec/25 |
FORMAT_DATE('%e/%m/%Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, day of year | 31/12/2024 Day 366 |
FORMAT_DATE('%e/%m/%E4Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) - Plus, day of year | 31/12/2024 Day 366 |
FORMAT_DATE('%e/%m/%y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, day of year | 31/12/24 Day 366 |
FORMAT_DATE('%e/%m/%G Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, day of year | 31/12/2025 Day 366 |
FORMAT_DATE('%e/%m/%g Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31/12/25 Day 366 |
FORMAT_DATE('%e/%B/%Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/The year with century as a decimal number - Plus, day of year | 31/December/2024 Day 366 |
FORMAT_DATE('%e/%b/%Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of year | 31/Dec/2024 Day 366 |
FORMAT_DATE('%e/%h/%Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of year | 31/Dec/2024 Day 366 |
FORMAT_DATE('%e/%B/%E4Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/Four-character years (0001 . 9999) - Plus, day of year | 31/December/2024 Day 366 |
FORMAT_DATE('%e/%b/%E4Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of year | 31/Dec/2024 Day 366 |
FORMAT_DATE('%e/%h/%E4Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of year | 31/Dec/2024 Day 366 |
FORMAT_DATE('%e/%B/%y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/The year without century as a decimal number (00-99) - Plus, day of year | 31/December/24 Day 366 |
FORMAT_DATE('%e/%b/%y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of year | 31/Dec/24 Day 366 |
FORMAT_DATE('%e/%h/%y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of year | 31/Dec/24 Day 366 |
FORMAT_DATE('%e/%B/%G Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/The ISO 8601 year with century as a decimal number - Plus, day of year | 31/December/2025 Day 366 |
FORMAT_DATE('%e/%b/%G Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of year | 31/Dec/2025 Day 366 |
FORMAT_DATE('%e/%h/%G Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of year | 31/Dec/2025 Day 366 |
FORMAT_DATE('%e/%B/%g Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31/December/25 Day 366 |
FORMAT_DATE('%e/%b/%g Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31/Dec/25 Day 366 |
FORMAT_DATE('%e/%h/%g Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31/Dec/25 Day 366 |
FORMAT_DATE('%e:%m:%Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number | 31:12:2024 |
FORMAT_DATE('%e:%m:%E4Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) | 31:12:2024 |
FORMAT_DATE('%e:%m:%y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) | 31:12:24 |
FORMAT_DATE('%e:%m:%G', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number | 31:12:2025 |
FORMAT_DATE('%e:%m:%g', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) | 31:12:25 |
FORMAT_DATE('%e:%B:%Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:The year with century as a decimal number | 31:December:2024 |
FORMAT_DATE('%e:%b:%Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number | 31:Dec:2024 |
FORMAT_DATE('%e:%h:%Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name dd The year with century as a decimal number | 31:Dec:2024 |
FORMAT_DATE('%e:%B:%E4Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:Four-character years (0001 . 9999) | 31:December:2024 |
FORMAT_DATE('%e:%b:%E4Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) | 31:Dec:2024 |
FORMAT_DATE('%e:%h:%E4Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) | 31:Dec:2024 |
FORMAT_DATE('%e:%B:%y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:The year without century as a decimal number (00-99) | 31:December:24 |
FORMAT_DATE('%e:%b:%y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) | 31:Dec:24 |
FORMAT_DATE('%e:%h:%y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) | 31:Dec:24 |
FORMAT_DATE('%e:%B:%G', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:-The ISO 8601 year with century as a decimal number | 31:December:2025 |
FORMAT_DATE('%e:%b:%G', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name -The ISO 8601 year with century as a decimal number | 31:Dec:2025 |
FORMAT_DATE('%e:%h:%G', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number | 31:Dec:2025 |
FORMAT_DATE('%e:%B:%g', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:The ISO 8601 year without century as a decimal number (00-99) | 31:December:25 |
FORMAT_DATE('%e:%b:%g', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) | 31:Dec:25 |
FORMAT_DATE('%e:%h:%g', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) | 31:Dec:25 |
FORMAT_DATE('%e:%m:%Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, day of year | 31:12:2024 Day 366 |
FORMAT_DATE('%e:%m:%E4Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) - Plus, day of year | 31:12:2024 Day 366 |
FORMAT_DATE('%e:%m:%y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, day of year | 31:12:24 Day 366 |
FORMAT_DATE('%e:%m:%G Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, day of year | 31:12:2025 Day 366 |
FORMAT_DATE('%e:%m:%g Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31:12:25 Day 366 |
FORMAT_DATE('%e:%B:%Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:The year with century as a decimal number - Plus, day of year | 31:December:2024 Day 366 |
FORMAT_DATE('%e:%b:%Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of year | 31:Dec:2024 Day 366 |
FORMAT_DATE('%e:%h:%Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of year | 31:Dec:2024 Day 366 |
FORMAT_DATE('%e:%B:%E4Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:Four-character years (0001 . 9999) - Plus, day of year | 31:December:2024 Day 366 |
FORMAT_DATE('%e:%b:%E4Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of year | 31:Dec:2024 Day 366 |
FORMAT_DATE('%e:%h:%E4Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of year | 31:Dec:2024 Day 366 |
FORMAT_DATE('%e:%B:%y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:The year without century as a decimal number (00-99) - Plus, day of year | 31:December:24 Day 366 |
FORMAT_DATE('%e:%b:%y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of year | 31:Dec:24 Day 366 |
FORMAT_DATE('%e:%h:%y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of year | 31:Dec:24 Day 366 |
FORMAT_DATE('%e:%B:%G Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:The ISO 8601 year with century as a decimal number - Plus, day of year | 31:December:2025 Day 366 |
FORMAT_DATE('%e:%b:%G Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of year | 31:Dec:2025 Day 366 |
FORMAT_DATE('%e:%h:%G Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of year | 31:Dec:2025 Day 366 |
FORMAT_DATE('%e:%B:%g Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31:December:25 Day 366 |
FORMAT_DATE('%e:%b:%g Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31:Dec:25 Day 366 |
FORMAT_DATE('%e:%h:%g Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31:Dec:25 Day 366 |
FORMAT_DATE('%e.%m.%Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number | 31.12.2024 |
FORMAT_DATE('%e.%m.%E4Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) | 31.12.2024 |
FORMAT_DATE('%e.%m.%y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) | 31.12.24 |
FORMAT_DATE('%e.%m.%G', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number | 31.12.2025 |
FORMAT_DATE('%e.%m.%g', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) | 31.12.25 |
FORMAT_DATE('%e.%B.%Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.The year with century as a decimal number | 31.December.2024 |
FORMAT_DATE('%e.%b.%Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number | 31.Dec.2024 |
FORMAT_DATE('%e.%h.%Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name dd The year with century as a decimal number | 31.Dec.2024 |
FORMAT_DATE('%e.%B.%E4Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.Four-character years (0001 . 9999) | 31.December.2024 |
FORMAT_DATE('%e.%b.%E4Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) | 31.Dec.2024 |
FORMAT_DATE('%e.%h.%E4Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) | 31.Dec.2024 |
FORMAT_DATE('%e.%B.%y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.The year without century as a decimal number (00-99) | 31.December.24 |
FORMAT_DATE('%e.%b.%y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) | 31.Dec.24 |
FORMAT_DATE('%e.%h.%y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) | 31.Dec.24 |
FORMAT_DATE('%e.%B.%G', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.-The ISO 8601 year with century as a decimal number | 31.December.2025 |
FORMAT_DATE('%e.%b.%G', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name -The ISO 8601 year with century as a decimal number | 31.Dec.2025 |
FORMAT_DATE('%e.%h.%G', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number | 31.Dec.2025 |
FORMAT_DATE('%e.%B.%g', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.The ISO 8601 year without century as a decimal number (00-99) | 31.December.25 |
FORMAT_DATE('%e.%b.%g', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) | 31.Dec.25 |
FORMAT_DATE('%e.%h.%g', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) | 31.Dec.25 |
FORMAT_DATE('%e.%m.%Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, day of year | 31.12.2024 Day 366 |
FORMAT_DATE('%e.%m.%E4Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) - Plus, day of year | 31.12.2024 Day 366 |
FORMAT_DATE('%e.%m.%y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, day of year | 31.12.24 Day 366 |
FORMAT_DATE('%e.%m.%G Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, day of year | 31.12.2025 Day 366 |
FORMAT_DATE('%e.%m.%g Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31.12.25 Day 366 |
FORMAT_DATE('%e.%B.%Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.The year with century as a decimal number - Plus, day of year | 31.December.2024 Day 366 |
FORMAT_DATE('%e.%b.%Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of year | 31.Dec.2024 Day 366 |
FORMAT_DATE('%e.%h.%Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of year | 31.Dec.2024 Day 366 |
FORMAT_DATE('%e.%B.%E4Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.Four-character years (0001 . 9999) - Plus, day of year | 31.December.2024 Day 366 |
FORMAT_DATE('%e.%b.%E4Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of year | 31.Dec.2024 Day 366 |
FORMAT_DATE('%e.%h.%E4Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of year | 31.Dec.2024 Day 366 |
FORMAT_DATE('%e.%B.%y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.The year without century as a decimal number (00-99) - Plus, day of year | 31.December.24 Day 366 |
FORMAT_DATE('%e.%b.%y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of year | 31.Dec.24 Day 366 |
FORMAT_DATE('%e.%h.%y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of year | 31.Dec.24 Day 366 |
FORMAT_DATE('%e.%B.%G Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.The ISO 8601 year with century as a decimal number - Plus, day of year | 31.December.2025 Day 366 |
FORMAT_DATE('%e.%b.%G Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of year | 31.Dec.2025 Day 366 |
FORMAT_DATE('%e.%h.%G Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of year | 31.Dec.2025 Day 366 |
FORMAT_DATE('%e.%B.%g Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31.December.25 Day 366 |
FORMAT_DATE('%e.%b.%g Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31.Dec.25 Day 366 |
FORMAT_DATE('%e.%h.%g Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31.Dec.25 Day 366 |
FORMAT_DATE('%e %m %Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number | 31 12 2024 |
FORMAT_DATE('%e %m %E4Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 9999) | 31 12 2024 |
FORMAT_DATE('%e %m %y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) | 31 12 24 |
FORMAT_DATE('%e %m %G', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number | 31 12 2025 |
FORMAT_DATE('%e %m %g', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) | 31 12 25 |
FORMAT_DATE('%e %B %Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year with century as a decimal number | 31 December 2024 |
FORMAT_DATE('%e %b %Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number | 31 Dec 2024 |
FORMAT_DATE('%e %h %Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name dd The year with century as a decimal number | 31 Dec 2024 |
FORMAT_DATE('%e %B %E4Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month Four-character years (0001 9999) | 31 December 2024 |
FORMAT_DATE('%e %b %E4Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 9999) | 31 Dec 2024 |
FORMAT_DATE('%e %h %E4Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 9999) | 31 Dec 2024 |
FORMAT_DATE('%e %B %y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year without century as a decimal number (00-99) | 31 December 24 |
FORMAT_DATE('%e %b %y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) | 31 Dec 24 |
FORMAT_DATE('%e %h %y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) | 31 Dec 24 |
FORMAT_DATE('%e %B %G', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month -The ISO 8601 year with century as a decimal number | 31 December 2025 |
FORMAT_DATE('%e %b %G', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name -The ISO 8601 year with century as a decimal number | 31 Dec 2025 |
FORMAT_DATE('%e %h %G', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number | 31 Dec 2025 |
FORMAT_DATE('%e %B %g', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year without century as a decimal number (00-99) | 31 December 25 |
FORMAT_DATE('%e %b %g', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) | 31 Dec 25 |
FORMAT_DATE('%e %h %g', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) | 31 Dec 25 |
FORMAT_DATE('%e %m %Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, day of year | 31 12 2024 Day 366 |
FORMAT_DATE('%e %m %E4Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 9999) - Plus, day of year | 31 12 2024 Day 366 |
FORMAT_DATE('%e %m %y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, day of year | 31 12 24 Day 366 |
FORMAT_DATE('%e %m %G Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, day of year | 31 12 2025 Day 366 |
FORMAT_DATE('%e %m %g Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31 12 25 Day 366 |
FORMAT_DATE('%e %B %Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year with century as a decimal number - Plus, day of year | 31 December 2024 Day 366 |
FORMAT_DATE('%e %b %Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of year | 31 Dec 2024 Day 366 |
FORMAT_DATE('%e %h %Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of year | 31 Dec 2024 Day 366 |
FORMAT_DATE('%e %B %E4Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month Four-character years (0001 9999) - Plus, day of year | 31 December 2024 Day 366 |
FORMAT_DATE('%e %b %E4Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 9999) - Plus, day of year | 31 Dec 2024 Day 366 |
FORMAT_DATE('%e %h %E4Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 9999) - Plus, day of year | 31 Dec 2024 Day 366 |
FORMAT_DATE('%e %B %y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year without century as a decimal number (00-99) - Plus, day of year | 31 December 24 Day 366 |
FORMAT_DATE('%e %b %y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of year | 31 Dec 24 Day 366 |
FORMAT_DATE('%e %h %y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of year | 31 Dec 24 Day 366 |
FORMAT_DATE('%e %B %G Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year with century as a decimal number - Plus, day of year | 31 December 2025 Day 366 |
FORMAT_DATE('%e %b %G Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of year | 31 Dec 2025 Day 366 |
FORMAT_DATE('%e %h %G Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of year | 31 Dec 2025 Day 366 |
FORMAT_DATE('%e %B %g Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31 December 25 Day 366 |
FORMAT_DATE('%e %b %g Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31 Dec 25 Day 366 |
FORMAT_DATE('%e %h %g Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31 Dec 25 Day 366 |
FORMAT_DATE('%e%m%Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number | 31122024 |
FORMAT_DATE('%e%m%E4Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 9999) | 31122024 |
FORMAT_DATE('%e%m%y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) | 311224 |
FORMAT_DATE('%e%m%G', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number | 31122025 |
FORMAT_DATE('%e%m%g', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) | 311225 |
FORMAT_DATE('%e%B%Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthThe year with century as a decimal number | 31December2024 |
FORMAT_DATE('%e%b%Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monThe year with century as a decimal number | 31Dec2024 |
FORMAT_DATE('%e%h%Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name mondd The year with century as a decimal number | 31Dec2024 |
FORMAT_DATE('%e%B%E4Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthFour-character years (0001 9999) | 31December2024 |
FORMAT_DATE('%e%b%E4Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monFour-character years (0001 9999) | 31Dec2024 |
FORMAT_DATE('%e%h%E4Y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monFour-character years (0001 9999) | 31Dec2024 |
FORMAT_DATE('%e%B%y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year without century as a decimal number (00-99) | 31December24 |
FORMAT_DATE('%e%b%y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monThe year without century as a decimal number (00-99) | 31Dec24 |
FORMAT_DATE('%e%h%y', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monThe year without century as a decimal number (00-99) | 31Dec24 |
FORMAT_DATE('%e%B%G', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month-The ISO 8601 year with century as a decimal number | 31December2025 |
FORMAT_DATE('%e%b%G', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name mon-The ISO 8601 year with century as a decimal number | 31Dec2025 |
FORMAT_DATE('%e%h%G', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monThe ISO 8601 year with century as a decimal number | 31Dec2025 |
FORMAT_DATE('%e%B%g', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthThe ISO 8601 year without century as a decimal number (00-99) | 31December25 |
FORMAT_DATE('%e%b%g', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monThe ISO 8601 year without century as a decimal number (00-99) | 31Dec25 |
FORMAT_DATE('%e%h%g', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monThe ISO 8601 year without century as a decimal number (00-99) | 31Dec25 |
FORMAT_DATE('%e%m%Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, day of year | 31122024 Day 366 |
FORMAT_DATE('%e%m%E4Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 9999) - Plus, day of year | 31122024 Day 366 |
FORMAT_DATE('%e%m%y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, day of year | 311224 Day 366 |
FORMAT_DATE('%e%m%G Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, day of year | 31122025 Day 366 |
FORMAT_DATE('%e%m%g Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 311225 Day 366 |
FORMAT_DATE('%e%B%Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year with century as a decimal number - Plus, day of year | 31December2024 Day 366 |
FORMAT_DATE('%e%b%Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe year with century as a decimal number - Plus, day of year | 31Dec2024 Day 366 |
FORMAT_DATE('%e%h%Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of year | 31Dec2024 Day 366 |
FORMAT_DATE('%e%B%E4Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month Four-character years (0001 9999) - Plus, day of year | 31December2024 Day 366 |
FORMAT_DATE('%e%b%E4Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameFour-character years (0001 9999) - Plus, day of year | 31Dec2024 Day 366 |
FORMAT_DATE('%e%h%E4Y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameFour-character years (0001 9999) - Plus, day of year | 31Dec2024 Day 366 |
FORMAT_DATE('%e%B%y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year without century as a decimal number (00-99) - Plus, day of year | 31December24 Day 366 |
FORMAT_DATE('%e%b%y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe year without century as a decimal number (00-99) - Plus, day of year | 31Dec24 Day 366 |
FORMAT_DATE('%e%h%y Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe year without century as a decimal number (00-99) - Plus, day of year | 31Dec24 Day 366 |
FORMAT_DATE('%e%B%G Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year with century as a decimal number - Plus, day of year | 31December2025 Day 366 |
FORMAT_DATE('%e%b%G Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe ISO 8601 year with century as a decimal number - Plus, day of year | 31Dec2025 Day 366 |
FORMAT_DATE('%e%h%G Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe ISO 8601 year with century as a decimal number - Plus, day of year | 31Dec2025 Day 366 |
FORMAT_DATE('%e%B%g Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31December25 Day 366 |
FORMAT_DATE('%e%b%g Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31Dec25 Day 366 |
FORMAT_DATE('%e%h%g Day %j', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe ISO 8601 year without century as a decimal number (00-99) - Plus, day of year | 31Dec25 Day 366 |
FORMAT_DATE('%e-%m-%Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, day of the week | 31-12-2024 Tuesday |
FORMAT_DATE('%e-%m-%E4Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) - Four-character years (0001 . 9999) - Plus, day of the week | 31-12-2024 Tuesday |
FORMAT_DATE('%e-%m-%y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, day of the week | 31-12-24 Tuesday |
FORMAT_DATE('%e-%m-%G %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, day of the week | 31-12-2025 Tuesday |
FORMAT_DATE('%e-%m-%g %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31-12-25 Tuesday |
FORMAT_DATE('%e-%B-%Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name - The year with century as a decimal number - Plus, day of the week | 31-December-2024 Tuesday |
FORMAT_DATE('%e-%b-%Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week | 31-Dec-2024 Tuesday |
FORMAT_DATE('%e-%h-%Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name dd The year with century as a decimal number - Plus, day of the week | 31-Dec-2024 Tuesday |
FORMAT_DATE('%e-%B-%E4Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name - Four-character years (0001 . 9999) - Plus, day of the week | 31-December-2024 Tuesday |
FORMAT_DATE('%e-%b-%E4Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of the week | 31-Dec-2024 Tuesday |
FORMAT_DATE('%e-%h-%E4Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of the week | 31-Dec-2024 Tuesday |
FORMAT_DATE('%e-%B-%y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name - The year without century as a decimal number (00-99) - Plus, day of the week | 31-December-24 Tuesday |
FORMAT_DATE('%e-%b-%y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week | 31-Dec-24 Tuesday |
FORMAT_DATE('%e-%h-%y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week | 31-Dec-24 Tuesday |
FORMAT_DATE('%e-%B-%G %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name - The ISO 8601 year with century as a decimal number - Plus, day of the week | 31-December-2025 Tuesday |
FORMAT_DATE('%e-%b-%G %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week | 31-Dec-2025 Tuesday |
FORMAT_DATE('%e-%h-%G %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week | 31-Dec-2025 Tuesday |
FORMAT_DATE('%e-%B-%g %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31-December-25 Tuesday |
FORMAT_DATE('%e-%b-%g %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31-Dec-25 Tuesday |
FORMAT_DATE('%e-%h-%g %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31-Dec-25 Tuesday |
FORMAT_DATE('%e/%m/%Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, day of the week | 31/12/2024 Tuesday |
FORMAT_DATE('%e/%m/%E4Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) - Plus, day of the week | 31/12/2024 Tuesday |
FORMAT_DATE('%e/%m/%y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, day of the week | 31/12/24 Tuesday |
FORMAT_DATE('%e/%m/%G %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, day of the week | 31/12/2025 Tuesday |
FORMAT_DATE('%e/%m/%g %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31/12/25 Tuesday |
FORMAT_DATE('%e/%B/%Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/ The year with century as a decimal number - Plus, day of the week | 31/December/2024 Tuesday |
FORMAT_DATE('%e/%b/%Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week | 31/Dec/2024 Tuesday |
FORMAT_DATE('%e/%h/%Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week | 31/Dec/2024 Tuesday |
FORMAT_DATE('%e/%B/%E4Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/ Four-character years (0001 . 9999) - Plus, day of the week | 31/December/2024 Tuesday |
FORMAT_DATE('%e/%b/%E4Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of the week | 31/Dec/2024 Tuesday |
FORMAT_DATE('%e/%h/%E4Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of the week | 31/Dec/2024 Tuesday |
FORMAT_DATE('%e/%B/%y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/ The year without century as a decimal number (00-99) - Plus, day of the week | 31/December/24 Tuesday |
FORMAT_DATE('%e/%b/%y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week | 31/Dec/24 Tuesday |
FORMAT_DATE('%e/%h/%y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week | 31/Dec/24 Tuesday |
FORMAT_DATE('%e/%B/%G %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/ The ISO 8601 year with century as a decimal number - Plus, day of the week | 31/December/2025 Tuesday |
FORMAT_DATE('%e/%b/%G %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week | 31/Dec/2025 Tuesday |
FORMAT_DATE('%e/%h/%G %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week | 31/Dec/2025 Tuesday |
FORMAT_DATE('%e/%B/%g %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/ The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31/December/25 Tuesday |
FORMAT_DATE('%e/%b/%g %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31/Dec/25 Tuesday |
FORMAT_DATE('%e/%h/%g %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31/Dec/25 Tuesday |
FORMAT_DATE('%e:%m:%Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, day of the week | 31:12:2024 Tuesday |
FORMAT_DATE('%e:%m:%E4Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) - Plus, day of the week | 31:12:2024 Tuesday |
FORMAT_DATE('%e:%m:%y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, day of the week | 31:12:24 Tuesday |
FORMAT_DATE('%e:%m:%G %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, day of the week | 31:12:2025 Tuesday |
FORMAT_DATE('%e:%m:%g %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31:12:25 Tuesday |
FORMAT_DATE('%e:%B:%Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month: The year with century as a decimal number - Plus, day of the week | 31:December:2024 Tuesday |
FORMAT_DATE('%e:%b:%Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week | 31:Dec:2024 Tuesday |
FORMAT_DATE('%e:%h:%Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week | 31:Dec:2024 Tuesday |
FORMAT_DATE('%e:%B:%E4Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month: Four-character years (0001 . 9999) - Plus, day of the week | 31:December:2024 Tuesday |
FORMAT_DATE('%e:%b:%E4Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of the week | 31:Dec:2024 Tuesday |
FORMAT_DATE('%e:%h:%E4Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of the week | 31:Dec:2024 Tuesday |
FORMAT_DATE('%e:%B:%y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month: The year without century as a decimal number (00-99) - Plus, day of the week | 31:December:24 Tuesday |
FORMAT_DATE('%e:%b:%y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week | 31:Dec:24 Tuesday |
FORMAT_DATE('%e:%h:%y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week | 31:Dec:24 Tuesday |
FORMAT_DATE('%e:%B:%G %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month: The ISO 8601 year with century as a decimal number - Plus, day of the week | 31:December:2025 Tuesday |
FORMAT_DATE('%e:%b:%G %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week | 31:Dec:2025 Tuesday |
FORMAT_DATE('%e:%h:%G %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week | 31:Dec:2025 Tuesday |
FORMAT_DATE('%e:%B:%g %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month: The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31:December:25 Tuesday |
FORMAT_DATE('%e:%b:%g %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31:Dec:25 Tuesday |
FORMAT_DATE('%e:%h:%g %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31:Dec:25 Tuesday |
FORMAT_DATE('%e.%m.%Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, day of the week | 31.12.2024 Tuesday |
FORMAT_DATE('%e.%m.%E4Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) - Plus, day of the week | 31.12.2024 Tuesday |
FORMAT_DATE('%e.%m.%y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, day of the week | 31.12.24 Tuesday |
FORMAT_DATE('%e.%m.%G %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, day of the week | 31.12.2025 Tuesday |
FORMAT_DATE('%e.%m.%g %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31.12.25 Tuesday |
FORMAT_DATE('%e.%B.%Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month. The year with century as a decimal number - Plus, day of the week | 31.December.2024 Tuesday |
FORMAT_DATE('%e.%b.%Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week | 31.Dec.2024 Tuesday |
FORMAT_DATE('%e.%h.%Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week | 31.Dec.2024 Tuesday |
FORMAT_DATE('%e.%B.%E4Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month. Four-character years (0001 . 9999) - Plus, day of the week | 31.December.2024 Tuesday |
FORMAT_DATE('%e.%b.%E4Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of the week | 31.Dec.2024 Tuesday |
FORMAT_DATE('%e.%h.%E4Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of the week | 31.Dec.2024 Tuesday |
FORMAT_DATE('%e.%B.%y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month. The year without century as a decimal number (00-99) - Plus, day of the week | 31.December.24 Tuesday |
FORMAT_DATE('%e.%b.%y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week | 31.Dec.24 Tuesday |
FORMAT_DATE('%e.%h.%y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week | 31.Dec.24 Tuesday |
FORMAT_DATE('%e.%B.%G %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month. The ISO 8601 year with century as a decimal number - Plus, day of the week | 31.December.2025 Tuesday |
FORMAT_DATE('%e.%b.%G %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week | 31.Dec.2025 Tuesday |
FORMAT_DATE('%e.%h.%G %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week | 31.Dec.2025 Tuesday |
FORMAT_DATE('%e.%B.%g %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month. The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31.December.25 Tuesday |
FORMAT_DATE('%e.%b.%g %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31.Dec.25 Tuesday |
FORMAT_DATE('%e.%h.%g %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31.Dec.25 Tuesday |
FORMAT_DATE('%e %m %Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, day of the week | 31 12 2024 Tuesday |
FORMAT_DATE('%e %m %E4Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 9999) - Plus, day of the week | 31 12 2024 Tuesday |
FORMAT_DATE('%e %m %y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, day of the week | 31 12 24 Tuesday |
FORMAT_DATE('%e %m %G %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, day of the week | 31 12 2025 Tuesday |
FORMAT_DATE('%e %m %g %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31 12 25 Tuesday |
FORMAT_DATE('%e %B %Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year with century as a decimal number - Plus, day of the week | 31 December 2024 Tuesday |
FORMAT_DATE('%e %b %Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week | 31 Dec 2024 Tuesday |
FORMAT_DATE('%e %h %Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week | 31 Dec 2024 Tuesday |
FORMAT_DATE('%e %B %E4Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month Four-character years (0001 9999) - Plus, day of the week | 31 December 2024 Tuesday |
FORMAT_DATE('%e %b %E4Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 9999) - Plus, day of the week | 31 Dec 2024 Tuesday |
FORMAT_DATE('%e %h %E4Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 9999) - Plus, day of the week | 31 Dec 2024 Tuesday |
FORMAT_DATE('%e %B %y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year without century as a decimal number (00-99) - Plus, day of the week | 31 December 24 Tuesday |
FORMAT_DATE('%e %b %y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week | 31 Dec 24 Tuesday |
FORMAT_DATE('%e %h %y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week | 31 Dec 24 Tuesday |
FORMAT_DATE('%e %B %G %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year with century as a decimal number - Plus, day of the week | 31 December 2025 Tuesday |
FORMAT_DATE('%e %b %G %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week | 31 Dec 2025 Tuesday |
FORMAT_DATE('%e %h %G %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week | 31 Dec 2025 Tuesday |
FORMAT_DATE('%e %B %g %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31 December 25 Tuesday |
FORMAT_DATE('%e %b %g %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31 Dec 25 Tuesday |
FORMAT_DATE('%e %h %g %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31 Dec 25 Tuesday |
FORMAT_DATE('%e%m%Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, day of the week | 31122024 Tuesday |
FORMAT_DATE('%e%m%E4Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 9999) - Plus, day of the week | 31122024 Tuesday |
FORMAT_DATE('%e%m%y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, day of the week | 311224 Tuesday |
FORMAT_DATE('%e%m%G %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, day of the week | 31122025 Tuesday |
FORMAT_DATE('%e%m%g %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 311225 Tuesday |
FORMAT_DATE('%e%B%Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year with century as a decimal number - Plus, day of the week | 31December2024 Tuesday |
FORMAT_DATE('%e%b%Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe year with century as a decimal number - Plus, day of the week | 31Dec2024 Tuesday |
FORMAT_DATE('%e%h%Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week | 31Dec2024 Tuesday |
FORMAT_DATE('%e%B%E4Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month Four-character years (0001 9999) - Plus, day of the week | 31December2024 Tuesday |
FORMAT_DATE('%e%b%E4Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameFour-character years (0001 9999) - Plus, day of the week | 31Dec2024 Tuesday |
FORMAT_DATE('%e%h%E4Y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameFour-character years (0001 9999) - Plus, day of the week | 31Dec2024 Tuesday |
FORMAT_DATE('%e%B%y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year without century as a decimal number (00-99) - Plus, day of the week | 31December24 Tuesday |
FORMAT_DATE('%e%b%y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe year without century as a decimal number (00-99) - Plus, day of the week | 31Dec24 Tuesday |
FORMAT_DATE('%e%h%y %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe year without century as a decimal number (00-99) - Plus, day of the week | 31Dec24 Tuesday |
FORMAT_DATE('%e%B%G %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year with century as a decimal number - Plus, day of the week | 31December2025 Tuesday |
FORMAT_DATE('%e%b%G %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe ISO 8601 year with century as a decimal number - Plus, day of the week | 31Dec2025 Tuesday |
FORMAT_DATE('%e%h%G %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe ISO 8601 year with century as a decimal number - Plus, day of the week | 31Dec2025 Tuesday |
FORMAT_DATE('%e%B%g %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31December25 Tuesday |
FORMAT_DATE('%e%b%g %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31Dec25 Tuesday |
FORMAT_DATE('%e%h%g %A', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week | 31Dec25 Tuesday |
FORMAT_DATE('%e-%m-%Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) - The year with century as a decimal number - Plus, day of the week abbreviated | 31-12-2024 Tue |
FORMAT_DATE('%e-%m-%E4Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) - Four-character years (0001 . 9999) - Plus, day of the week abbreviated | 31-12-2024 Tue |
FORMAT_DATE('%e-%m-%y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) - The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31-12-24 Tue |
FORMAT_DATE('%e-%m-%G %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) - The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31-12-2025 Tue |
FORMAT_DATE('%e-%m-%g %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31-12-25 Tue |
FORMAT_DATE('%e-%B-%Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name - The year with century as a decimal number - Plus, day of the week abbreviated | 31-December-2024 Tue |
FORMAT_DATE('%e-%b-%Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week abbreviated | 31-Dec-2024 Tue |
FORMAT_DATE('%e-%h-%Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name dd The year with century as a decimal number - Plus, day of the week abbreviated | 31-Dec-2024 Tue |
FORMAT_DATE('%e-%B-%E4Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name - Four-character years (0001 . 9999) - Plus, day of the week abbreviated | 31-December-2024 Tue |
FORMAT_DATE('%e-%b-%E4Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of the week abbreviated | 31-Dec-2024 Tue |
FORMAT_DATE('%e-%h-%E4Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of the week abbreviated | 31-Dec-2024 Tue |
FORMAT_DATE('%e-%B-%y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name - The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31-December-24 Tue |
FORMAT_DATE('%e-%b-%y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31-Dec-24 Tue |
FORMAT_DATE('%e-%h-%y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31-Dec-24 Tue |
FORMAT_DATE('%e-%B-%G %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name - The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31-December-2025 Tue |
FORMAT_DATE('%e-%b-%G %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31-Dec-2025 Tue |
FORMAT_DATE('%e-%h-%G %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31-Dec-2025 Tue |
FORMAT_DATE('%e-%B-%g %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name - The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31-December-25 Tue |
FORMAT_DATE('%e-%b-%g %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31-Dec-25 Tue |
FORMAT_DATE('%e-%h-%g %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31-Dec-25 Tue |
FORMAT_DATE('%e/%m/%Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, day of the week abbreviated | 31/12/2024 Tue |
FORMAT_DATE('%e/%m/%E4Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) - Plus, day of the week abbreviated | 31/12/2024 Tue |
FORMAT_DATE('%e/%m/%y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31/12/24 Tue |
FORMAT_DATE('%e/%m/%G %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31/12/2025 Tue |
FORMAT_DATE('%e/%m/%g %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31/12/25 Tue |
FORMAT_DATE('%e/%B/%Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/ The year with century as a decimal number - Plus, day of the week abbreviated | 31/December/2024 Tue |
FORMAT_DATE('%e/%b/%Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week abbreviated | 31/Dec/2024 Tue |
FORMAT_DATE('%e/%h/%Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week abbreviated | 31/Dec/2024 Tue |
FORMAT_DATE('%e/%B/%E4Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/ Four-character years (0001 . 9999) - Plus, day of the week abbreviated | 31/December/2024 Tue |
FORMAT_DATE('%e/%b/%E4Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of the week abbreviated | 31/Dec/2024 Tue |
FORMAT_DATE('%e/%h/%E4Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of the week abbreviated | 31/Dec/2024 Tue |
FORMAT_DATE('%e/%B/%y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/ The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31/December/24 Tue |
FORMAT_DATE('%e/%b/%y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31/Dec/24 Tue |
FORMAT_DATE('%e/%h/%y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31/Dec/24 Tue |
FORMAT_DATE('%e/%B/%G %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/ The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31/December/2025 Tue |
FORMAT_DATE('%e/%b/%G %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31/Dec/2025 Tue |
FORMAT_DATE('%e/%h/%G %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31/Dec/2025 Tue |
FORMAT_DATE('%e/%B/%g %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/ The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31/December/25 Tue |
FORMAT_DATE('%e/%b/%g %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31/Dec/25 Tue |
FORMAT_DATE('%e/%h/%g %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31/Dec/25 Tue |
FORMAT_DATE('%e:%m:%Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, day of the week abbreviated | 31:12:2024 Tue |
FORMAT_DATE('%e:%m:%E4Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) - Plus, day of the week abbreviated | 31:12:2024 Tue |
FORMAT_DATE('%e:%m:%y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31:12:24 Tue |
FORMAT_DATE('%e:%m:%G %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31:12:2025 Tue |
FORMAT_DATE('%e:%m:%g %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31:12:25 Tue |
FORMAT_DATE('%e:%B:%Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month: The year with century as a decimal number - Plus, day of the week abbreviated | 31:December:2024 Tue |
FORMAT_DATE('%e:%b:%Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week abbreviated | 31:Dec:2024 Tue |
FORMAT_DATE('%e:%h:%Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week abbreviated | 31:Dec:2024 Tue |
FORMAT_DATE('%e:%B:%E4Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month: Four-character years (0001 . 9999) - Plus, day of the week abbreviated | 31:December:2024 Tue |
FORMAT_DATE('%e:%b:%E4Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of the week abbreviated | 31:Dec:2024 Tue |
FORMAT_DATE('%e:%h:%E4Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of the week abbreviated | 31:Dec:2024 Tue |
FORMAT_DATE('%e:%B:%y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month: The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31:December:24 Tue |
FORMAT_DATE('%e:%b:%y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31:Dec:24 Tue |
FORMAT_DATE('%e:%h:%y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31:Dec:24 Tue |
FORMAT_DATE('%e:%B:%G %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month: The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31:December:2025 Tue |
FORMAT_DATE('%e:%b:%G %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31:Dec:2025 Tue |
FORMAT_DATE('%e:%h:%G %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31:Dec:2025 Tue |
FORMAT_DATE('%e:%B:%g %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month: The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31:December:25 Tue |
FORMAT_DATE('%e:%b:%g %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31:Dec:25 Tue |
FORMAT_DATE('%e:%h:%g %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31:Dec:25 Tue |
FORMAT_DATE('%e.%m.%Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, day of the week abbreviated | 31.12.2024 Tue |
FORMAT_DATE('%e.%m.%E4Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) - Plus, day of the week abbreviated | 31.12.2024 Tue |
FORMAT_DATE('%e.%m.%y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31.12.24 Tue |
FORMAT_DATE('%e.%m.%G %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31.12.2025 Tue |
FORMAT_DATE('%e.%m.%g %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31.12.25 Tue |
FORMAT_DATE('%e.%B.%Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month. The year with century as a decimal number - Plus, day of the week abbreviated | 31.December.2024 Tue |
FORMAT_DATE('%e.%b.%Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week abbreviated | 31.Dec.2024 Tue |
FORMAT_DATE('%e.%h.%Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week abbreviated | 31.Dec.2024 Tue |
FORMAT_DATE('%e.%B.%E4Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month. Four-character years (0001 . 9999) - Plus, day of the week abbreviated | 31.December.2024 Tue |
FORMAT_DATE('%e.%b.%E4Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of the week abbreviated | 31.Dec.2024 Tue |
FORMAT_DATE('%e.%h.%E4Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, day of the week abbreviated | 31.Dec.2024 Tue |
FORMAT_DATE('%e.%B.%y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month. The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31.December.24 Tue |
FORMAT_DATE('%e.%b.%y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31.Dec.24 Tue |
FORMAT_DATE('%e.%h.%y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31.Dec.24 Tue |
FORMAT_DATE('%e.%B.%G %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month. The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31.December.2025 Tue |
FORMAT_DATE('%e.%b.%G %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31.Dec.2025 Tue |
FORMAT_DATE('%e.%h.%G %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31.Dec.2025 Tue |
FORMAT_DATE('%e.%B.%g %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month. The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31.December.25 Tue |
FORMAT_DATE('%e.%b.%g %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31.Dec.25 Tue |
FORMAT_DATE('%e.%h.%g %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31.Dec.25 Tue |
FORMAT_DATE('%e %m %Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, day of the week abbreviated | 31 12 2024 Tue |
FORMAT_DATE('%e %m %E4Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 9999) - Plus, day of the week abbreviated | 31 12 2024 Tue |
FORMAT_DATE('%e %m %y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31 12 24 Tue |
FORMAT_DATE('%e %m %G %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31 12 2025 Tue |
FORMAT_DATE('%e %m %g %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31 12 25 Tue |
FORMAT_DATE('%e %B %Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year with century as a decimal number - Plus, day of the week abbreviated | 31 December 2024 Tue |
FORMAT_DATE('%e %b %Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week abbreviated | 31 Dec 2024 Tue |
FORMAT_DATE('%e %h %Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week abbreviated | 31 Dec 2024 Tue |
FORMAT_DATE('%e %B %E4Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month Four-character years (0001 9999) - Plus, day of the week abbreviated | 31 December 2024 Tue |
FORMAT_DATE('%e %b %E4Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 9999) - Plus, day of the week abbreviated | 31 Dec 2024 Tue |
FORMAT_DATE('%e %h %E4Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 9999) - Plus, day of the week abbreviated | 31 Dec 2024 Tue |
FORMAT_DATE('%e %B %y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31 December 24 Tue |
FORMAT_DATE('%e %b %y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31 Dec 24 Tue |
FORMAT_DATE('%e %h %y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31 Dec 24 Tue |
FORMAT_DATE('%e %B %G %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31 December 2025 Tue |
FORMAT_DATE('%e %b %G %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31 Dec 2025 Tue |
FORMAT_DATE('%e %h %G %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31 Dec 2025 Tue |
FORMAT_DATE('%e %B %g %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31 December 25 Tue |
FORMAT_DATE('%e %b %g %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31 Dec 25 Tue |
FORMAT_DATE('%e %h %g %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31 Dec 25 Tue |
FORMAT_DATE('%e%m%Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, day of the week abbreviated | 31122024 Tue |
FORMAT_DATE('%e%m%E4Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 9999) - Plus, day of the week abbreviated | 31122024 Tue |
FORMAT_DATE('%e%m%y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 311224 Tue |
FORMAT_DATE('%e%m%G %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31122025 Tue |
FORMAT_DATE('%e%m%g %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 311225 Tue |
FORMAT_DATE('%e%B%Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year with century as a decimal number - Plus, day of the week abbreviated | 31December2024 Tue |
FORMAT_DATE('%e%b%Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe year with century as a decimal number - Plus, day of the week abbreviated | 31Dec2024 Tue |
FORMAT_DATE('%e%h%Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, day of the week abbreviated | 31Dec2024 Tue |
FORMAT_DATE('%e%B%E4Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month Four-character years (0001 9999) - Plus, day of the week abbreviated | 31December2024 Tue |
FORMAT_DATE('%e%b%E4Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameFour-character years (0001 9999) - Plus, day of the week abbreviated | 31Dec2024 Tue |
FORMAT_DATE('%e%h%E4Y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameFour-character years (0001 9999) - Plus, day of the week abbreviated | 31Dec2024 Tue |
FORMAT_DATE('%e%B%y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31December24 Tue |
FORMAT_DATE('%e%b%y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31Dec24 Tue |
FORMAT_DATE('%e%h%y %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31Dec24 Tue |
FORMAT_DATE('%e%B%G %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31December2025 Tue |
FORMAT_DATE('%e%b%G %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31Dec2025 Tue |
FORMAT_DATE('%e%h%G %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe ISO 8601 year with century as a decimal number - Plus, day of the week abbreviated | 31Dec2025 Tue |
FORMAT_DATE('%e%B%g %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31December25 Tue |
FORMAT_DATE('%e%b%g %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31Dec25 Tue |
FORMAT_DATE('%e%h%g %a', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe ISO 8601 year without century as a decimal number (00-99) - Plus, day of the week abbreviated | 31Dec25 Tue |
FORMAT_DATE('%e-%m-%Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -qtr The year with century as a decimal number - Plus, the quarter | 31-12-2024 Quarter 4 |
FORMAT_DATE('%e-%m-%E4Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -qtr Four-character years (0001 . 9999) - Plus, the quarter | 31-12-2024 Quarter 4 |
FORMAT_DATE('%e-%m-%y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -qtr The year without century as a decimal number (00-99) - Plus, the quarter | 31-12-24 Quarter 4 |
FORMAT_DATE('%e-%m-%G Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 31-12-2025 Quarter 4 |
FORMAT_DATE('%e-%m-%g Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31-12-25 Quarter 4 |
FORMAT_DATE('%e-%B-%Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -qtr The year with century as a decimal number - Plus, the quarter | 31-December-2024 Quarter 4 |
FORMAT_DATE('%e-%b-%Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year with century as a decimal number - Plus, the quarter | 31-Dec-2024 Quarter 4 |
FORMAT_DATE('%e-%h-%Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name dd qtr The year with century as a decimal number - Plus, the quarter | 31-Dec-2024 Quarter 4 |
FORMAT_DATE('%e-%B-%E4Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -qtr Four-character years (0001 . 9999) - Plus, the quarter | 31-December-2024 Quarter 4 |
FORMAT_DATE('%e-%b-%E4Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr Four-character years (0001 . 9999) - Plus, the quarter | 31-Dec-2024 Quarter 4 |
FORMAT_DATE('%e-%h-%E4Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr Four-character years (0001 . 9999) - Plus, the quarter | 31-Dec-2024 Quarter 4 |
FORMAT_DATE('%e-%B-%y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -qtr The year without century as a decimal number (00-99) - Plus, the quarter | 31-December-24 Quarter 4 |
FORMAT_DATE('%e-%b-%y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year without century as a decimal number (00-99) - Plus, the quarter | 31-Dec-24 Quarter 4 |
FORMAT_DATE('%e-%h-%y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year without century as a decimal number (00-99) - Plus, the quarter | 31-Dec-24 Quarter 4 |
FORMAT_DATE('%e-%B-%G Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 31-December-2025 Quarter 4 |
FORMAT_DATE('%e-%b-%G Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 31-Dec-2025 Quarter 4 |
FORMAT_DATE('%e-%h-%G Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 31-Dec-2025 Quarter 4 |
FORMAT_DATE('%e-%B-%g Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31-December-25 Quarter 4 |
FORMAT_DATE('%e-%b-%g Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31-Dec-25 Quarter 4 |
FORMAT_DATE('%e-%h-%g Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31-Dec-25 Quarter 4 |
FORMAT_DATE('%e/%m/%Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The year with century as a decimal number - Plus, the quarter | 31/12/2024 Quarter 4 |
FORMAT_DATE('%e/%m/%E4Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr Four-character years (0001 . 9999) - Plus, the quarter | 31/12/2024 Quarter 4 |
FORMAT_DATE('%e/%m/%y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The year without century as a decimal number (00-99) - Plus, the quarter | 31/12/24 Quarter 4 |
FORMAT_DATE('%e/%m/%G Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 31/12/2025 Quarter 4 |
FORMAT_DATE('%e/%m/%g Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31/12/25 Quarter 4 |
FORMAT_DATE('%e/%B/%Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/qtr The year with century as a decimal number - Plus, the quarter | 31/December/2024 Quarter 4 |
FORMAT_DATE('%e/%b/%Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year with century as a decimal number - Plus, the quarter | 31/Dec/2024 Quarter 4 |
FORMAT_DATE('%e/%h/%Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year with century as a decimal number - Plus, the quarter | 31/Dec/2024 Quarter 4 |
FORMAT_DATE('%e/%B/%E4Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/qtr Four-character years (0001 . 9999) - Plus, the quarter | 31/December/2024 Quarter 4 |
FORMAT_DATE('%e/%b/%E4Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr Four-character years (0001 . 9999) - Plus, the quarter | 31/Dec/2024 Quarter 4 |
FORMAT_DATE('%e/%h/%E4Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr Four-character years (0001 . 9999) - Plus, the quarter | 31/Dec/2024 Quarter 4 |
FORMAT_DATE('%e/%B/%y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/qtr The year without century as a decimal number (00-99) - Plus, the quarter | 31/December/24 Quarter 4 |
FORMAT_DATE('%e/%b/%y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year without century as a decimal number (00-99) - Plus, the quarter | 31/Dec/24 Quarter 4 |
FORMAT_DATE('%e/%h/%y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year without century as a decimal number (00-99) - Plus, the quarter | 31/Dec/24 Quarter 4 |
FORMAT_DATE('%e/%B/%G Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 31/December/2025 Quarter 4 |
FORMAT_DATE('%e/%b/%G Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 31/Dec/2025 Quarter 4 |
FORMAT_DATE('%e/%h/%G Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 31/Dec/2025 Quarter 4 |
FORMAT_DATE('%e/%B/%g Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31/December/25 Quarter 4 |
FORMAT_DATE('%e/%b/%g Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31/Dec/25 Quarter 4 |
FORMAT_DATE('%e/%h/%g Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31/Dec/25 Quarter 4 |
FORMAT_DATE('%e:%m:%Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The year with century as a decimal number - Plus, the quarter | 31:12:2024 Quarter 4 |
FORMAT_DATE('%e:%m:%E4Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr Four-character years (0001 . 9999) - Plus, the quarter | 31:12:2024 Quarter 4 |
FORMAT_DATE('%e:%m:%y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The year without century as a decimal number (00-99) - Plus, the quarter | 31:12:24 Quarter 4 |
FORMAT_DATE('%e:%m:%G Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 31:12:2025 Quarter 4 |
FORMAT_DATE('%e:%m:%g Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31:12:25 Quarter 4 |
FORMAT_DATE('%e:%B:%Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:qtr The year with century as a decimal number - Plus, the quarter | 31:December:2024 Quarter 4 |
FORMAT_DATE('%e:%b:%Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year with century as a decimal number - Plus, the quarter | 31:Dec:2024 Quarter 4 |
FORMAT_DATE('%e:%h:%Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year with century as a decimal number - Plus, the quarter | 31:Dec:2024 Quarter 4 |
FORMAT_DATE('%e:%B:%E4Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:qtr Four-character years (0001 . 9999) - Plus, the quarter | 31:December:2024 Quarter 4 |
FORMAT_DATE('%e:%b:%E4Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr Four-character years (0001 . 9999) - Plus, the quarter | 31:Dec:2024 Quarter 4 |
FORMAT_DATE('%e:%h:%E4Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr Four-character years (0001 . 9999) - Plus, the quarter | 31:Dec:2024 Quarter 4 |
FORMAT_DATE('%e:%B:%y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:qtr The year without century as a decimal number (00-99) - Plus, the quarter | 31:December:24 Quarter 4 |
FORMAT_DATE('%e:%b:%y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year without century as a decimal number (00-99) - Plus, the quarter | 31:Dec:24 Quarter 4 |
FORMAT_DATE('%e:%h:%y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year without century as a decimal number (00-99) - Plus, the quarter | 31:Dec:24 Quarter 4 |
FORMAT_DATE('%e:%B:%G Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 31:December:2025 Quarter 4 |
FORMAT_DATE('%e:%b:%G Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 31:Dec:2025 Quarter 4 |
FORMAT_DATE('%e:%h:%G Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 31:Dec:2025 Quarter 4 |
FORMAT_DATE('%e:%B:%g Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31:December:25 Quarter 4 |
FORMAT_DATE('%e:%b:%g Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31:Dec:25 Quarter 4 |
FORMAT_DATE('%e:%h:%g Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31:Dec:25 Quarter 4 |
FORMAT_DATE('%e.%m.%Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The year with century as a decimal number - Plus, the quarter | 31.12.2024 Quarter 4 |
FORMAT_DATE('%e.%m.%E4Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr Four-character years (0001 . 9999) - Plus, the quarter | 31.12.2024 Quarter 4 |
FORMAT_DATE('%e.%m.%y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The year without century as a decimal number (00-99) - Plus, the quarter | 31.12.24 Quarter 4 |
FORMAT_DATE('%e.%m.%G Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 31.12.2025 Quarter 4 |
FORMAT_DATE('%e.%m.%g Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31.12.25 Quarter 4 |
FORMAT_DATE('%e.%B.%Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.qtr The year with century as a decimal number - Plus, the quarter | 31.December.2024 Quarter 4 |
FORMAT_DATE('%e.%b.%Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year with century as a decimal number - Plus, the quarter | 31.Dec.2024 Quarter 4 |
FORMAT_DATE('%e.%h.%Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year with century as a decimal number - Plus, the quarter | 31.Dec.2024 Quarter 4 |
FORMAT_DATE('%e.%B.%E4Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.qtr Four-character years (0001 . 9999) - Plus, the quarter | 31.December.2024 Quarter 4 |
FORMAT_DATE('%e.%b.%E4Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr Four-character years (0001 . 9999) - Plus, the quarter | 31.Dec.2024 Quarter 4 |
FORMAT_DATE('%e.%h.%E4Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr Four-character years (0001 . 9999) - Plus, the quarter | 31.Dec.2024 Quarter 4 |
FORMAT_DATE('%e.%B.%y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.qtr The year without century as a decimal number (00-99) - Plus, the quarter | 31.December.24 Quarter 4 |
FORMAT_DATE('%e.%b.%y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year without century as a decimal number (00-99) - Plus, the quarter | 31.Dec.24 Quarter 4 |
FORMAT_DATE('%e.%h.%y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year without century as a decimal number (00-99) - Plus, the quarter | 31.Dec.24 Quarter 4 |
FORMAT_DATE('%e.%B.%G Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 31.December.2025 Quarter 4 |
FORMAT_DATE('%e.%b.%G Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 31.Dec.2025 Quarter 4 |
FORMAT_DATE('%e.%h.%G Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 31.Dec.2025 Quarter 4 |
FORMAT_DATE('%e.%B.%g Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31.December.25 Quarter 4 |
FORMAT_DATE('%e.%b.%g Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31.Dec.25 Quarter 4 |
FORMAT_DATE('%e.%h.%g Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31.Dec.25 Quarter 4 |
FORMAT_DATE('%e %m %Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The year with century as a decimal number - Plus, the quarter | 31 12 2024 Quarter 4 |
FORMAT_DATE('%e %m %E4Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr Four-character years (0001 9999) - Plus, the quarter | 31 12 2024 Quarter 4 |
FORMAT_DATE('%e %m %y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The year without century as a decimal number (00-99) - Plus, the quarter | 31 12 24 Quarter 4 |
FORMAT_DATE('%e %m %G Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 31 12 2025 Quarter 4 |
FORMAT_DATE('%e %m %g Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31 12 25 Quarter 4 |
FORMAT_DATE('%e %B %Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month qtr The year with century as a decimal number - Plus, the quarter | 31 December 2024 Quarter 4 |
FORMAT_DATE('%e %b %Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year with century as a decimal number - Plus, the quarter | 31 Dec 2024 Quarter 4 |
FORMAT_DATE('%e %h %Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year with century as a decimal number - Plus, the quarter | 31 Dec 2024 Quarter 4 |
FORMAT_DATE('%e %B %E4Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month qtr Four-character years (0001 9999) - Plus, the quarter | 31 December 2024 Quarter 4 |
FORMAT_DATE('%e %b %E4Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr Four-character years (0001 9999) - Plus, the quarter | 31 Dec 2024 Quarter 4 |
FORMAT_DATE('%e %h %E4Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr Four-character years (0001 9999) - Plus, the quarter | 31 Dec 2024 Quarter 4 |
FORMAT_DATE('%e %B %y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month qtr The year without century as a decimal number (00-99) - Plus, the quarter | 31 December 24 Quarter 4 |
FORMAT_DATE('%e %b %y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year without century as a decimal number (00-99) - Plus, the quarter | 31 Dec 24 Quarter 4 |
FORMAT_DATE('%e %h %y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The year without century as a decimal number (00-99) - Plus, the quarter | 31 Dec 24 Quarter 4 |
FORMAT_DATE('%e %B %G Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 31 December 2025 Quarter 4 |
FORMAT_DATE('%e %b %G Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 31 Dec 2025 Quarter 4 |
FORMAT_DATE('%e %h %G Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 31 Dec 2025 Quarter 4 |
FORMAT_DATE('%e %B %g Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31 December 25 Quarter 4 |
FORMAT_DATE('%e %b %g Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31 Dec 25 Quarter 4 |
FORMAT_DATE('%e %h %g Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31 Dec 25 Quarter 4 |
FORMAT_DATE('%e%m%Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The year with century as a decimal number - Plus, the quarter | 31122024 Quarter 4 |
FORMAT_DATE('%e%m%E4Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr Four-character years (0001 9999) - Plus, the quarter | 31122024 Quarter 4 |
FORMAT_DATE('%e%m%y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The year without century as a decimal number (00-99) - Plus, the quarter | 311224 Quarter 4 |
FORMAT_DATE('%e%m%G Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 31122025 Quarter 4 |
FORMAT_DATE('%e%m%g Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) qtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 311225 Quarter 4 |
FORMAT_DATE('%e%B%Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthqtr The year with century as a decimal number - Plus, the quarter | 31December2024 Quarter 4 |
FORMAT_DATE('%e%b%Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monqtr The year with century as a decimal number - Plus, the quarter | 31Dec2024 Quarter 4 |
FORMAT_DATE('%e%h%Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameqtr The year with century as a decimal number - Plus, the quarter | 31Dec2024 Quarter 4 |
FORMAT_DATE('%e%B%E4Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthqtr Four-character years (0001 9999) - Plus, the quarter | 31December2024 Quarter 4 |
FORMAT_DATE('%e%b%E4Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monqtr Four-character years (0001 9999) - Plus, the quarter | 31Dec2024 Quarter 4 |
FORMAT_DATE('%e%h%E4Y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monqtr Four-character years (0001 9999) - Plus, the quarter | 31Dec2024 Quarter 4 |
FORMAT_DATE('%e%B%y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthqtr The year without century as a decimal number (00-99) - Plus, the quarter | 31December24 Quarter 4 |
FORMAT_DATE('%e%b%y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monqtr The year without century as a decimal number (00-99) - Plus, the quarter | 31Dec24 Quarter 4 |
FORMAT_DATE('%e%h%y Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monqtr The year without century as a decimal number (00-99) - Plus, the quarter | 31Dec24 Quarter 4 |
FORMAT_DATE('%e%B%G Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthqtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 31December2025 Quarter 4 |
FORMAT_DATE('%e%b%G Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monqtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 31Dec2025 Quarter 4 |
FORMAT_DATE('%e%h%G Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monqtr The ISO 8601 year with century as a decimal number - Plus, the quarter | 31Dec2025 Quarter 4 |
FORMAT_DATE('%e%B%g Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthqtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31December25 Quarter 4 |
FORMAT_DATE('%e%b%g Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monqtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31Dec25 Quarter 4 |
FORMAT_DATE('%e%h%g Quarter %Q', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monqtr The ISO 8601 year without century as a decimal number (00-99) - Plus, the quarter | 31Dec25 Quarter 4 |
FORMAT_DATE('%e-%m-%Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -woy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31-12-2024 Week 52 |
FORMAT_DATE('%e-%m-%E4Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -woy Four-character years (0001 . 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31-12-2024 Week 52 |
FORMAT_DATE('%e-%m-%y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31-12-24 Week 52 |
FORMAT_DATE('%e-%m-%G Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31-12-2025 Week 52 |
FORMAT_DATE('%e-%m-%g Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31-12-25 Week 52 |
FORMAT_DATE('%e-%B-%Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -woy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31-December-2024 Week 52 |
FORMAT_DATE('%e-%b-%Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31-Dec-2024 Week 52 |
FORMAT_DATE('%e-%h-%Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name dd woy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31-Dec-2024 Week 52 |
FORMAT_DATE('%e-%B-%E4Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -woy Four-character years (0001 . 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31-December-2024 Week 52 |
FORMAT_DATE('%e-%b-%E4Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated Four-character years (0001 . 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31-Dec-2024 Week 52 |
FORMAT_DATE('%e-%h-%E4Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated Four-character years (0001 . 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31-Dec-2024 Week 52 |
FORMAT_DATE('%e-%B-%y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31-December-24 Week 52 |
FORMAT_DATE('%e-%b-%y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31-Dec-24 Week 52 |
FORMAT_DATE('%e-%h-%y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31-Dec-24 Week 52 |
FORMAT_DATE('%e-%B-%G Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31-December-2025 Week 52 |
FORMAT_DATE('%e-%b-%G Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31-Dec-2025 Week 52 |
FORMAT_DATE('%e-%h-%G Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31-Dec-2025 Week 52 |
FORMAT_DATE('%e-%B-%g Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31-December-25 Week 52 |
FORMAT_DATE('%e-%b-%g Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31-Dec-25 Week 52 |
FORMAT_DATE('%e-%h-%g Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31-Dec-25 Week 52 |
FORMAT_DATE('%e/%m/%Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31/12/2024 Week 52 |
FORMAT_DATE('%e/%m/%E4Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy Four-character years (0001 . 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31/12/2024 Week 52 |
FORMAT_DATE('%e/%m/%y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31/12/24 Week 52 |
FORMAT_DATE('%e/%m/%G Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31/12/2025 Week 52 |
FORMAT_DATE('%e/%m/%g Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31/12/25 Week 52 |
FORMAT_DATE('%e/%B/%Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31/December/2024 Week 52 |
FORMAT_DATE('%e/%b/%Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31/Dec/2024 Week 52 |
FORMAT_DATE('%e/%h/%Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31/Dec/2024 Week 52 |
FORMAT_DATE('%e/%B/%E4Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name Four-character years (0001 . 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31/December/2024 Week 52 |
FORMAT_DATE('%e/%b/%E4Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated Four-character years (0001 . 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31/Dec/2024 Week 52 |
FORMAT_DATE('%e/%h/%E4Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated Four-character years (0001 . 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31/Dec/2024 Week 52 |
FORMAT_DATE('%e/%B/%y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31/December/24 Week 52 |
FORMAT_DATE('%e/%b/%y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31/Dec/24 Week 52 |
FORMAT_DATE('%e/%h/%y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31/Dec/24 Week 52 |
FORMAT_DATE('%e/%B/%G Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31/December/2025 Week 52 |
FORMAT_DATE('%e/%b/%G Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31/Dec/2025 Week 52 |
FORMAT_DATE('%e/%h/%G Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31/Dec/2025 Week 52 |
FORMAT_DATE('%e/%B/%g Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31/December/25 Week 52 |
FORMAT_DATE('%e/%b/%g Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31/Dec/25 Week 52 |
FORMAT_DATE('%e/%h/%g Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31/Dec/25 Week 52 |
FORMAT_DATE('%e:%m:%Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31:12:2024 Week 52 |
FORMAT_DATE('%e:%m:%E4Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31:12:2024 Week 52 |
FORMAT_DATE('%e:%m:%y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31:12:24 Week 52 |
FORMAT_DATE('%e:%m:%G Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31:12:2025 Week 52 |
FORMAT_DATE('%e:%m:%g Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31:12:25 Week 52 |
FORMAT_DATE('%e:%B:%Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:woy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31:December:2024 Week 52 |
FORMAT_DATE('%e:%b:%Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31:Dec:2024 Week 52 |
FORMAT_DATE('%e:%h:%Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31:Dec:2024 Week 52 |
FORMAT_DATE('%e:%B:%E4Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:woy Four-character years (0001 . 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31:December:2024 Week 52 |
FORMAT_DATE('%e:%b:%E4Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated Four-character years (0001 . 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31:Dec:2024 Week 52 |
FORMAT_DATE('%e:%h:%E4Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated Four-character years (0001 . 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31:Dec:2024 Week 52 |
FORMAT_DATE('%e:%B:%y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31:December:24 Week 52 |
FORMAT_DATE('%e:%b:%y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31:Dec:24 Week 52 |
FORMAT_DATE('%e:%h:%y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31:Dec:24 Week 52 |
FORMAT_DATE('%e:%B:%G Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31:December:2025 Week 52 |
FORMAT_DATE('%e:%b:%G Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31:Dec:2025 Week 52 |
FORMAT_DATE('%e:%h:%G Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31:Dec:2025 Week 52 |
FORMAT_DATE('%e:%B:%g Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31:December:25 Week 52 |
FORMAT_DATE('%e:%b:%g Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31:Dec:25 Week 52 |
FORMAT_DATE('%e:%h:%g Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31:Dec:25 Week 52 |
FORMAT_DATE('%e.%m.%Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31.12.2024 Week 52 |
FORMAT_DATE('%e.%m.%E4Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy Four-character years (0001 . 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31.12.2024 Week 52 |
FORMAT_DATE('%e.%m.%y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31.12.24 Week 52 |
FORMAT_DATE('%e.%m.%G Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31.12.2025 Week 52 |
FORMAT_DATE('%e.%m.%g Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31.12.25 Week 52 |
FORMAT_DATE('%e.%B.%Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.woy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31.December.2024 Week 52 |
FORMAT_DATE('%e.%b.%Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31.Dec.2024 Week 52 |
FORMAT_DATE('%e.%h.%Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31.Dec.2024 Week 52 |
FORMAT_DATE('%e.%B.%E4Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.woy Four-character years (0001 . 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31.December.2024 Week 52 |
FORMAT_DATE('%e.%b.%E4Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated Four-character years (0001 . 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31.Dec.2024 Week 52 |
FORMAT_DATE('%e.%h.%E4Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated Four-character years (0001 . 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31.Dec.2024 Week 52 |
FORMAT_DATE('%e.%B.%y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31.December.24 Week 52 |
FORMAT_DATE('%e.%b.%y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31.Dec.24 Week 52 |
FORMAT_DATE('%e.%h.%y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31.Dec.24 Week 52 |
FORMAT_DATE('%e.%B.%G Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31.December.2025 Week 52 |
FORMAT_DATE('%e.%b.%G Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31.Dec.2025 Week 52 |
FORMAT_DATE('%e.%h.%G Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31.Dec.2025 Week 52 |
FORMAT_DATE('%e.%B.%g Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31.December.25 Week 52 |
FORMAT_DATE('%e.%b.%g Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31.Dec.25 Week 52 |
FORMAT_DATE('%e.%h.%g Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31.Dec.25 Week 52 |
FORMAT_DATE('%e %m %Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31 12 2024 Week 52 |
FORMAT_DATE('%e %m %E4Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy Four-character years (0001 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31 12 2024 Week 52 |
FORMAT_DATE('%e %m %y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31 12 24 Week 52 |
FORMAT_DATE('%e %m %G Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31 12 2025 Week 52 |
FORMAT_DATE('%e %m %g Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31 12 25 Week 52 |
FORMAT_DATE('%e %B %Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month woy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31 December 2024 Week 52 |
FORMAT_DATE('%e %b %Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31 Dec 2024 Week 52 |
FORMAT_DATE('%e %h %Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31 Dec 2024 Week 52 |
FORMAT_DATE('%e %B %E4Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month woy Four-character years (0001 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31 December 2024 Week 52 |
FORMAT_DATE('%e %b %E4Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy Four-character years (0001 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31 Dec 2024 Week 52 |
FORMAT_DATE('%e %h %E4Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy Four-character years (0001 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31 Dec 2024 Week 52 |
FORMAT_DATE('%e %B %y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31 December 24 Week 52 |
FORMAT_DATE('%e %b %y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31 Dec 24 Week 52 |
FORMAT_DATE('%e %h %y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31 Dec 24 Week 52 |
FORMAT_DATE('%e %B %G Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31 December 2025 Week 52 |
FORMAT_DATE('%e %b %G Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31 Dec 2025 Week 52 |
FORMAT_DATE('%e %h %G Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31 Dec 2025 Week 52 |
FORMAT_DATE('%e %B %g Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31 December 25 Week 52 |
FORMAT_DATE('%e %b %g Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31 Dec 25 Week 52 |
FORMAT_DATE('%e %h %g Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31 Dec 25 Week 52 |
FORMAT_DATE('%e%m%Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31122024 Week 52 |
FORMAT_DATE('%e%m%E4Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy Four-character years (0001 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31122024 Week 52 |
FORMAT_DATE('%e%m%y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 311224 Week 52 |
FORMAT_DATE('%e%m%G Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31122025 Week 52 |
FORMAT_DATE('%e%m%g Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 311225 Week 52 |
FORMAT_DATE('%e%B%Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthwoy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31December2024 Week 52 |
FORMAT_DATE('%e%b%Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31Dec2024 Week 52 |
FORMAT_DATE('%e%h%Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month namewoy The year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31Dec2024 Week 52 |
FORMAT_DATE('%e%B%E4Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthwoy Four-character years (0001 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31December2024 Week 52 |
FORMAT_DATE('%e%b%E4Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy Four-character years (0001 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31Dec2024 Week 52 |
FORMAT_DATE('%e%h%E4Y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy Four-character years (0001 9999) - Plus, the week number of the year (Sunday as the first day of the week) | 31Dec2024 Week 52 |
FORMAT_DATE('%e%B%y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthwoy The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31December24 Week 52 |
FORMAT_DATE('%e%b%y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31Dec24 Week 52 |
FORMAT_DATE('%e%h%y Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy The year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31Dec24 Week 52 |
FORMAT_DATE('%e%B%G Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthwoy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31December2025 Week 52 |
FORMAT_DATE('%e%b%G Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31Dec2025 Week 52 |
FORMAT_DATE('%e%h%G Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Sunday as the first day of the week) | 31Dec2025 Week 52 |
FORMAT_DATE('%e%B%g Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthwoy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31December25 Week 52 |
FORMAT_DATE('%e%b%g Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31Dec25 Week 52 |
FORMAT_DATE('%e%h%g Week %U', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Sunday as the first day of the week) | 31Dec25 Week 52 |
FORMAT_DATE('%e-%m-%Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -woy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31-12-2024 Week 53 |
FORMAT_DATE('%e-%m-%E4Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -woy Four-character years (0001 . 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31-12-2024 Week 53 |
FORMAT_DATE('%e-%m-%y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31-12-24 Week 53 |
FORMAT_DATE('%e-%m-%G Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31-12-2025 Week 53 |
FORMAT_DATE('%e-%m-%g Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) -woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31-12-25 Week 53 |
FORMAT_DATE('%e-%B-%Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -woy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31-December-2024 Week 53 |
FORMAT_DATE('%e-%b-%Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31-Dec-2024 Week 53 |
FORMAT_DATE('%e-%h-%Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name dd woy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31-Dec-2024 Week 53 |
FORMAT_DATE('%e-%B-%E4Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -woy Four-character years (0001 . 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31-December-2024 Week 53 |
FORMAT_DATE('%e-%b-%E4Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated Four-character years (0001 . 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31-Dec-2024 Week 53 |
FORMAT_DATE('%e-%h-%E4Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated Four-character years (0001 . 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31-Dec-2024 Week 53 |
FORMAT_DATE('%e-%B-%y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31-December-24 Week 53 |
FORMAT_DATE('%e-%b-%y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31-Dec-24 Week 53 |
FORMAT_DATE('%e-%h-%y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31-Dec-24 Week 53 |
FORMAT_DATE('%e-%B-%G Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31-December-2025 Week 53 |
FORMAT_DATE('%e-%b-%G Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31-Dec-2025 Week 53 |
FORMAT_DATE('%e-%h-%G Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31-Dec-2025 Week 53 |
FORMAT_DATE('%e-%B-%g Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name -woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31-December-25 Week 53 |
FORMAT_DATE('%e-%b-%g Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31-Dec-25 Week 53 |
FORMAT_DATE('%e-%h-%g Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31-Dec-25 Week 53 |
FORMAT_DATE('%e/%m/%Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31/12/2024 Week 53 |
FORMAT_DATE('%e/%m/%E4Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy Four-character years (0001 . 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31/12/2024 Week 53 |
FORMAT_DATE('%e/%m/%y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31/12/24 Week 53 |
FORMAT_DATE('%e/%m/%G Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31/12/2025 Week 53 |
FORMAT_DATE('%e/%m/%g Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31/12/25 Week 53 |
FORMAT_DATE('%e/%B/%Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31/December/2024 Week 53 |
FORMAT_DATE('%e/%b/%Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31/Dec/2024 Week 53 |
FORMAT_DATE('%e/%h/%Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31/Dec/2024 Week 53 |
FORMAT_DATE('%e/%B/%E4Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name Four-character years (0001 . 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31/December/2024 Week 53 |
FORMAT_DATE('%e/%b/%E4Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated Four-character years (0001 . 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31/Dec/2024 Week 53 |
FORMAT_DATE('%e/%h/%E4Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated Four-character years (0001 . 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31/Dec/2024 Week 53 |
FORMAT_DATE('%e/%B/%y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31/December/24 Week 53 |
FORMAT_DATE('%e/%b/%y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31/Dec/24 Week 53 |
FORMAT_DATE('%e/%h/%y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31/Dec/24 Week 53 |
FORMAT_DATE('%e/%B/%G Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31/December/2025 Week 53 |
FORMAT_DATE('%e/%b/%G Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31/Dec/2025 Week 53 |
FORMAT_DATE('%e/%h/%G Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31/Dec/2025 Week 53 |
FORMAT_DATE('%e/%B/%g Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31/December/25 Week 53 |
FORMAT_DATE('%e/%b/%g Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31/Dec/25 Week 53 |
FORMAT_DATE('%e/%h/%g Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31/Dec/25 Week 53 |
FORMAT_DATE('%e:%m:%Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31:12:2024 Week 53 |
FORMAT_DATE('%e:%m:%E4Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31:12:2024 Week 53 |
FORMAT_DATE('%e:%m:%y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31:12:24 Week 53 |
FORMAT_DATE('%e:%m:%G Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31:12:2025 Week 53 |
FORMAT_DATE('%e:%m:%g Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31:12:25 Week 53 |
FORMAT_DATE('%e:%B:%Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:woy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31:December:2024 Week 53 |
FORMAT_DATE('%e:%b:%Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31:Dec:2024 Week 53 |
FORMAT_DATE('%e:%h:%Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31:Dec:2024 Week 53 |
FORMAT_DATE('%e:%B:%E4Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:woy Four-character years (0001 . 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31:December:2024 Week 53 |
FORMAT_DATE('%e:%b:%E4Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated Four-character years (0001 . 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31:Dec:2024 Week 53 |
FORMAT_DATE('%e:%h:%E4Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated Four-character years (0001 . 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31:Dec:2024 Week 53 |
FORMAT_DATE('%e:%B:%y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31:December:24 Week 53 |
FORMAT_DATE('%e:%b:%y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31:Dec:24 Week 53 |
FORMAT_DATE('%e:%h:%y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31:Dec:24 Week 53 |
FORMAT_DATE('%e:%B:%G Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31:December:2025 Week 53 |
FORMAT_DATE('%e:%b:%G Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31:Dec:2025 Week 53 |
FORMAT_DATE('%e:%h:%G Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31:Dec:2025 Week 53 |
FORMAT_DATE('%e:%B:%g Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month:woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31:December:25 Week 53 |
FORMAT_DATE('%e:%b:%g Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31:Dec:25 Week 53 |
FORMAT_DATE('%e:%h:%g Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31:Dec:25 Week 53 |
FORMAT_DATE('%e.%m.%Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31.12.2024 Week 53 |
FORMAT_DATE('%e.%m.%E4Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy Four-character years (0001 . 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31.12.2024 Week 53 |
FORMAT_DATE('%e.%m.%y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31.12.24 Week 53 |
FORMAT_DATE('%e.%m.%G Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31.12.2025 Week 53 |
FORMAT_DATE('%e.%m.%g Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31.12.25 Week 53 |
FORMAT_DATE('%e.%B.%Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.woy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31.December.2024 Week 53 |
FORMAT_DATE('%e.%b.%Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31.Dec.2024 Week 53 |
FORMAT_DATE('%e.%h.%Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31.Dec.2024 Week 53 |
FORMAT_DATE('%e.%B.%E4Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.woy Four-character years (0001 . 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31.December.2024 Week 53 |
FORMAT_DATE('%e.%b.%E4Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated Four-character years (0001 . 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31.Dec.2024 Week 53 |
FORMAT_DATE('%e.%h.%E4Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated Four-character years (0001 . 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31.Dec.2024 Week 53 |
FORMAT_DATE('%e.%B.%y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31.December.24 Week 53 |
FORMAT_DATE('%e.%b.%y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31.Dec.24 Week 53 |
FORMAT_DATE('%e.%h.%y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31.Dec.24 Week 53 |
FORMAT_DATE('%e.%B.%G Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31.December.2025 Week 53 |
FORMAT_DATE('%e.%b.%G Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31.Dec.2025 Week 53 |
FORMAT_DATE('%e.%h.%G Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31.Dec.2025 Week 53 |
FORMAT_DATE('%e.%B.%g Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month.woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31.December.25 Week 53 |
FORMAT_DATE('%e.%b.%g Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31.Dec.25 Week 53 |
FORMAT_DATE('%e.%h.%g Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31.Dec.25 Week 53 |
FORMAT_DATE('%e %m %Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31 12 2024 Week 53 |
FORMAT_DATE('%e %m %E4Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy Four-character years (0001 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31 12 2024 Week 53 |
FORMAT_DATE('%e %m %y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31 12 24 Week 53 |
FORMAT_DATE('%e %m %G Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31 12 2025 Week 53 |
FORMAT_DATE('%e %m %g Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31 12 25 Week 53 |
FORMAT_DATE('%e %B %Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month woy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31 December 2024 Week 53 |
FORMAT_DATE('%e %b %Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31 Dec 2024 Week 53 |
FORMAT_DATE('%e %h %Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31 Dec 2024 Week 53 |
FORMAT_DATE('%e %B %E4Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month woy Four-character years (0001 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31 December 2024 Week 53 |
FORMAT_DATE('%e %b %E4Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy Four-character years (0001 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31 Dec 2024 Week 53 |
FORMAT_DATE('%e %h %E4Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy Four-character years (0001 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31 Dec 2024 Week 53 |
FORMAT_DATE('%e %B %y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31 December 24 Week 53 |
FORMAT_DATE('%e %b %y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31 Dec 24 Week 53 |
FORMAT_DATE('%e %h %y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31 Dec 24 Week 53 |
FORMAT_DATE('%e %B %G Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31 December 2025 Week 53 |
FORMAT_DATE('%e %b %G Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31 Dec 2025 Week 53 |
FORMAT_DATE('%e %h %G Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31 Dec 2025 Week 53 |
FORMAT_DATE('%e %B %g Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31 December 25 Week 53 |
FORMAT_DATE('%e %b %g Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31 Dec 25 Week 53 |
FORMAT_DATE('%e %h %g Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31 Dec 25 Week 53 |
FORMAT_DATE('%e%m%Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31122024 Week 53 |
FORMAT_DATE('%e%m%E4Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy Four-character years (0001 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31122024 Week 53 |
FORMAT_DATE('%e%m%y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 311224 Week 53 |
FORMAT_DATE('%e%m%G Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31122025 Week 53 |
FORMAT_DATE('%e%m%g Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) woy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 311225 Week 53 |
FORMAT_DATE('%e%B%Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthwoy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31December2024 Week 53 |
FORMAT_DATE('%e%b%Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31Dec2024 Week 53 |
FORMAT_DATE('%e%h%Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month namewoy The year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31Dec2024 Week 53 |
FORMAT_DATE('%e%B%E4Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthwoy Four-character years (0001 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31December2024 Week 53 |
FORMAT_DATE('%e%b%E4Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy Four-character years (0001 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31Dec2024 Week 53 |
FORMAT_DATE('%e%h%E4Y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy Four-character years (0001 9999) - Plus, the week number of the year (Monday as the first day of the week) | 31Dec2024 Week 53 |
FORMAT_DATE('%e%B%y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthwoy The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31December24 Week 53 |
FORMAT_DATE('%e%b%y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31Dec24 Week 53 |
FORMAT_DATE('%e%h%y Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy The year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31Dec24 Week 53 |
FORMAT_DATE('%e%B%G Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthwoy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31December2025 Week 53 |
FORMAT_DATE('%e%b%G Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31Dec2025 Week 53 |
FORMAT_DATE('%e%h%G Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy The ISO 8601 year with century as a decimal number - Plus, the week number of the year (Monday as the first day of the week) | 31Dec2025 Week 53 |
FORMAT_DATE('%e%B%g Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name monthwoy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31December25 Week 53 |
FORMAT_DATE('%e%b%g Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31Dec25 Week 53 |
FORMAT_DATE('%e%h%g Week %W', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name monwoy The ISO 8601 year without century as a decimal number (00-99) - Plus, the week number of the year (Monday as the first day of the week) | 31Dec25 Week 53 |
FORMAT_DATE('%e-%m-%Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-12-2024 ISO Week 01 |
FORMAT_DATE('%e-%m-%E4Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-12-2024 ISO Week 01 |
FORMAT_DATE('%e-%m-%y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-12-24 ISO Week 01 |
FORMAT_DATE('%e-%m-%G ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-12-2025 ISO Week 01 |
FORMAT_DATE('%e-%m-%g ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-12-25 ISO Week 01 |
FORMAT_DATE('%e-%B-%Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-December-2024 ISO Week 01 |
FORMAT_DATE('%e-%b-%Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-Dec-2024 ISO Week 01 |
FORMAT_DATE('%e-%h-%Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name dd The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-Dec-2024 ISO Week 01 |
FORMAT_DATE('%e-%B-%E4Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name Four-character years (0001 . 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-December-2024 ISO Week 01 |
FORMAT_DATE('%e-%b-%E4Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-Dec-2024 ISO Week 01 |
FORMAT_DATE('%e-%h-%E4Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-Dec-2024 ISO Week 01 |
FORMAT_DATE('%e-%B-%y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-December-24 ISO Week 01 |
FORMAT_DATE('%e-%b-%y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-Dec-24 ISO Week 01 |
FORMAT_DATE('%e-%h-%y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-Dec-24 ISO Week 01 |
FORMAT_DATE('%e-%B-%G ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-December-2025 ISO Week 01 |
FORMAT_DATE('%e-%b-%G ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-Dec-2025 ISO Week 01 |
FORMAT_DATE('%e-%h-%G ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-Dec-2025 ISO Week 01 |
FORMAT_DATE('%e-%B-%g ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-December-25 ISO Week 01 |
FORMAT_DATE('%e-%b-%g ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-Dec-25 ISO Week 01 |
FORMAT_DATE('%e-%h-%g ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31-Dec-25 ISO Week 01 |
FORMAT_DATE('%e/%m/%Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/12/2024 ISO Week 01 |
FORMAT_DATE('%e/%m/%E4Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/12/2024 ISO Week 01 |
FORMAT_DATE('%e/%m/%y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/12/24 ISO Week 01 |
FORMAT_DATE('%e/%m/%G ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/12/2025 ISO Week 01 |
FORMAT_DATE('%e/%m/%g ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/12/25 ISO Week 01 |
FORMAT_DATE('%e/%B/%Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/ The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/December/2024 ISO Week 01 |
FORMAT_DATE('%e/%b/%Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/Dec/2024 ISO Week 01 |
FORMAT_DATE('%e/%h/%Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/Dec/2024 ISO Week 01 |
FORMAT_DATE('%e/%B/%E4Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/ Four-character years (0001 . 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/December/2024 ISO Week 01 |
FORMAT_DATE('%e/%b/%E4Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/Dec/2024 ISO Week 01 |
FORMAT_DATE('%e/%h/%E4Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/Dec/2024 ISO Week 01 |
FORMAT_DATE('%e/%B/%y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/ The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/December/24 ISO Week 01 |
FORMAT_DATE('%e/%b/%y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/Dec/24 ISO Week 01 |
FORMAT_DATE('%e/%h/%y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/Dec/24 ISO Week 01 |
FORMAT_DATE('%e/%B/%G ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/ The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/December/2025 ISO Week 01 |
FORMAT_DATE('%e/%b/%G ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/Dec/2025 ISO Week 01 |
FORMAT_DATE('%e/%h/%G ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/Dec/2025 ISO Week 01 |
FORMAT_DATE('%e/%B/%g ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name /month/ The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/December/25 ISO Week 01 |
FORMAT_DATE('%e/%b/%g ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/Dec/25 ISO Week 01 |
FORMAT_DATE('%e/%h/%g ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31/Dec/25 ISO Week 01 |
FORMAT_DATE('%e:%m:%Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:12:2024 ISO Week 01 |
FORMAT_DATE('%e:%m:%E4Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:12:2024 ISO Week 01 |
FORMAT_DATE('%e:%m:%y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:12:24 ISO Week 01 |
FORMAT_DATE('%e:%m:%G ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:12:2025 ISO Week 01 |
FORMAT_DATE('%e:%m:%g ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:12:25 ISO Week 01 |
FORMAT_DATE('%e:%B:%Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month: The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:December:2024 ISO Week 01 |
FORMAT_DATE('%e:%b:%Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:Dec:2024 ISO Week 01 |
FORMAT_DATE('%e:%h:%Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:Dec:2024 ISO Week 01 |
FORMAT_DATE('%e:%B:%E4Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month: Four-character years (0001 . 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:December:2024 ISO Week 01 |
FORMAT_DATE('%e:%b:%E4Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:Dec:2024 ISO Week 01 |
FORMAT_DATE('%e:%h:%E4Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:Dec:2024 ISO Week 01 |
FORMAT_DATE('%e:%B:%y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month: The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:December:24 ISO Week 01 |
FORMAT_DATE('%e:%b:%y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:Dec:24 ISO Week 01 |
FORMAT_DATE('%e:%h:%y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:Dec:24 ISO Week 01 |
FORMAT_DATE('%e:%B:%G ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month: The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:December:2025 ISO Week 01 |
FORMAT_DATE('%e:%b:%G ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:Dec:2025 ISO Week 01 |
FORMAT_DATE('%e:%h:%G ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:Dec:2025 ISO Week 01 |
FORMAT_DATE('%e:%B:%g ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name :month: The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:December:25 ISO Week 01 |
FORMAT_DATE('%e:%b:%g ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:Dec:25 ISO Week 01 |
FORMAT_DATE('%e:%h:%g ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31:Dec:25 ISO Week 01 |
FORMAT_DATE('%e.%m.%Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.12.2024 ISO Week 01 |
FORMAT_DATE('%e.%m.%E4Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 . 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.12.2024 ISO Week 01 |
FORMAT_DATE('%e.%m.%y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.12.24 ISO Week 01 |
FORMAT_DATE('%e.%m.%G ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.12.2025 ISO Week 01 |
FORMAT_DATE('%e.%m.%g ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.12.25 ISO Week 01 |
FORMAT_DATE('%e.%B.%Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month. The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.December.2024 ISO Week 01 |
FORMAT_DATE('%e.%b.%Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.Dec.2024 ISO Week 01 |
FORMAT_DATE('%e.%h.%Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.Dec.2024 ISO Week 01 |
FORMAT_DATE('%e.%B.%E4Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month. Four-character years (0001 . 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.December.2024 ISO Week 01 |
FORMAT_DATE('%e.%b.%E4Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.Dec.2024 ISO Week 01 |
FORMAT_DATE('%e.%h.%E4Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 . 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.Dec.2024 ISO Week 01 |
FORMAT_DATE('%e.%B.%y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month. The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.December.24 ISO Week 01 |
FORMAT_DATE('%e.%b.%y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.Dec.24 ISO Week 01 |
FORMAT_DATE('%e.%h.%y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.Dec.24 ISO Week 01 |
FORMAT_DATE('%e.%B.%G ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month. The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.December.2025 ISO Week 01 |
FORMAT_DATE('%e.%b.%G ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.Dec.2025 ISO Week 01 |
FORMAT_DATE('%e.%h.%G ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.Dec.2025 ISO Week 01 |
FORMAT_DATE('%e.%B.%g ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name .month. The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.December.25 ISO Week 01 |
FORMAT_DATE('%e.%b.%g ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.Dec.25 ISO Week 01 |
FORMAT_DATE('%e.%h.%g ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31.Dec.25 ISO Week 01 |
FORMAT_DATE('%e %m %Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 12 2024 ISO Week 01 |
FORMAT_DATE('%e %m %E4Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 12 2024 ISO Week 01 |
FORMAT_DATE('%e %m %y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 12 24 ISO Week 01 |
FORMAT_DATE('%e %m %G ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 12 2025 ISO Week 01 |
FORMAT_DATE('%e %m %g ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 12 25 ISO Week 01 |
FORMAT_DATE('%e %B %Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 December 2024 ISO Week 01 |
FORMAT_DATE('%e %b %Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 Dec 2024 ISO Week 01 |
FORMAT_DATE('%e %h %Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 Dec 2024 ISO Week 01 |
FORMAT_DATE('%e %B %E4Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month Four-character years (0001 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 December 2024 ISO Week 01 |
FORMAT_DATE('%e %b %E4Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 Dec 2024 ISO Week 01 |
FORMAT_DATE('%e %h %E4Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name Four-character years (0001 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 Dec 2024 ISO Week 01 |
FORMAT_DATE('%e %B %y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 December 24 ISO Week 01 |
FORMAT_DATE('%e %b %y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 Dec 24 ISO Week 01 |
FORMAT_DATE('%e %h %y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 Dec 24 ISO Week 01 |
FORMAT_DATE('%e %B %G ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 December 2025 ISO Week 01 |
FORMAT_DATE('%e %b %G ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 Dec 2025 ISO Week 01 |
FORMAT_DATE('%e %h %G ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 Dec 2025 ISO Week 01 |
FORMAT_DATE('%e %B %g ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 December 25 ISO Week 01 |
FORMAT_DATE('%e %b %g ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 Dec 25 ISO Week 01 |
FORMAT_DATE('%e %h %g ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31 Dec 25 ISO Week 01 |
FORMAT_DATE('%e%m%Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31122024 ISO Week 01 |
FORMAT_DATE('%e%m%E4Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) Four-character years (0001 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31122024 ISO Week 01 |
FORMAT_DATE('%e%m%y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 311224 ISO Week 01 |
FORMAT_DATE('%e%m%G ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31122025 ISO Week 01 |
FORMAT_DATE('%e%m%g ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The month as a decimal number (01-12) The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 311225 ISO Week 01 |
FORMAT_DATE('%e%B%Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31December2024 ISO Week 01 |
FORMAT_DATE('%e%b%Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31Dec2024 ISO Week 01 |
FORMAT_DATE('%e%h%Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month name The year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31Dec2024 ISO Week 01 |
FORMAT_DATE('%e%B%E4Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month Four-character years (0001 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31December2024 ISO Week 01 |
FORMAT_DATE('%e%b%E4Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameFour-character years (0001 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31Dec2024 ISO Week 01 |
FORMAT_DATE('%e%h%E4Y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameFour-character years (0001 9999) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31Dec2024 ISO Week 01 |
FORMAT_DATE('%e%B%y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31December24 ISO Week 01 |
FORMAT_DATE('%e%b%y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31Dec24 ISO Week 01 |
FORMAT_DATE('%e%h%y ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31Dec24 ISO Week 01 |
FORMAT_DATE('%e%B%G ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31December2025 ISO Week 01 |
FORMAT_DATE('%e%b%G ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31Dec2025 ISO Week 01 |
FORMAT_DATE('%e%h%G ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe ISO 8601 year with century as a decimal number - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31Dec2025 ISO Week 01 |
FORMAT_DATE('%e%B%g ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The full month name month The ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31December25 ISO Week 01 |
FORMAT_DATE('%e%b%g ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31Dec25 ISO Week 01 |
FORMAT_DATE('%e%h%g ISO Week %V', DATE '2024-12-31') -- The day of month as a decimal number (1-31); single digits preceded by a space - The abbreviated month nameThe ISO 8601 year without century as a decimal number (00-99) - Plus, the ISO 8601-week number of the year (Monday as the first day of the week) | 31Dec25 ISO Week 01 |
FORMAT_DATE('%m-%e-%Y', DATE '2024-12-31') | 12-31-2024 |
FORMAT_DATE('%m-%e-%E4Y', DATE '2024-12-31') | 12-31-2024 |
FORMAT_DATE('%m-%e-%y', DATE '2024-12-31') | 12-31-24 |
FORMAT_DATE('%m-%e-%G', DATE '2024-12-31') | 12-31-2025 |
FORMAT_DATE('%m-%e-%g', DATE '2024-12-31') | 12-31-25 |
FORMAT_DATE('%B-%e-%Y', DATE '2024-12-31') | December-31-2024 |
FORMAT_DATE('%b-%e-%Y', DATE '2024-12-31') | Dec-31-2024 |
FORMAT_DATE('%h-%e-%Y', DATE '2024-12-31') | Dec-31-2024 |
FORMAT_DATE('%B-%e-%E4Y', DATE '2024-12-31') | December-31-2024 |
FORMAT_DATE('%b-%e-%E4Y', DATE '2024-12-31') | Dec-31-2024 |
FORMAT_DATE('%h-%e-%E4Y', DATE '2024-12-31') | Dec-31-2024 |
FORMAT_DATE('%B-%e-%y', DATE '2024-12-31') | December-31-24 |
FORMAT_DATE('%b-%e-%y', DATE '2024-12-31') | Dec-31-24 |
FORMAT_DATE('%h-%e-%y', DATE '2024-12-31') | Dec-31-24 |
FORMAT_DATE('%B-%e-%G', DATE '2024-12-31') | December-31-2025 |
FORMAT_DATE('%b-%e-%G', DATE '2024-12-31') | Dec-31-2025 |
FORMAT_DATE('%h-%e-%G', DATE '2024-12-31') | Dec-31-2025 |
FORMAT_DATE('%B-%e-%g', DATE '2024-12-31') | December-31-25 |
FORMAT_DATE('%b-%e-%g', DATE '2024-12-31') | Dec-31-25 |
FORMAT_DATE('%h-%e-%g', DATE '2024-12-31') | Dec-31-25 |
FORMAT_DATE('%m-%e-%Y Day %j', DATE '2024-12-31') | 12-31-2024 Day 366 |
FORMAT_DATE('%m-%e-%E4Y Day %j', DATE '2024-12-31') | 12-31-2024 Day 366 |
FORMAT_DATE('%m-%e-%y Day %j', DATE '2024-12-31') | 12-31-24 Day 366 |
FORMAT_DATE('%m-%e-%G Day %j', DATE '2024-12-31') | 12-31-2025 Day 366 |
FORMAT_DATE('%m-%e-%g Day %j', DATE '2024-12-31') | 12-31-25 Day 366 |
FORMAT_DATE('%B-%e-%Y Day %j', DATE '2024-12-31') | December-31-2024 Day 366 |
FORMAT_DATE('%b-%e-%Y Day %j', DATE '2024-12-31') | Dec-31-2024 Day 366 |
FORMAT_DATE('%h-%e-%Y Day %j', DATE '2024-12-31') | Dec-31-2024 Day 366 |
FORMAT_DATE('%B-%e-%E4Y Day %j', DATE '2024-12-31') | December-31-2024 Day 366 |
FORMAT_DATE('%b-%e-%E4Y Day %j', DATE '2024-12-31') | Dec-31-2024 Day 366 |
FORMAT_DATE('%h-%e-%E4Y Day %j', DATE '2024-12-31') | Dec-31-2024 Day 366 |
FORMAT_DATE('%B-%e-%y Day %j', DATE '2024-12-31') | December-31-24 Day 366 |
FORMAT_DATE('%b-%e-%y Day %j', DATE '2024-12-31') | Dec-31-24 Day 366 |
FORMAT_DATE('%h-%e-%y Day %j', DATE '2024-12-31') | Dec-31-24 Day 366 |
FORMAT_DATE('%B-%e-%G Day %j', DATE '2024-12-31') | December-31-2025 Day 366 |
FORMAT_DATE('%b-%e-%G Day %j', DATE '2024-12-31') | Dec-31-2025 Day 366 |
FORMAT_DATE('%h-%e-%G Day %j', DATE '2024-12-31') | Dec-31-2025 Day 366 |
FORMAT_DATE('%B-%e-%g Day %j', DATE '2024-12-31') | December-31-25 Day 366 |
FORMAT_DATE('%b-%e-%g Day %j', DATE '2024-12-31') | Dec-31-25 Day 366 |
FORMAT_DATE('%h-%e-%g Day %j', DATE '2024-12-31') | Dec-31-25 Day 366 |
FORMAT_DATE('%m/%e/%Y', DATE '2024-12-31') | 12/31/2024 |
FORMAT_DATE('%m/%e/%E4Y', DATE '2024-12-31') | 12/31/2024 |
FORMAT_DATE('%m/%e/%y', DATE '2024-12-31') | 12/31/24 |
FORMAT_DATE('%m/%e/%G', DATE '2024-12-31') | 12/31/2025 |
FORMAT_DATE('%m/%e/%g', DATE '2024-12-31') | 12/31/25 |
FORMAT_DATE('%B/%e/%Y', DATE '2024-12-31') | December/31/2024 |
FORMAT_DATE('%b/%e/%Y', DATE '2024-12-31') | Dec/31/2024 |
FORMAT_DATE('%h/%e/%Y', DATE '2024-12-31') | Dec/31/2024 |
FORMAT_DATE('%B/%e/%E4Y', DATE '2024-12-31') | December/31/2024 |
FORMAT_DATE('%b/%e/%E4Y', DATE '2024-12-31') | Dec/31/2024 |
FORMAT_DATE('%h/%e/%E4Y', DATE '2024-12-31') | Dec/31/2024 |
FORMAT_DATE('%B/%e/%y', DATE '2024-12-31') | December/31/24 |
FORMAT_DATE('%b/%e/%y', DATE '2024-12-31') | Dec/31/24 |
FORMAT_DATE('%h/%e/%y', DATE '2024-12-31') | Dec/31/24 |
FORMAT_DATE('%B/%e/%G', DATE '2024-12-31') | December/31/2025 |
FORMAT_DATE('%b/%e/%G', DATE '2024-12-31') | Dec/31/2025 |
FORMAT_DATE('%h/%e/%G', DATE '2024-12-31') | Dec/31/2025 |
FORMAT_DATE('%B/%e/%g', DATE '2024-12-31') | December/31/25 |
FORMAT_DATE('%b/%e/%g', DATE '2024-12-31') | Dec/31/25 |
FORMAT_DATE('%h/%e/%g', DATE '2024-12-31') | Dec/31/25 |
FORMAT_DATE('%m/%e/%Y Day %j', DATE '2024-12-31') | 12/31/2024 Day 366 |
FORMAT_DATE('%m/%e/%E4Y Day %j', DATE '2024-12-31') | 12/31/2024 Day 366 |
FORMAT_DATE('%m/%e/%y Day %j', DATE '2024-12-31') | 12/31/24 Day 366 |
FORMAT_DATE('%m/%e/%G Day %j', DATE '2024-12-31') | 12/31/2025 Day 366 |
FORMAT_DATE('%m/%e/%g Day %j', DATE '2024-12-31') | 12/31/25 Day 366 |
FORMAT_DATE('%B/%e/%Y Day %j', DATE '2024-12-31') | December/31/2024 Day 366 |
FORMAT_DATE('%b/%e/%Y Day %j', DATE '2024-12-31') | Dec/31/2024 Day 366 |
FORMAT_DATE('%h/%e/%Y Day %j', DATE '2024-12-31') | Dec/31/2024 Day 366 |
FORMAT_DATE('%B/%e/%E4Y Day %j', DATE '2024-12-31') | December/31/2024 Day 366 |
FORMAT_DATE('%b/%e/%E4Y Day %j', DATE '2024-12-31') | Dec/31/2024 Day 366 |
FORMAT_DATE('%h/%e/%E4Y Day %j', DATE '2024-12-31') | Dec/31/2024 Day 366 |
FORMAT_DATE('%B/%e/%y Day %j', DATE '2024-12-31') | December/31/24 Day 366 |
FORMAT_DATE('%b/%e/%y Day %j', DATE '2024-12-31') | Dec/31/24 Day 366 |
FORMAT_DATE('%h/%e/%y Day %j', DATE '2024-12-31') | Dec/31/24 Day 366 |
FORMAT_DATE('%B/%e/%G Day %j', DATE '2024-12-31') | December/31/2025 Day 366 |
FORMAT_DATE('%b/%e/%G Day %j', DATE '2024-12-31') | Dec/31/2025 Day 366 |
FORMAT_DATE('%h/%e/%G Day %j', DATE '2024-12-31') | Dec/31/2025 Day 366 |
FORMAT_DATE('%B/%e/%g Day %j', DATE '2024-12-31') | December/31/25 Day 366 |
FORMAT_DATE('%b/%e/%g Day %j', DATE '2024-12-31') | Dec/31/25 Day 366 |
FORMAT_DATE('%h/%e/%g Day %j', DATE '2024-12-31') | Dec/31/25 Day 366 |
FORMAT_DATE('%m:%e:%Y', DATE '2024-12-31') | 12:31:2024 |
FORMAT_DATE('%m:%e:%E4Y', DATE '2024-12-31') | 12:31:2024 |
FORMAT_DATE('%m:%e:%y', DATE '2024-12-31') | 12:31:24 |
FORMAT_DATE('%m:%e:%G', DATE '2024-12-31') | 12:31:2025 |
FORMAT_DATE('%m:%e:%g', DATE '2024-12-31') | 12:31:25 |
FORMAT_DATE('%B:%e:%Y', DATE '2024-12-31') | December:31:2024 |
FORMAT_DATE('%b:%e:%Y', DATE '2024-12-31') | Dec:31:2024 |
FORMAT_DATE('%h:%e:%Y', DATE '2024-12-31') | Dec:31:2024 |
FORMAT_DATE('%B:%e:%E4Y', DATE '2024-12-31') | December:31:2024 |
FORMAT_DATE('%b:%e:%E4Y', DATE '2024-12-31') | Dec:31:2024 |
FORMAT_DATE('%h:%e:%E4Y', DATE '2024-12-31') | Dec:31:2024 |
FORMAT_DATE('%B:%e:%y', DATE '2024-12-31') | December:31:24 |
FORMAT_DATE('%b:%e:%y', DATE '2024-12-31') | Dec:31:24 |
FORMAT_DATE('%h:%e:%y', DATE '2024-12-31') | Dec:31:24 |
FORMAT_DATE('%B:%e:%G', DATE '2024-12-31') | December:31:2025 |
FORMAT_DATE('%b:%e:%G', DATE '2024-12-31') | Dec:31:2025 |
FORMAT_DATE('%h:%e:%G', DATE '2024-12-31') | Dec:31:2025 |
FORMAT_DATE('%B:%e:%g', DATE '2024-12-31') | December:31:25 |
FORMAT_DATE('%b:%e:%g', DATE '2024-12-31') | Dec:31:25 |
FORMAT_DATE('%h:%e:%g', DATE '2024-12-31') | Dec:31:25 |
FORMAT_DATE('%m:%e:%Y Day %j', DATE '2024-12-31') | 12:31:2024 Day 366 |
FORMAT_DATE('%m:%e:%E4Y Day %j', DATE '2024-12-31') | 12:31:2024 Day 366 |
FORMAT_DATE('%m:%e:%y Day %j', DATE '2024-12-31') | 12:31:24 Day 366 |
FORMAT_DATE('%m:%e:%G Day %j', DATE '2024-12-31') | 12:31:2025 Day 366 |
FORMAT_DATE('%m:%e:%g Day %j', DATE '2024-12-31') | 12:31:25 Day 366 |
FORMAT_DATE('%B:%e:%Y Day %j', DATE '2024-12-31') | December:31:2024 Day 366 |
FORMAT_DATE('%b:%e:%Y Day %j', DATE '2024-12-31') | Dec:31:2024 Day 366 |
FORMAT_DATE('%h:%e:%Y Day %j', DATE '2024-12-31') | Dec:31:2024 Day 366 |
FORMAT_DATE('%B:%e:%E4Y Day %j', DATE '2024-12-31') | December:31:2024 Day 366 |
FORMAT_DATE('%b:%e:%E4Y Day %j', DATE '2024-12-31') | Dec:31:2024 Day 366 |
FORMAT_DATE('%h:%e:%E4Y Day %j', DATE '2024-12-31') | Dec:31:2024 Day 366 |
FORMAT_DATE('%B:%e:%y Day %j', DATE '2024-12-31') | December:31:24 Day 366 |
FORMAT_DATE('%b:%e:%y Day %j', DATE '2024-12-31') | Dec:31:24 Day 366 |
FORMAT_DATE('%h:%e:%y Day %j', DATE '2024-12-31') | Dec:31:24 Day 366 |
FORMAT_DATE('%B:%e:%G Day %j', DATE '2024-12-31') | December:31:2025 Day 366 |
FORMAT_DATE('%b:%e:%G Day %j', DATE '2024-12-31') | Dec:31:2025 Day 366 |
FORMAT_DATE('%h:%e:%G Day %j', DATE '2024-12-31') | Dec:31:2025 Day 366 |
FORMAT_DATE('%B:%e:%g Day %j', DATE '2024-12-31') | December:31:25 Day 366 |
FORMAT_DATE('%b:%e:%g Day %j', DATE '2024-12-31') | Dec:31:25 Day 366 |
FORMAT_DATE('%h:%e:%g Day %j', DATE '2024-12-31') | Dec:31:25 Day 366 |
FORMAT_DATE('%m.%e.%Y', DATE '2024-12-31') | 12.31.2024 |
FORMAT_DATE('%m.%e.%E4Y', DATE '2024-12-31') | 12.31.2024 |
FORMAT_DATE('%m.%e.%y', DATE '2024-12-31') | 12.31.24 |
FORMAT_DATE('%m.%e.%G', DATE '2024-12-31') | 12.31.2025 |
FORMAT_DATE('%m.%e.%g', DATE '2024-12-31') | 12.31.25 |
FORMAT_DATE('%B.%e.%Y', DATE '2024-12-31') | December.31.2024 |
FORMAT_DATE('%b.%e.%Y', DATE '2024-12-31') | Dec.31.2024 |
FORMAT_DATE('%h.%e.%Y', DATE '2024-12-31') | Dec.31.2024 |
FORMAT_DATE('%B.%e.%E4Y', DATE '2024-12-31') | December.31.2024 |
FORMAT_DATE('%b.%e.%E4Y', DATE '2024-12-31') | Dec.31.2024 |
FORMAT_DATE('%h.%e.%E4Y', DATE '2024-12-31') | Dec.31.2024 |
FORMAT_DATE('%B.%e.%y', DATE '2024-12-31') | December.31.24 |
FORMAT_DATE('%b.%e.%y', DATE '2024-12-31') | Dec.31.24 |
FORMAT_DATE('%h.%e.%y', DATE '2024-12-31') | Dec.31.24 |
FORMAT_DATE('%B.%e.%G', DATE '2024-12-31') | December.31.2025 |
FORMAT_DATE('%b.%e.%G', DATE '2024-12-31') | Dec.31.2025 |
FORMAT_DATE('%h.%e.%G', DATE '2024-12-31') | Dec.31.2025 |
FORMAT_DATE('%B.%e.%g', DATE '2024-12-31') | December.31.25 |
FORMAT_DATE('%b.%e.%g', DATE '2024-12-31') | Dec.31.25 |
FORMAT_DATE('%h.%e.%g', DATE '2024-12-31') | Dec.31.25 |
FORMAT_DATE('%m.%e.%Y Day %j', DATE '2024-12-31') | 12.31.2024 Day 366 |
FORMAT_DATE('%m.%e.%E4Y Day %j', DATE '2024-12-31') | 12.31.2024 Day 366 |
FORMAT_DATE('%m.%e.%y Day %j', DATE '2024-12-31') | 12.31.24 Day 366 |
FORMAT_DATE('%m.%e.%G Day %j', DATE '2024-12-31') | 12.31.2025 Day 366 |
FORMAT_DATE('%m.%e.%g Day %j', DATE '2024-12-31') | 12.31.25 Day 366 |
FORMAT_DATE('%B.%e.%Y Day %j', DATE '2024-12-31') | December.31.2024 Day 366 |
FORMAT_DATE('%b.%e.%Y Day %j', DATE '2024-12-31') | Dec.31.2024 Day 366 |
FORMAT_DATE('%h.%e.%Y Day %j', DATE '2024-12-31') | Dec.31.2024 Day 366 |
FORMAT_DATE('%B.%e.%E4Y Day %j', DATE '2024-12-31') | December.31.2024 Day 366 |
FORMAT_DATE('%b.%e.%E4Y Day %j', DATE '2024-12-31') | Dec.31.2024 Day 366 |
FORMAT_DATE('%h.%e.%E4Y Day %j', DATE '2024-12-31') | Dec.31.2024 Day 366 |
FORMAT_DATE('%B.%e.%y Day %j', DATE '2024-12-31') | December.31.24 Day 366 |
FORMAT_DATE('%b.%e.%y Day %j', DATE '2024-12-31') | Dec.31.24 Day 366 |
FORMAT_DATE('%h.%e.%y Day %j', DATE '2024-12-31') | Dec.31.24 Day 366 |
FORMAT_DATE('%B.%e.%G Day %j', DATE '2024-12-31') | December.31.2025 Day 366 |
FORMAT_DATE('%b.%e.%G Day %j', DATE '2024-12-31') | Dec.31.2025 Day 366 |
FORMAT_DATE('%h.%e.%G Day %j', DATE '2024-12-31') | Dec.31.2025 Day 366 |
FORMAT_DATE('%B.%e.%g Day %j', DATE '2024-12-31') | December.31.25 Day 366 |
FORMAT_DATE('%b.%e.%g Day %j', DATE '2024-12-31') | Dec.31.25 Day 366 |
FORMAT_DATE('%h.%e.%g Day %j', DATE '2024-12-31') | Dec.31.25 Day 366 |
FORMAT_DATE('%m %e %Y', DATE '2024-12-31') | 12 31 2024 |
FORMAT_DATE('%m %e %E4Y', DATE '2024-12-31') | 12 31 2024 |
FORMAT_DATE('%m %e %y', DATE '2024-12-31') | 12 31 24 |
FORMAT_DATE('%m %e %G', DATE '2024-12-31') | 12 31 2025 |
FORMAT_DATE('%m %e %g', DATE '2024-12-31') | 12 31 25 |
FORMAT_DATE('%B %e %Y', DATE '2024-12-31') | December 31 2024 |
FORMAT_DATE('%b %e %Y', DATE '2024-12-31') | Dec 31 2024 |
FORMAT_DATE('%h %e %Y', DATE '2024-12-31') | Dec 31 2024 |
FORMAT_DATE('%B %e %E4Y', DATE '2024-12-31') | December 31 2024 |
FORMAT_DATE('%b %e %E4Y', DATE '2024-12-31') | Dec 31 2024 |
FORMAT_DATE('%h %e %E4Y', DATE '2024-12-31') | Dec 31 2024 |
FORMAT_DATE('%B %e %y', DATE '2024-12-31') | December 31 24 |
FORMAT_DATE('%b %e %y', DATE '2024-12-31') | Dec 31 24 |
FORMAT_DATE('%h %e %y', DATE '2024-12-31') | Dec 31 24 |
FORMAT_DATE('%B %e %G', DATE '2024-12-31') | December 31 2025 |
FORMAT_DATE('%b %e %G', DATE '2024-12-31') | Dec 31 2025 |
FORMAT_DATE('%h %e %G', DATE '2024-12-31') | Dec 31 2025 |
FORMAT_DATE('%B %e %g', DATE '2024-12-31') | December 31 25 |
FORMAT_DATE('%b %e %g', DATE '2024-12-31') | Dec 31 25 |
FORMAT_DATE('%h %e %g', DATE '2024-12-31') | Dec 31 25 |
FORMAT_DATE('%m %e %Y Day %j', DATE '2024-12-31') | 12 31 2024 Day 366 |
FORMAT_DATE('%m %e %E4Y Day %j', DATE '2024-12-31') | 12 31 2024 Day 366 |
FORMAT_DATE('%m %e %y Day %j', DATE '2024-12-31') | 12 31 24 Day 366 |
FORMAT_DATE('%m %e %G Day %j', DATE '2024-12-31') | 12 31 2025 Day 366 |
FORMAT_DATE('%m %e %g Day %j', DATE '2024-12-31') | 12 31 25 Day 366 |
FORMAT_DATE('%B %e %Y Day %j', DATE '2024-12-31') | December 31 2024 Day 366 |
FORMAT_DATE('%b %e %Y Day %j', DATE '2024-12-31') | Dec 31 2024 Day 366 |
FORMAT_DATE('%h %e %Y Day %j', DATE '2024-12-31') | Dec 31 2024 Day 366 |
FORMAT_DATE('%B %e %E4Y Day %j', DATE '2024-12-31') | December 31 2024 Day 366 |
FORMAT_DATE('%b %e %E4Y Day %j', DATE '2024-12-31') | Dec 31 2024 Day 366 |
FORMAT_DATE('%h %e %E4Y Day %j', DATE '2024-12-31') | Dec 31 2024 Day 366 |
FORMAT_DATE('%B %e %y Day %j', DATE '2024-12-31') | December 31 24 Day 366 |
FORMAT_DATE('%b %e %y Day %j', DATE '2024-12-31') | Dec 31 24 Day 366 |
FORMAT_DATE('%h %e %y Day %j', DATE '2024-12-31') | Dec 31 24 Day 366 |
FORMAT_DATE('%B %e %G Day %j', DATE '2024-12-31') | December 31 2025 Day 366 |
FORMAT_DATE('%b %e %G Day %j', DATE '2024-12-31') | Dec 31 2025 Day 366 |
FORMAT_DATE('%h %e %G Day %j', DATE '2024-12-31') | Dec 31 2025 Day 366 |
FORMAT_DATE('%B %e %g Day %j', DATE '2024-12-31') | December 31 25 Day 366 |
FORMAT_DATE('%b %e %g Day %j', DATE '2024-12-31') | Dec 31 25 Day 366 |
FORMAT_DATE('%h %e %g Day %j', DATE '2024-12-31') | Dec 31 25 Day 366 |
FORMAT_DATE('%m%e%Y', DATE '2024-12-31') | 12312024 |
FORMAT_DATE('%m%e%E4Y', DATE '2024-12-31') | 12312024 |
FORMAT_DATE('%m%e%y', DATE '2024-12-31') | 123124 |
FORMAT_DATE('%m%e%G', DATE '2024-12-31') | 12312025 |
FORMAT_DATE('%m%e%g', DATE '2024-12-31') | 123125 |
FORMAT_DATE('%B%e%Y', DATE '2024-12-31') | December312024 |
FORMAT_DATE('%b%e%Y', DATE '2024-12-31') | Dec312024 |
FORMAT_DATE('%h%e%Y', DATE '2024-12-31') | Dec312024 |
FORMAT_DATE('%B%e%E4Y', DATE '2024-12-31') | December312024 |
FORMAT_DATE('%b%e%E4Y', DATE '2024-12-31') | Dec312024 |
FORMAT_DATE('%h%e%E4Y', DATE '2024-12-31') | Dec312024 |
FORMAT_DATE('%B%e%y', DATE '2024-12-31') | December3124 |
FORMAT_DATE('%b%e%y', DATE '2024-12-31') | Dec3124 |
FORMAT_DATE('%h%e%y', DATE '2024-12-31') | Dec3124 |
FORMAT_DATE('%B%e%G', DATE '2024-12-31') | December312025 |
FORMAT_DATE('%b%e%G', DATE '2024-12-31') | Dec312025 |
FORMAT_DATE('%h%e%G', DATE '2024-12-31') | Dec312025 |
FORMAT_DATE('%B%e%g', DATE '2024-12-31') | December3125 |
FORMAT_DATE('%b%e%g', DATE '2024-12-31') | Dec3125 |
FORMAT_DATE('%h%e%g', DATE '2024-12-31') | Dec3125 |
FORMAT_DATE('%m%e%Y Day %j', DATE '2024-12-31') | 12312024 Day 366 |
FORMAT_DATE('%m%e%E4Y Day %j', DATE '2024-12-31') | 12312024 Day 366 |
FORMAT_DATE('%m%e%y Day %j', DATE '2024-12-31') | 123124 Day 366 |
FORMAT_DATE('%m%e%G Day %j', DATE '2024-12-31') | 12312025 Day 366 |
FORMAT_DATE('%m%e%g Day %j', DATE '2024-12-31') | 123125 Day 366 |
FORMAT_DATE('%B%e%Y Day %j', DATE '2024-12-31') | December312024 Day 366 |
FORMAT_DATE('%b%e%Y Day %j', DATE '2024-12-31') | Dec312024 Day 366 |
FORMAT_DATE('%h%e%Y Day %j', DATE '2024-12-31') | Dec312024 Day 366 |
FORMAT_DATE('%B%e%E4Y Day %j', DATE '2024-12-31') | December312024 Day 366 |
FORMAT_DATE('%b%e%E4Y Day %j', DATE '2024-12-31') | Dec312024 Day 366 |
FORMAT_DATE('%h%e%E4Y Day %j', DATE '2024-12-31') | Dec312024 Day 366 |
FORMAT_DATE('%B%e%y Day %j', DATE '2024-12-31') | December3124 Day 366 |
FORMAT_DATE('%b%e%y Day %j', DATE '2024-12-31') | Dec3124 Day 366 |
FORMAT_DATE('%h%e%y Day %j', DATE '2024-12-31') | Dec3124 Day 366 |
FORMAT_DATE('%B%e%G Day %j', DATE '2024-12-31') | December312025 Day 366 |
FORMAT_DATE('%b%e%G Day %j', DATE '2024-12-31') | Dec312025 Day 366 |
FORMAT_DATE('%h%e%G Day %j', DATE '2024-12-31') | Dec312025 Day 366 |
FORMAT_DATE('%B%e%g Day %j', DATE '2024-12-31') | December3125 Day 366 |
FORMAT_DATE('%b%e%g Day %j', DATE '2024-12-31') | Dec3125 Day 366 |
FORMAT_DATE('%h%e%g Day %j', DATE '2024-12-31') | Dec3125 Day 366 |
FORMAT_DATE('%m-%e-%Y %A', DATE '2024-12-31') | 12-31-2024 Tuesday |
FORMAT_DATE('%m-%e-%E4Y %A', DATE '2024-12-31') | 12-31-2024 Tuesday |
FORMAT_DATE('%m-%e-%y %A', DATE '2024-12-31') | 12-31-24 Tuesday |
FORMAT_DATE('%m-%e-%G %A', DATE '2024-12-31') | 12-31-2025 Tuesday |
FORMAT_DATE('%m-%e-%g %A', DATE '2024-12-31') | 12-31-25 Tuesday |
FORMAT_DATE('%B-%e-%Y %A', DATE '2024-12-31') | December-31-2024 Tuesday |
FORMAT_DATE('%b-%e-%Y %A', DATE '2024-12-31') | Dec-31-2024 Tuesday |
FORMAT_DATE('%h-%e-%Y %A', DATE '2024-12-31') | Dec-31-2024 Tuesday |
FORMAT_DATE('%B-%e-%E4Y %A', DATE '2024-12-31') | December-31-2024 Tuesday |
FORMAT_DATE('%b-%e-%E4Y %A', DATE '2024-12-31') | Dec-31-2024 Tuesday |
FORMAT_DATE('%h-%e-%E4Y %A', DATE '2024-12-31') | Dec-31-2024 Tuesday |
FORMAT_DATE('%B-%e-%y %A', DATE '2024-12-31') | December-31-24 Tuesday |
FORMAT_DATE('%b-%e-%y %A', DATE '2024-12-31') | Dec-31-24 Tuesday |
FORMAT_DATE('%h-%e-%y %A', DATE '2024-12-31') | Dec-31-24 Tuesday |
FORMAT_DATE('%B-%e-%G %A', DATE '2024-12-31') | December-31-2025 Tuesday |
FORMAT_DATE('%b-%e-%G %A', DATE '2024-12-31') | Dec-31-2025 Tuesday |
FORMAT_DATE('%h-%e-%G %A', DATE '2024-12-31') | Dec-31-2025 Tuesday |
FORMAT_DATE('%B-%e-%g %A', DATE '2024-12-31') | December-31-25 Tuesday |
FORMAT_DATE('%b-%e-%g %A', DATE '2024-12-31') | Dec-31-25 Tuesday |
FORMAT_DATE('%h-%e-%g %A', DATE '2024-12-31') | Dec-31-25 Tuesday |
FORMAT_DATE('%m/%e/%Y %A', DATE '2024-12-31') | 12/31/2024 Tuesday |
FORMAT_DATE('%m/%e/%E4Y %A', DATE '2024-12-31') | 12/31/2024 Tuesday |
FORMAT_DATE('%m/%e/%y %A', DATE '2024-12-31') | 12/31/24 Tuesday |
FORMAT_DATE('%m/%e/%G %A', DATE '2024-12-31') | 12/31/2025 Tuesday |
FORMAT_DATE('%m/%e/%g %A', DATE '2024-12-31') | 12/31/25 Tuesday |
FORMAT_DATE('%B/%e/%Y %A', DATE '2024-12-31') | December/31/2024 Tuesday |
FORMAT_DATE('%b/%e/%Y %A', DATE '2024-12-31') | Dec/31/2024 Tuesday |
FORMAT_DATE('%h/%e/%Y %A', DATE '2024-12-31') | Dec/31/2024 Tuesday |
FORMAT_DATE('%B/%e/%E4Y %A', DATE '2024-12-31') | December/31/2024 Tuesday |
FORMAT_DATE('%b/%e/%E4Y %A', DATE '2024-12-31') | Dec/31/2024 Tuesday |
FORMAT_DATE('%h/%e/%E4Y %A', DATE '2024-12-31') | Dec/31/2024 Tuesday |
FORMAT_DATE('%B/%e/%y %A', DATE '2024-12-31') | December/31/24 Tuesday |
FORMAT_DATE('%b/%e/%y %A', DATE '2024-12-31') | Dec/31/24 Tuesday |
FORMAT_DATE('%h/%e/%y %A', DATE '2024-12-31') | Dec/31/24 Tuesday |
FORMAT_DATE('%B/%e/%G %A', DATE '2024-12-31') | December/31/2025 Tuesday |
FORMAT_DATE('%b/%e/%G %A', DATE '2024-12-31') | Dec/31/2025 Tuesday |
FORMAT_DATE('%h/%e/%G %A', DATE '2024-12-31') | Dec/31/2025 Tuesday |
FORMAT_DATE('%B/%e/%g %A', DATE '2024-12-31') | December/31/25 Tuesday |
FORMAT_DATE('%b/%e/%g %A', DATE '2024-12-31') | Dec/31/25 Tuesday |
FORMAT_DATE('%h/%e/%g %A', DATE '2024-12-31') | Dec/31/25 Tuesday |
FORMAT_DATE('%m:%e:%Y %A', DATE '2024-12-31') | 12:31:2024 Tuesday |
FORMAT_DATE('%m:%e:%E4Y %A', DATE '2024-12-31') | 12:31:2024 Tuesday |
FORMAT_DATE('%m:%e:%y %A', DATE '2024-12-31') | 12:31:24 Tuesday |
FORMAT_DATE('%m:%e:%G %A', DATE '2024-12-31') | 12:31:2025 Tuesday |
FORMAT_DATE('%m:%e:%g %A', DATE '2024-12-31') | 12:31:25 Tuesday |
FORMAT_DATE('%B:%e:%Y %A', DATE '2024-12-31') | December:31:2024 Tuesday |
FORMAT_DATE('%b:%e:%Y %A', DATE '2024-12-31') | Dec:31:2024 Tuesday |
FORMAT_DATE('%h:%e:%Y %A', DATE '2024-12-31') | Dec:31:2024 Tuesday |
FORMAT_DATE('%B:%e:%E4Y %A', DATE '2024-12-31') | December:31:2024 Tuesday |
FORMAT_DATE('%b:%e:%E4Y %A', DATE '2024-12-31') | Dec:31:2024 Tuesday |
FORMAT_DATE('%h:%e:%E4Y %A', DATE '2024-12-31') | Dec:31:2024 Tuesday |
FORMAT_DATE('%B:%e:%y %A', DATE '2024-12-31') | December:31:24 Tuesday |
FORMAT_DATE('%b:%e:%y %A', DATE '2024-12-31') | Dec:31:24 Tuesday |
FORMAT_DATE('%h:%e:%y %A', DATE '2024-12-31') | Dec:31:24 Tuesday |
FORMAT_DATE('%B:%e:%G %A', DATE '2024-12-31') | December:31:2025 Tuesday |
FORMAT_DATE('%b:%e:%G %A', DATE '2024-12-31') | Dec:31:2025 Tuesday |
FORMAT_DATE('%h:%e:%G %A', DATE '2024-12-31') | Dec:31:2025 Tuesday |
FORMAT_DATE('%B:%e:%g %A', DATE '2024-12-31') | December:31:25 Tuesday |
FORMAT_DATE('%b:%e:%g %A', DATE '2024-12-31') | Dec:31:25 Tuesday |
FORMAT_DATE('%h:%e:%g %A', DATE '2024-12-31') | Dec:31:25 Tuesday |
FORMAT_DATE('%m.%e.%Y %A', DATE '2024-12-31') | 12.31.2024 Tuesday |
FORMAT_DATE('%m.%e.%E4Y %A', DATE '2024-12-31') | 12.31.2024 Tuesday |
FORMAT_DATE('%m.%e.%y %A', DATE '2024-12-31') | 12.31.24 Tuesday |
FORMAT_DATE('%m.%e.%G %A', DATE '2024-12-31') | 12.31.2025 Tuesday |
FORMAT_DATE('%m.%e.%g %A', DATE '2024-12-31') | 12.31.25 Tuesday |
FORMAT_DATE('%B.%e.%Y %A', DATE '2024-12-31') | December.31.2024 Tuesday |
FORMAT_DATE('%b.%e.%Y %A', DATE '2024-12-31') | Dec.31.2024 Tuesday |
FORMAT_DATE('%h.%e.%Y %A', DATE '2024-12-31') | Dec.31.2024 Tuesday |
FORMAT_DATE('%B.%e.%E4Y %A', DATE '2024-12-31') | December.31.2024 Tuesday |
FORMAT_DATE('%b.%e.%E4Y %A', DATE '2024-12-31') | Dec.31.2024 Tuesday |
FORMAT_DATE('%h.%e.%E4Y %A', DATE '2024-12-31') | Dec.31.2024 Tuesday |
FORMAT_DATE('%B.%e.%y %A', DATE '2024-12-31') | December.31.24 Tuesday |
FORMAT_DATE('%b.%e.%y %A', DATE '2024-12-31') | Dec.31.24 Tuesday |
FORMAT_DATE('%h.%e.%y %A', DATE '2024-12-31') | Dec.31.24 Tuesday |
FORMAT_DATE('%B.%e.%G %A', DATE '2024-12-31') | December.31.2025 Tuesday |
FORMAT_DATE('%b.%e.%G %A', DATE '2024-12-31') | Dec.31.2025 Tuesday |
FORMAT_DATE('%h.%e.%G %A', DATE '2024-12-31') | Dec.31.2025 Tuesday |
FORMAT_DATE('%B.%e.%g %A', DATE '2024-12-31') | December.31.25 Tuesday |
FORMAT_DATE('%b.%e.%g %A', DATE '2024-12-31') | Dec.31.25 Tuesday |
FORMAT_DATE('%h.%e.%g %A', DATE '2024-12-31') | Dec.31.25 Tuesday |
FORMAT_DATE('%m %e %Y %A', DATE '2024-12-31') | 12 31 2024 Tuesday |
FORMAT_DATE('%m %e %E4Y %A', DATE '2024-12-31') | 12 31 2024 Tuesday |
FORMAT_DATE('%m %e %y %A', DATE '2024-12-31') | 12 31 24 Tuesday |
FORMAT_DATE('%m %e %G %A', DATE '2024-12-31') | 12 31 2025 Tuesday |
FORMAT_DATE('%m %e %g %A', DATE '2024-12-31') | 12 31 25 Tuesday |
FORMAT_DATE('%B %e %Y %A', DATE '2024-12-31') | December 31 2024 Tuesday |
FORMAT_DATE('%b %e %Y %A', DATE '2024-12-31') | Dec 31 2024 Tuesday |
FORMAT_DATE('%h %e %Y %A', DATE '2024-12-31') | Dec 31 2024 Tuesday |
FORMAT_DATE('%B %e %E4Y %A', DATE '2024-12-31') | December 31 2024 Tuesday |
FORMAT_DATE('%b %e %E4Y %A', DATE '2024-12-31') | Dec 31 2024 Tuesday |
FORMAT_DATE('%h %e %E4Y %A', DATE '2024-12-31') | Dec 31 2024 Tuesday |
FORMAT_DATE('%B %e %y %A', DATE '2024-12-31') | December 31 24 Tuesday |
FORMAT_DATE('%b %e %y %A', DATE '2024-12-31') | Dec 31 24 Tuesday |
FORMAT_DATE('%h %e %y %A', DATE '2024-12-31') | Dec 31 24 Tuesday |
FORMAT_DATE('%B %e %G %A', DATE '2024-12-31') | December 31 2025 Tuesday |
FORMAT_DATE('%b %e %G %A', DATE '2024-12-31') | Dec 31 2025 Tuesday |
FORMAT_DATE('%h %e %G %A', DATE '2024-12-31') | Dec 31 2025 Tuesday |
FORMAT_DATE('%B %e %g %A', DATE '2024-12-31') | December 31 25 Tuesday |
FORMAT_DATE('%b %e %g %A', DATE '2024-12-31') | Dec 31 25 Tuesday |
FORMAT_DATE('%h %e %g %A', DATE '2024-12-31') | Dec 31 25 Tuesday |
FORMAT_DATE('%m%e%Y %A', DATE '2024-12-31') | 12312024 Tuesday |
FORMAT_DATE('%m%e%E4Y %A', DATE '2024-12-31') | 12312024 Tuesday |
FORMAT_DATE('%m%e%y %A', DATE '2024-12-31') | 123124 Tuesday |
FORMAT_DATE('%m%e%G %A', DATE '2024-12-31') | 12312025 Tuesday |
FORMAT_DATE('%m%e%g %A', DATE '2024-12-31') | 123125 Tuesday |
FORMAT_DATE('%B%e%Y %A', DATE '2024-12-31') | December312024 Tuesday |
FORMAT_DATE('%b%e%Y %A', DATE '2024-12-31') | Dec312024 Tuesday |
FORMAT_DATE('%h%e%Y %A', DATE '2024-12-31') | Dec312024 Tuesday |
FORMAT_DATE('%B%e%E4Y %A', DATE '2024-12-31') | December312024 Tuesday |
FORMAT_DATE('%b%e%E4Y %A', DATE '2024-12-31') | Dec312024 Tuesday |
FORMAT_DATE('%h%e%E4Y %A', DATE '2024-12-31') | Dec312024 Tuesday |
FORMAT_DATE('%B%e%y %A', DATE '2024-12-31') | December3124 Tuesday |
FORMAT_DATE('%b%e%y %A', DATE '2024-12-31') | Dec3124 Tuesday |
FORMAT_DATE('%h%e%y %A', DATE '2024-12-31') | Dec3124 Tuesday |
FORMAT_DATE('%B%e%G %A', DATE '2024-12-31') | December312025 Tuesday |
FORMAT_DATE('%b%e%G %A', DATE '2024-12-31') | Dec312025 Tuesday |
FORMAT_DATE('%h%e%G %A', DATE '2024-12-31') | Dec312025 Tuesday |
FORMAT_DATE('%B%e%g %A', DATE '2024-12-31') | December3125 Tuesday |
FORMAT_DATE('%b%e%g %A', DATE '2024-12-31') | Dec3125 Tuesday |
FORMAT_DATE('%h%e%g %A', DATE '2024-12-31') | Dec3125 Tuesday |
FORMAT_DATE('%m-%e-%Y %a', DATE '2024-12-31') | 12-31-2024 Tue |
FORMAT_DATE('%m-%e-%E4Y %a', DATE '2024-12-31') | 12-31-2024 Tue |
FORMAT_DATE('%m-%e-%y %a', DATE '2024-12-31') | 12-31-24 Tue |
FORMAT_DATE('%m-%e-%G %a', DATE '2024-12-31') | 12-31-2025 Tue |
FORMAT_DATE('%m-%e-%g %a', DATE '2024-12-31') | 12-31-25 Tue |
FORMAT_DATE('%B-%e-%Y %a', DATE '2024-12-31') | December-31-2024 Tue |
FORMAT_DATE('%b-%e-%Y %a', DATE '2024-12-31') | Dec-31-2024 Tue |
FORMAT_DATE('%h-%e-%Y %a', DATE '2024-12-31') | Dec-31-2024 Tue |
FORMAT_DATE('%B-%e-%E4Y %a', DATE '2024-12-31') | December-31-2024 Tue |
FORMAT_DATE('%b-%e-%E4Y %a', DATE '2024-12-31') | Dec-31-2024 Tue |
FORMAT_DATE('%h-%e-%E4Y %a', DATE '2024-12-31') | Dec-31-2024 Tue |
FORMAT_DATE('%B-%e-%y %a', DATE '2024-12-31') | December-31-24 Tue |
FORMAT_DATE('%b-%e-%y %a', DATE '2024-12-31') | Dec-31-24 Tue |
FORMAT_DATE('%h-%e-%y %a', DATE '2024-12-31') | Dec-31-24 Tue |
FORMAT_DATE('%B-%e-%G %a', DATE '2024-12-31') | December-31-2025 Tue |
FORMAT_DATE('%b-%e-%G %a', DATE '2024-12-31') | Dec-31-2025 Tue |
FORMAT_DATE('%h-%e-%G %a', DATE '2024-12-31') | Dec-31-2025 Tue |
FORMAT_DATE('%B-%e-%g %a', DATE '2024-12-31') | December-31-25 Tue |
FORMAT_DATE('%b-%e-%g %a', DATE '2024-12-31') | Dec-31-25 Tue |
FORMAT_DATE('%h-%e-%g %a', DATE '2024-12-31') | Dec-31-25 Tue |
FORMAT_DATE('%m/%e/%Y %a', DATE '2024-12-31') | 12/31/2024 Tue |
FORMAT_DATE('%m/%e/%E4Y %a', DATE '2024-12-31') | 12/31/2024 Tue |
FORMAT_DATE('%m/%e/%y %a', DATE '2024-12-31') | 12/31/24 Tue |
FORMAT_DATE('%m/%e/%G %a', DATE '2024-12-31') | 12/31/2025 Tue |
FORMAT_DATE('%m/%e/%g %a', DATE '2024-12-31') | 12/31/25 Tue |
FORMAT_DATE('%B/%e/%Y %a', DATE '2024-12-31') | December/31/2024 Tue |
FORMAT_DATE('%b/%e/%Y %a', DATE '2024-12-31') | Dec/31/2024 Tue |
FORMAT_DATE('%h/%e/%Y %a', DATE '2024-12-31') | Dec/31/2024 Tue |
FORMAT_DATE('%B/%e/%E4Y %a', DATE '2024-12-31') | December/31/2024 Tue |
FORMAT_DATE('%b/%e/%E4Y %a', DATE '2024-12-31') | Dec/31/2024 Tue |
FORMAT_DATE('%h/%e/%E4Y %a', DATE '2024-12-31') | Dec/31/2024 Tue |
FORMAT_DATE('%B/%e/%y %a', DATE '2024-12-31') | December/31/24 Tue |
FORMAT_DATE('%b/%e/%y %a', DATE '2024-12-31') | Dec/31/24 Tue |
FORMAT_DATE('%h/%e/%y %a', DATE '2024-12-31') | Dec/31/24 Tue |
FORMAT_DATE('%B/%e/%G %a', DATE '2024-12-31') | December/31/2025 Tue |
FORMAT_DATE('%b/%e/%G %a', DATE '2024-12-31') | Dec/31/2025 Tue |
FORMAT_DATE('%h/%e/%G %a', DATE '2024-12-31') | Dec/31/2025 Tue |
FORMAT_DATE('%B/%e/%g %a', DATE '2024-12-31') | December/31/25 Tue |
FORMAT_DATE('%b/%e/%g %a', DATE '2024-12-31') | Dec/31/25 Tue |
FORMAT_DATE('%h/%e/%g %a', DATE '2024-12-31') | Dec/31/25 Tue |
FORMAT_DATE('%m:%e:%Y %a', DATE '2024-12-31') | 12:31:2024 Tue |
FORMAT_DATE('%m:%e:%E4Y %a', DATE '2024-12-31') | 12:31:2024 Tue |
FORMAT_DATE('%m:%e:%y %a', DATE '2024-12-31') | 12:31:24 Tue |
FORMAT_DATE('%m:%e:%G %a', DATE '2024-12-31') | 12:31:2025 Tue |
FORMAT_DATE('%m:%e:%g %a', DATE '2024-12-31') | 12:31:25 Tue |
FORMAT_DATE('%B:%e:%Y %a', DATE '2024-12-31') | December:31:2024 Tue |
FORMAT_DATE('%b:%e:%Y %a', DATE '2024-12-31') | Dec:31:2024 Tue |
FORMAT_DATE('%h:%e:%Y %a', DATE '2024-12-31') | Dec:31:2024 Tue |
FORMAT_DATE('%B:%e:%E4Y %a', DATE '2024-12-31') | December:31:2024 Tue |
FORMAT_DATE('%b:%e:%E4Y %a', DATE '2024-12-31') | Dec:31:2024 Tue |
FORMAT_DATE('%h:%e:%E4Y %a', DATE '2024-12-31') | Dec:31:2024 Tue |
FORMAT_DATE('%B:%e:%y %a', DATE '2024-12-31') | December:31:24 Tue |
FORMAT_DATE('%b:%e:%y %a', DATE '2024-12-31') | Dec:31:24 Tue |
FORMAT_DATE('%h:%e:%y %a', DATE '2024-12-31') | Dec:31:24 Tue |
FORMAT_DATE('%B:%e:%G %a', DATE '2024-12-31') | December:31:2025 Tue |
FORMAT_DATE('%b:%e:%G %a', DATE '2024-12-31') | Dec:31:2025 Tue |
FORMAT_DATE('%h:%e:%G %a', DATE '2024-12-31') | Dec:31:2025 Tue |
FORMAT_DATE('%B:%e:%g %a', DATE '2024-12-31') | December:31:25 Tue |
FORMAT_DATE('%b:%e:%g %a', DATE '2024-12-31') | Dec:31:25 Tue |
FORMAT_DATE('%h:%e:%g %a', DATE '2024-12-31') | Dec:31:25 Tue |
FORMAT_DATE('%m.%e.%Y %a', DATE '2024-12-31') | 12.31.2024 Tue |
FORMAT_DATE('%m.%e.%E4Y %a', DATE '2024-12-31') | 12.31.2024 Tue |
FORMAT_DATE('%m.%e.%y %a', DATE '2024-12-31') | 12.31.24 Tue |
FORMAT_DATE('%m.%e.%G %a', DATE '2024-12-31') | 12.31.2025 Tue |
FORMAT_DATE('%m.%e.%g %a', DATE '2024-12-31') | 12.31.25 Tue |
FORMAT_DATE('%B.%e.%Y %a', DATE '2024-12-31') | December.31.2024 Tue |
FORMAT_DATE('%b.%e.%Y %a', DATE '2024-12-31') | Dec.31.2024 Tue |
FORMAT_DATE('%h.%e.%Y %a', DATE '2024-12-31') | Dec.31.2024 Tue |
FORMAT_DATE('%B.%e.%E4Y %a', DATE '2024-12-31') | December.31.2024 Tue |
FORMAT_DATE('%b.%e.%E4Y %a', DATE '2024-12-31') | Dec.31.2024 Tue |
FORMAT_DATE('%h.%e.%E4Y %a', DATE '2024-12-31') | Dec.31.2024 Tue |
FORMAT_DATE('%B.%e.%y %a', DATE '2024-12-31') | December.31.24 Tue |
FORMAT_DATE('%b.%e.%y %a', DATE '2024-12-31') | Dec.31.24 Tue |
FORMAT_DATE('%h.%e.%y %a', DATE '2024-12-31') | Dec.31.24 Tue |
FORMAT_DATE('%B.%e.%G %a', DATE '2024-12-31') | December.31.2025 Tue |
FORMAT_DATE('%b.%e.%G %a', DATE '2024-12-31') | Dec.31.2025 Tue |
FORMAT_DATE('%h.%e.%G %a', DATE '2024-12-31') | Dec.31.2025 Tue |
FORMAT_DATE('%B.%e.%g %a', DATE '2024-12-31') | December.31.25 Tue |
FORMAT_DATE('%b.%e.%g %a', DATE '2024-12-31') | Dec.31.25 Tue |
FORMAT_DATE('%h.%e.%g %a', DATE '2024-12-31') | Dec.31.25 Tue |
FORMAT_DATE('%m %e %Y %a', DATE '2024-12-31') | 12 31 2024 Tue |
FORMAT_DATE('%m %e %E4Y %a', DATE '2024-12-31') | 12 31 2024 Tue |
FORMAT_DATE('%m %e %y %a', DATE '2024-12-31') | 12 31 24 Tue |
FORMAT_DATE('%m %e %G %a', DATE '2024-12-31') | 12 31 2025 Tue |
FORMAT_DATE('%m %e %g %a', DATE '2024-12-31') | 12 31 25 Tue |
FORMAT_DATE('%B %e %Y %a', DATE '2024-12-31') | December 31 2024 Tue |
FORMAT_DATE('%b %e %Y %a', DATE '2024-12-31') | Dec 31 2024 Tue |
FORMAT_DATE('%h %e %Y %a', DATE '2024-12-31') | Dec 31 2024 Tue |
FORMAT_DATE('%B %e %E4Y %a', DATE '2024-12-31') | December 31 2024 Tue |
FORMAT_DATE('%b %e %E4Y %a', DATE '2024-12-31') | Dec 31 2024 Tue |
FORMAT_DATE('%h %e %E4Y %a', DATE '2024-12-31') | Dec 31 2024 Tue |
FORMAT_DATE('%B %e %y %a', DATE '2024-12-31') | December 31 24 Tue |
FORMAT_DATE('%b %e %y %a', DATE '2024-12-31') | Dec 31 24 Tue |
FORMAT_DATE('%h %e %y %a', DATE '2024-12-31') | Dec 31 24 Tue |
FORMAT_DATE('%B %e %G %a', DATE '2024-12-31') | December 31 2025 Tue |
FORMAT_DATE('%b %e %G %a', DATE '2024-12-31') | Dec 31 2025 Tue |
FORMAT_DATE('%h %e %G %a', DATE '2024-12-31') | Dec 31 2025 Tue |
FORMAT_DATE('%B %e %g %a', DATE '2024-12-31') | December 31 25 Tue |
FORMAT_DATE('%b %e %g %a', DATE '2024-12-31') | Dec 31 25 Tue |
FORMAT_DATE('%h %e %g %a', DATE '2024-12-31') | Dec 31 25 Tue |
FORMAT_DATE('%m%e%Y %a', DATE '2024-12-31') | 12312024 Tue |
FORMAT_DATE('%m%e%E4Y %a', DATE '2024-12-31') | 12312024 Tue |
FORMAT_DATE('%m%e%y %a', DATE '2024-12-31') | 123124 Tue |
FORMAT_DATE('%m%e%G %a', DATE '2024-12-31') | 12312025 Tue |
FORMAT_DATE('%m%e%g %a', DATE '2024-12-31') | 123125 Tue |
FORMAT_DATE('%B%e%Y %a', DATE '2024-12-31') | December312024 Tue |
FORMAT_DATE('%b%e%Y %a', DATE '2024-12-31') | Dec312024 Tue |
FORMAT_DATE('%h%e%Y %a', DATE '2024-12-31') | Dec312024 Tue |
FORMAT_DATE('%B%e%E4Y %a', DATE '2024-12-31') | December312024 Tue |
FORMAT_DATE('%b%e%E4Y %a', DATE '2024-12-31') | Dec312024 Tue |
FORMAT_DATE('%h%e%E4Y %a', DATE '2024-12-31') | Dec312024 Tue |
FORMAT_DATE('%B%e%y %a', DATE '2024-12-31') | December3124 Tue |
FORMAT_DATE('%b%e%y %a', DATE '2024-12-31') | Dec3124 Tue |
FORMAT_DATE('%h%e%y %a', DATE '2024-12-31') | Dec3124 Tue |
FORMAT_DATE('%B%e%G %a', DATE '2024-12-31') | December312025 Tue |
FORMAT_DATE('%b%e%G %a', DATE '2024-12-31') | Dec312025 Tue |
FORMAT_DATE('%h%e%G %a', DATE '2024-12-31') | Dec312025 Tue |
FORMAT_DATE('%B%e%g %a', DATE '2024-12-31') | December3125 Tue |
FORMAT_DATE('%b%e%g %a', DATE '2024-12-31') | Dec3125 Tue |
FORMAT_DATE('%h%e%g %a', DATE '2024-12-31') | Dec3125 Tue |
FORMAT_DATE('%m-%e-%Y Quarter %Q', DATE '2024-12-31') | 12-31-2024 Quarter 4 |
FORMAT_DATE('%m-%e-%E4Y Quarter %Q', DATE '2024-12-31') | 12-31-2024 Quarter 4 |
FORMAT_DATE('%m-%e-%y Quarter %Q', DATE '2024-12-31') | 12-31-24 Quarter 4 |
FORMAT_DATE('%m-%e-%G Quarter %Q', DATE '2024-12-31') | 12-31-2025 Quarter 4 |
FORMAT_DATE('%m-%e-%g Quarter %Q', DATE '2024-12-31') | 12-31-25 Quarter 4 |
FORMAT_DATE('%B-%e-%Y Quarter %Q', DATE '2024-12-31') | December-31-2024 Quarter 4 |
FORMAT_DATE('%b-%e-%Y Quarter %Q', DATE '2024-12-31') | Dec-31-2024 Quarter 4 |
FORMAT_DATE('%h-%e-%Y Quarter %Q', DATE '2024-12-31') | Dec-31-2024 Quarter 4 |
FORMAT_DATE('%B-%e-%E4Y Quarter %Q', DATE '2024-12-31') | December-31-2024 Quarter 4 |
FORMAT_DATE('%b-%e-%E4Y Quarter %Q', DATE '2024-12-31') | Dec-31-2024 Quarter 4 |
FORMAT_DATE('%h-%e-%E4Y Quarter %Q', DATE '2024-12-31') | Dec-31-2024 Quarter 4 |
FORMAT_DATE('%B-%e-%y Quarter %Q', DATE '2024-12-31') | December-31-24 Quarter 4 |
FORMAT_DATE('%b-%e-%y Quarter %Q', DATE '2024-12-31') | Dec-31-24 Quarter 4 |
FORMAT_DATE('%h-%e-%y Quarter %Q', DATE '2024-12-31') | Dec-31-24 Quarter 4 |
FORMAT_DATE('%B-%e-%G Quarter %Q', DATE '2024-12-31') | December-31-2025 Quarter 4 |
FORMAT_DATE('%b-%e-%G Quarter %Q', DATE '2024-12-31') | Dec-31-2025 Quarter 4 |
FORMAT_DATE('%h-%e-%G Quarter %Q', DATE '2024-12-31') | Dec-31-2025 Quarter 4 |
FORMAT_DATE('%B-%e-%g Quarter %Q', DATE '2024-12-31') | December-31-25 Quarter 4 |
FORMAT_DATE('%b-%e-%g Quarter %Q', DATE '2024-12-31') | Dec-31-25 Quarter 4 |
FORMAT_DATE('%h-%e-%g Quarter %Q', DATE '2024-12-31') | Dec-31-25 Quarter 4 |
FORMAT_DATE('%m/%e/%Y Quarter %Q', DATE '2024-12-31') | 12/31/2024 Quarter 4 |
FORMAT_DATE('%m/%e/%E4Y Quarter %Q', DATE '2024-12-31') | 12/31/2024 Quarter 4 |
FORMAT_DATE('%m/%e/%y Quarter %Q', DATE '2024-12-31') | 12/31/24 Quarter 4 |
FORMAT_DATE('%m/%e/%G Quarter %Q', DATE '2024-12-31') | 12/31/2025 Quarter 4 |
FORMAT_DATE('%m/%e/%g Quarter %Q', DATE '2024-12-31') | 12/31/25 Quarter 4 |
FORMAT_DATE('%B/%e/%Y Quarter %Q', DATE '2024-12-31') | December/31/2024 Quarter 4 |
FORMAT_DATE('%b/%e/%Y Quarter %Q', DATE '2024-12-31') | Dec/31/2024 Quarter 4 |
FORMAT_DATE('%h/%e/%Y Quarter %Q', DATE '2024-12-31') | Dec/31/2024 Quarter 4 |
FORMAT_DATE('%B/%e/%E4Y Quarter %Q', DATE '2024-12-31') | December/31/2024 Quarter 4 |
FORMAT_DATE('%b/%e/%E4Y Quarter %Q', DATE '2024-12-31') | Dec/31/2024 Quarter 4 |
FORMAT_DATE('%h/%e/%E4Y Quarter %Q', DATE '2024-12-31') | Dec/31/2024 Quarter 4 |
FORMAT_DATE('%B/%e/%y Quarter %Q', DATE '2024-12-31') | December/31/24 Quarter 4 |
FORMAT_DATE('%b/%e/%y Quarter %Q', DATE '2024-12-31') | Dec/31/24 Quarter 4 |
FORMAT_DATE('%h/%e/%y Quarter %Q', DATE '2024-12-31') | Dec/31/24 Quarter 4 |
FORMAT_DATE('%B/%e/%G Quarter %Q', DATE '2024-12-31') | December/31/2025 Quarter 4 |
FORMAT_DATE('%b/%e/%G Quarter %Q', DATE '2024-12-31') | Dec/31/2025 Quarter 4 |
FORMAT_DATE('%h/%e/%G Quarter %Q', DATE '2024-12-31') | Dec/31/2025 Quarter 4 |
FORMAT_DATE('%B/%e/%g Quarter %Q', DATE '2024-12-31') | December/31/25 Quarter 4 |
FORMAT_DATE('%b/%e/%g Quarter %Q', DATE '2024-12-31') | Dec/31/25 Quarter 4 |
FORMAT_DATE('%h/%e/%g Quarter %Q', DATE '2024-12-31') | Dec/31/25 Quarter 4 |
FORMAT_DATE('%m:%e:%Y Quarter %Q', DATE '2024-12-31') | 12:31:2024 Quarter 4 |
FORMAT_DATE('%m:%e:%E4Y Quarter %Q', DATE '2024-12-31') | 12:31:2024 Quarter 4 |
FORMAT_DATE('%m:%e:%y Quarter %Q', DATE '2024-12-31') | 12:31:24 Quarter 4 |
FORMAT_DATE('%m:%e:%G Quarter %Q', DATE '2024-12-31') | 12:31:2025 Quarter 4 |
FORMAT_DATE('%m:%e:%g Quarter %Q', DATE '2024-12-31') | 12:31:25 Quarter 4 |
FORMAT_DATE('%B:%e:%Y Quarter %Q', DATE '2024-12-31') | December:31:2024 Quarter 4 |
FORMAT_DATE('%b:%e:%Y Quarter %Q', DATE '2024-12-31') | Dec:31:2024 Quarter 4 |
FORMAT_DATE('%h:%e:%Y Quarter %Q', DATE '2024-12-31') | Dec:31:2024 Quarter 4 |
FORMAT_DATE('%B:%e:%E4Y Quarter %Q', DATE '2024-12-31') | December:31:2024 Quarter 4 |
FORMAT_DATE('%b:%e:%E4Y Quarter %Q', DATE '2024-12-31') | Dec:31:2024 Quarter 4 |
FORMAT_DATE('%h:%e:%E4Y Quarter %Q', DATE '2024-12-31') | Dec:31:2024 Quarter 4 |
FORMAT_DATE('%B:%e:%y Quarter %Q', DATE '2024-12-31') | December:31:24 Quarter 4 |
FORMAT_DATE('%b:%e:%y Quarter %Q', DATE '2024-12-31') | Dec:31:24 Quarter 4 |
FORMAT_DATE('%h:%e:%y Quarter %Q', DATE '2024-12-31') | Dec:31:24 Quarter 4 |
FORMAT_DATE('%B:%e:%G Quarter %Q', DATE '2024-12-31') | December:31:2025 Quarter 4 |
FORMAT_DATE('%b:%e:%G Quarter %Q', DATE '2024-12-31') | Dec:31:2025 Quarter 4 |
FORMAT_DATE('%h:%e:%G Quarter %Q', DATE '2024-12-31') | Dec:31:2025 Quarter 4 |
FORMAT_DATE('%B:%e:%g Quarter %Q', DATE '2024-12-31') | December:31:25 Quarter 4 |
FORMAT_DATE('%b:%e:%g Quarter %Q', DATE '2024-12-31') | Dec:31:25 Quarter 4 |
FORMAT_DATE('%h:%e:%g Quarter %Q', DATE '2024-12-31') | Dec:31:25 Quarter 4 |
FORMAT_DATE('%m.%e.%Y Quarter %Q', DATE '2024-12-31') | 12.31.2024 Quarter 4 |
FORMAT_DATE('%m.%e.%E4Y Quarter %Q', DATE '2024-12-31') | 12.31.2024 Quarter 4 |
FORMAT_DATE('%m.%e.%y Quarter %Q', DATE '2024-12-31') | 12.31.24 Quarter 4 |
FORMAT_DATE('%m.%e.%G Quarter %Q', DATE '2024-12-31') | 12.31.2025 Quarter 4 |
FORMAT_DATE('%m.%e.%g Quarter %Q', DATE '2024-12-31') | 12.31.25 Quarter 4 |
FORMAT_DATE('%B.%e.%Y Quarter %Q', DATE '2024-12-31') | December.31.2024 Quarter 4 |
FORMAT_DATE('%b.%e.%Y Quarter %Q', DATE '2024-12-31') | Dec.31.2024 Quarter 4 |
FORMAT_DATE('%h.%e.%Y Quarter %Q', DATE '2024-12-31') | Dec.31.2024 Quarter 4 |
FORMAT_DATE('%B.%e.%E4Y Quarter %Q', DATE '2024-12-31') | December.31.2024 Quarter 4 |
FORMAT_DATE('%b.%e.%E4Y Quarter %Q', DATE '2024-12-31') | Dec.31.2024 Quarter 4 |
FORMAT_DATE('%h.%e.%E4Y Quarter %Q', DATE '2024-12-31') | Dec.31.2024 Quarter 4 |
FORMAT_DATE('%B.%e.%y Quarter %Q', DATE '2024-12-31') | December.31.24 Quarter 4 |
FORMAT_DATE('%b.%e.%y Quarter %Q', DATE '2024-12-31') | Dec.31.24 Quarter 4 |
FORMAT_DATE('%h.%e.%y Quarter %Q', DATE '2024-12-31') | Dec.31.24 Quarter 4 |
FORMAT_DATE('%B.%e.%G Quarter %Q', DATE '2024-12-31') | December.31.2025 Quarter 4 |
FORMAT_DATE('%b.%e.%G Quarter %Q', DATE '2024-12-31') | Dec.31.2025 Quarter 4 |
FORMAT_DATE('%h.%e.%G Quarter %Q', DATE '2024-12-31') | Dec.31.2025 Quarter 4 |
FORMAT_DATE('%B.%e.%g Quarter %Q', DATE '2024-12-31') | December.31.25 Quarter 4 |
FORMAT_DATE('%b.%e.%g Quarter %Q', DATE '2024-12-31') | Dec.31.25 Quarter 4 |
FORMAT_DATE('%h.%e.%g Quarter %Q', DATE '2024-12-31') | Dec.31.25 Quarter 4 |
FORMAT_DATE('%m %e %Y Quarter %Q', DATE '2024-12-31') | 12 31 2024 Quarter 4 |
FORMAT_DATE('%m %e %E4Y Quarter %Q', DATE '2024-12-31') | 12 31 2024 Quarter 4 |
FORMAT_DATE('%m %e %y Quarter %Q', DATE '2024-12-31') | 12 31 24 Quarter 4 |
FORMAT_DATE('%m %e %G Quarter %Q', DATE '2024-12-31') | 12 31 2025 Quarter 4 |
FORMAT_DATE('%m %e %g Quarter %Q', DATE '2024-12-31') | 12 31 25 Quarter 4 |
FORMAT_DATE('%B %e %Y Quarter %Q', DATE '2024-12-31') | December 31 2024 Quarter 4 |
FORMAT_DATE('%b %e %Y Quarter %Q', DATE '2024-12-31') | Dec 31 2024 Quarter 4 |
FORMAT_DATE('%h %e %Y Quarter %Q', DATE '2024-12-31') | Dec 31 2024 Quarter 4 |
FORMAT_DATE('%B %e %E4Y Quarter %Q', DATE '2024-12-31') | December 31 2024 Quarter 4 |
FORMAT_DATE('%b %e %E4Y Quarter %Q', DATE '2024-12-31') | Dec 31 2024 Quarter 4 |
FORMAT_DATE('%h %e %E4Y Quarter %Q', DATE '2024-12-31') | Dec 31 2024 Quarter 4 |
FORMAT_DATE('%B %e %y Quarter %Q', DATE '2024-12-31') | December 31 24 Quarter 4 |
FORMAT_DATE('%b %e %y Quarter %Q', DATE '2024-12-31') | Dec 31 24 Quarter 4 |
FORMAT_DATE('%h %e %y Quarter %Q', DATE '2024-12-31') | Dec 31 24 Quarter 4 |
FORMAT_DATE('%B %e %G Quarter %Q', DATE '2024-12-31') | December 31 2025 Quarter 4 |
FORMAT_DATE('%b %e %G Quarter %Q', DATE '2024-12-31') | Dec 31 2025 Quarter 4 |
FORMAT_DATE('%h %e %G Quarter %Q', DATE '2024-12-31') | Dec 31 2025 Quarter 4 |
FORMAT_DATE('%B %e %g Quarter %Q', DATE '2024-12-31') | December 31 25 Quarter 4 |
FORMAT_DATE('%b %e %g Quarter %Q', DATE '2024-12-31') | Dec 31 25 Quarter 4 |
FORMAT_DATE('%h %e %g Quarter %Q', DATE '2024-12-31') | Dec 31 25 Quarter 4 |
FORMAT_DATE('%m%e%Y Quarter %Q', DATE '2024-12-31') | 12312024 Quarter 4 |
FORMAT_DATE('%m%e%E4Y Quarter %Q', DATE '2024-12-31') | 12312024 Quarter 4 |
FORMAT_DATE('%m%e%y Quarter %Q', DATE '2024-12-31') | 123124 Quarter 4 |
FORMAT_DATE('%m%e%G Quarter %Q', DATE '2024-12-31') | 12312025 Quarter 4 |
FORMAT_DATE('%m%e%g Quarter %Q', DATE '2024-12-31') | 123125 Quarter 4 |
FORMAT_DATE('%B%e%Y Quarter %Q', DATE '2024-12-31') | December312024 Quarter 4 |
FORMAT_DATE('%b%e%Y Quarter %Q', DATE '2024-12-31') | Dec312024 Quarter 4 |
FORMAT_DATE('%h%e%Y Quarter %Q', DATE '2024-12-31') | Dec312024 Quarter 4 |
FORMAT_DATE('%B%e%E4Y Quarter %Q', DATE '2024-12-31') | December312024 Quarter 4 |
FORMAT_DATE('%b%e%E4Y Quarter %Q', DATE '2024-12-31') | Dec312024 Quarter 4 |
FORMAT_DATE('%h%e%E4Y Quarter %Q', DATE '2024-12-31') | Dec312024 Quarter 4 |
FORMAT_DATE('%B%e%y Quarter %Q', DATE '2024-12-31') | December3124 Quarter 4 |
FORMAT_DATE('%b%e%y Quarter %Q', DATE '2024-12-31') | Dec3124 Quarter 4 |
FORMAT_DATE('%h%e%y Quarter %Q', DATE '2024-12-31') | Dec3124 Quarter 4 |
FORMAT_DATE('%B%e%G Quarter %Q', DATE '2024-12-31') | December312025 Quarter 4 |
FORMAT_DATE('%b%e%G Quarter %Q', DATE '2024-12-31') | Dec312025 Quarter 4 |
FORMAT_DATE('%h%e%G Quarter %Q', DATE '2024-12-31') | Dec312025 Quarter 4 |
FORMAT_DATE('%B%e%g Quarter %Q', DATE '2024-12-31') | December3125 Quarter 4 |
FORMAT_DATE('%b%e%g Quarter %Q', DATE '2024-12-31') | Dec3125 Quarter 4 |
FORMAT_DATE('%h%e%g Quarter %Q', DATE '2024-12-31') | Dec3125 Quarter 4 |
FORMAT_DATE('%m-%e-%Y Week %U', DATE '2024-12-31') | 12-31-2024 Week 52 |
FORMAT_DATE('%m-%e-%E4Y Week %U', DATE '2024-12-31') | 12-31-2024 Week 52 |
FORMAT_DATE('%m-%e-%y Week %U', DATE '2024-12-31') | 12-31-24 Week 52 |
FORMAT_DATE('%m-%e-%G Week %U', DATE '2024-12-31') | 12-31-2025 Week 52 |
FORMAT_DATE('%m-%e-%g Week %U', DATE '2024-12-31') | 12-31-25 Week 52 |
FORMAT_DATE('%B-%e-%Y Week %U', DATE '2024-12-31') | December-31-2024 Week 52 |
FORMAT_DATE('%b-%e-%Y Week %U', DATE '2024-12-31') | Dec-31-2024 Week 52 |
FORMAT_DATE('%h-%e-%Y Week %U', DATE '2024-12-31') | Dec-31-2024 Week 52 |
FORMAT_DATE('%B-%e-%E4Y Week %U', DATE '2024-12-31') | December-31-2024 Week 52 |
FORMAT_DATE('%b-%e-%E4Y Week %U', DATE '2024-12-31') | Dec-31-2024 Week 52 |
FORMAT_DATE('%h-%e-%E4Y Week %U', DATE '2024-12-31') | Dec-31-2024 Week 52 |
FORMAT_DATE('%B-%e-%y Week %U', DATE '2024-12-31') | December-31-24 Week 52 |
FORMAT_DATE('%b-%e-%y Week %U', DATE '2024-12-31') | Dec-31-24 Week 52 |
FORMAT_DATE('%h-%e-%y Week %U', DATE '2024-12-31') | Dec-31-24 Week 52 |
FORMAT_DATE('%B-%e-%G Week %U', DATE '2024-12-31') | December-31-2025 Week 52 |
FORMAT_DATE('%b-%e-%G Week %U', DATE '2024-12-31') | Dec-31-2025 Week 52 |
FORMAT_DATE('%h-%e-%G Week %U', DATE '2024-12-31') | Dec-31-2025 Week 52 |
FORMAT_DATE('%B-%e-%g Week %U', DATE '2024-12-31') | December-31-25 Week 52 |
FORMAT_DATE('%b-%e-%g Week %U', DATE '2024-12-31') | Dec-31-25 Week 52 |
FORMAT_DATE('%h-%e-%g Week %U', DATE '2024-12-31') | Dec-31-25 Week 52 |
FORMAT_DATE('%m/%e/%Y Week %U', DATE '2024-12-31') | 12/31/2024 Week 52 |
FORMAT_DATE('%m/%e/%E4Y Week %U', DATE '2024-12-31') | 12/31/2024 Week 52 |
FORMAT_DATE('%m/%e/%y Week %U', DATE '2024-12-31') | 12/31/24 Week 52 |
FORMAT_DATE('%m/%e/%G Week %U', DATE '2024-12-31') | 12/31/2025 Week 52 |
FORMAT_DATE('%m/%e/%g Week %U', DATE '2024-12-31') | 12/31/25 Week 52 |
FORMAT_DATE('%B/%e/%Y Week %U', DATE '2024-12-31') | December/31/2024 Week 52 |
FORMAT_DATE('%b/%e/%Y Week %U', DATE '2024-12-31') | Dec/31/2024 Week 52 |
FORMAT_DATE('%h/%e/%Y Week %U', DATE '2024-12-31') | Dec/31/2024 Week 52 |
FORMAT_DATE('%B/%e/%E4Y Week %U', DATE '2024-12-31') | December/31/2024 Week 52 |
FORMAT_DATE('%b/%e/%E4Y Week %U', DATE '2024-12-31') | Dec/31/2024 Week 52 |
FORMAT_DATE('%h/%e/%E4Y Week %U', DATE '2024-12-31') | Dec/31/2024 Week 52 |
FORMAT_DATE('%B/%e/%y Week %U', DATE '2024-12-31') | December/31/24 Week 52 |
FORMAT_DATE('%b/%e/%y Week %U', DATE '2024-12-31') | Dec/31/24 Week 52 |
FORMAT_DATE('%h/%e/%y Week %U', DATE '2024-12-31') | Dec/31/24 Week 52 |
FORMAT_DATE('%B/%e/%G Week %U', DATE '2024-12-31') | December/31/2025 Week 52 |
FORMAT_DATE('%b/%e/%G Week %U', DATE '2024-12-31') | Dec/31/2025 Week 52 |
FORMAT_DATE('%h/%e/%G Week %U', DATE '2024-12-31') | Dec/31/2025 Week 52 |
FORMAT_DATE('%B/%e/%g Week %U', DATE '2024-12-31') | December/31/25 Week 52 |
FORMAT_DATE('%b/%e/%g Week %U', DATE '2024-12-31') | Dec/31/25 Week 52 |
FORMAT_DATE('%h/%e/%g Week %U', DATE '2024-12-31') | Dec/31/25 Week 52 |
FORMAT_DATE('%m:%e:%Y Week %U', DATE '2024-12-31') | 12:31:2024 Week 52 |
FORMAT_DATE('%m:%e:%E4Y Week %U', DATE '2024-12-31') | 12:31:2024 Week 52 |
FORMAT_DATE('%m:%e:%y Week %U', DATE '2024-12-31') | 12:31:24 Week 52 |
FORMAT_DATE('%m:%e:%G Week %U', DATE '2024-12-31') | 12:31:2025 Week 52 |
FORMAT_DATE('%m:%e:%g Week %U', DATE '2024-12-31') | 12:31:25 Week 52 |
FORMAT_DATE('%B:%e:%Y Week %U', DATE '2024-12-31') | December:31:2024 Week 52 |
FORMAT_DATE('%b:%e:%Y Week %U', DATE '2024-12-31') | Dec:31:2024 Week 52 |
FORMAT_DATE('%h:%e:%Y Week %U', DATE '2024-12-31') | Dec:31:2024 Week 52 |
FORMAT_DATE('%B:%e:%E4Y Week %U', DATE '2024-12-31') | December:31:2024 Week 52 |
FORMAT_DATE('%b:%e:%E4Y Week %U', DATE '2024-12-31') | Dec:31:2024 Week 52 |
FORMAT_DATE('%h:%e:%E4Y Week %U', DATE '2024-12-31') | Dec:31:2024 Week 52 |
FORMAT_DATE('%B:%e:%y Week %U', DATE '2024-12-31') | December:31:24 Week 52 |
FORMAT_DATE('%b:%e:%y Week %U', DATE '2024-12-31') | Dec:31:24 Week 52 |
FORMAT_DATE('%h:%e:%y Week %U', DATE '2024-12-31') | Dec:31:24 Week 52 |
FORMAT_DATE('%B:%e:%G Week %U', DATE '2024-12-31') | December:31:2025 Week 52 |
FORMAT_DATE('%b:%e:%G Week %U', DATE '2024-12-31') | Dec:31:2025 Week 52 |
FORMAT_DATE('%h:%e:%G Week %U', DATE '2024-12-31') | Dec:31:2025 Week 52 |
FORMAT_DATE('%B:%e:%g Week %U', DATE '2024-12-31') | December:31:25 Week 52 |
FORMAT_DATE('%b:%e:%g Week %U', DATE '2024-12-31') | Dec:31:25 Week 52 |
FORMAT_DATE('%h:%e:%g Week %U', DATE '2024-12-31') | Dec:31:25 Week 52 |
FORMAT_DATE('%m.%e.%Y Week %U', DATE '2024-12-31') | 12.31.2024 Week 52 |
FORMAT_DATE('%m.%e.%E4Y Week %U', DATE '2024-12-31') | 12.31.2024 Week 52 |
FORMAT_DATE('%m.%e.%y Week %U', DATE '2024-12-31') | 12.31.24 Week 52 |
FORMAT_DATE('%m.%e.%G Week %U', DATE '2024-12-31') | 12.31.2025 Week 52 |
FORMAT_DATE('%m.%e.%g Week %U', DATE '2024-12-31') | 12.31.25 Week 52 |
FORMAT_DATE('%B.%e.%Y Week %U', DATE '2024-12-31') | December.31.2024 Week 52 |
FORMAT_DATE('%b.%e.%Y Week %U', DATE '2024-12-31') | Dec.31.2024 Week 52 |
FORMAT_DATE('%h.%e.%Y Week %U', DATE '2024-12-31') | Dec.31.2024 Week 52 |
FORMAT_DATE('%B.%e.%E4Y Week %U', DATE '2024-12-31') | December.31.2024 Week 52 |
FORMAT_DATE('%b.%e.%E4Y Week %U', DATE '2024-12-31') | Dec.31.2024 Week 52 |
FORMAT_DATE('%h.%e.%E4Y Week %U', DATE '2024-12-31') | Dec.31.2024 Week 52 |
FORMAT_DATE('%B.%e.%y Week %U', DATE '2024-12-31') | December.31.24 Week 52 |
FORMAT_DATE('%b.%e.%y Week %U', DATE '2024-12-31') | Dec.31.24 Week 52 |
FORMAT_DATE('%h.%e.%y Week %U', DATE '2024-12-31') | Dec.31.24 Week 52 |
FORMAT_DATE('%B.%e.%G Week %U', DATE '2024-12-31') | December.31.2025 Week 52 |
FORMAT_DATE('%b.%e.%G Week %U', DATE '2024-12-31') | Dec.31.2025 Week 52 |
FORMAT_DATE('%h.%e.%G Week %U', DATE '2024-12-31') | Dec.31.2025 Week 52 |
FORMAT_DATE('%B.%e.%g Week %U', DATE '2024-12-31') | December.31.25 Week 52 |
FORMAT_DATE('%b.%e.%g Week %U', DATE '2024-12-31') | Dec.31.25 Week 52 |
FORMAT_DATE('%h.%e.%g Week %U', DATE '2024-12-31') | Dec.31.25 Week 52 |
FORMAT_DATE('%m %e %Y Week %U', DATE '2024-12-31') | 12 31 2024 Week 52 |
FORMAT_DATE('%m %e %E4Y Week %U', DATE '2024-12-31') | 12 31 2024 Week 52 |
FORMAT_DATE('%m %e %y Week %U', DATE '2024-12-31') | 12 31 24 Week 52 |
FORMAT_DATE('%m %e %G Week %U', DATE '2024-12-31') | 12 31 2025 Week 52 |
FORMAT_DATE('%m %e %g Week %U', DATE '2024-12-31') | 12 31 25 Week 52 |
FORMAT_DATE('%B %e %Y Week %U', DATE '2024-12-31') | December 31 2024 Week 52 |
FORMAT_DATE('%b %e %Y Week %U', DATE '2024-12-31') | Dec 31 2024 Week 52 |
FORMAT_DATE('%h %e %Y Week %U', DATE '2024-12-31') | Dec 31 2024 Week 52 |
FORMAT_DATE('%B %e %E4Y Week %U', DATE '2024-12-31') | December 31 2024 Week 52 |
FORMAT_DATE('%b %e %E4Y Week %U', DATE '2024-12-31') | Dec 31 2024 Week 52 |
FORMAT_DATE('%h %e %E4Y Week %U', DATE '2024-12-31') | Dec 31 2024 Week 52 |
FORMAT_DATE('%B %e %y Week %U', DATE '2024-12-31') | December 31 24 Week 52 |
FORMAT_DATE('%b %e %y Week %U', DATE '2024-12-31') | Dec 31 24 Week 52 |
FORMAT_DATE('%h %e %y Week %U', DATE '2024-12-31') | Dec 31 24 Week 52 |
FORMAT_DATE('%B %e %G Week %U', DATE '2024-12-31') | December 31 2025 Week 52 |
FORMAT_DATE('%b %e %G Week %U', DATE '2024-12-31') | Dec 31 2025 Week 52 |
FORMAT_DATE('%h %e %G Week %U', DATE '2024-12-31') | Dec 31 2025 Week 52 |
FORMAT_DATE('%B %e %g Week %U', DATE '2024-12-31') | December 31 25 Week 52 |
FORMAT_DATE('%b %e %g Week %U', DATE '2024-12-31') | Dec 31 25 Week 52 |
FORMAT_DATE('%h %e %g Week %U', DATE '2024-12-31') | Dec 31 25 Week 52 |
FORMAT_DATE('%m%e%Y Week %U', DATE '2024-12-31') | 12312024 Week 52 |
FORMAT_DATE('%m%e%E4Y Week %U', DATE '2024-12-31') | 12312024 Week 52 |
FORMAT_DATE('%m%e%y Week %U', DATE '2024-12-31') | 123124 Week 52 |
FORMAT_DATE('%m%e%G Week %U', DATE '2024-12-31') | 12312025 Week 52 |
FORMAT_DATE('%m%e%g Week %U', DATE '2024-12-31') | 123125 Week 52 |
FORMAT_DATE('%B%e%Y Week %U', DATE '2024-12-31') | December312024 Week 52 |
FORMAT_DATE('%b%e%Y Week %U', DATE '2024-12-31') | Dec312024 Week 52 |
FORMAT_DATE('%h%e%Y Week %U', DATE '2024-12-31') | Dec312024 Week 52 |
FORMAT_DATE('%B%e%E4Y Week %U', DATE '2024-12-31') | December312024 Week 52 |
FORMAT_DATE('%b%e%E4Y Week %U', DATE '2024-12-31') | Dec312024 Week 52 |
FORMAT_DATE('%h%e%E4Y Week %U', DATE '2024-12-31') | Dec312024 Week 52 |
FORMAT_DATE('%B%e%y Week %U', DATE '2024-12-31') | December3124 Week 52 |
FORMAT_DATE('%b%e%y Week %U', DATE '2024-12-31') | Dec3124 Week 52 |
FORMAT_DATE('%h%e%y Week %U', DATE '2024-12-31') | Dec3124 Week 52 |
FORMAT_DATE('%B%e%G Week %U', DATE '2024-12-31') | December312025 Week 52 |
FORMAT_DATE('%b%e%G Week %U', DATE '2024-12-31') | Dec312025 Week 52 |
FORMAT_DATE('%h%e%G Week %U', DATE '2024-12-31') | Dec312025 Week 52 |
FORMAT_DATE('%B%e%g Week %U', DATE '2024-12-31') | December3125 Week 52 |
FORMAT_DATE('%b%e%g Week %U', DATE '2024-12-31') | Dec3125 Week 52 |
FORMAT_DATE('%h%e%g Week %U', DATE '2024-12-31') | Dec3125 Week 52 |
FORMAT_DATE('%m-%e-%Y Week %W', DATE '2024-12-31') | 12-31-2024 Week 53 |
FORMAT_DATE('%m-%e-%E4Y Week %W', DATE '2024-12-31') | 12-31-2024 Week 53 |
FORMAT_DATE('%m-%e-%y Week %W', DATE '2024-12-31') | 12-31-24 Week 53 |
FORMAT_DATE('%m-%e-%G Week %W', DATE '2024-12-31') | 12-31-2025 Week 53 |
FORMAT_DATE('%m-%e-%g Week %W', DATE '2024-12-31') | 12-31-25 Week 53 |
FORMAT_DATE('%B-%e-%Y Week %W', DATE '2024-12-31') | December-31-2024 Week 53 |
FORMAT_DATE('%b-%e-%Y Week %W', DATE '2024-12-31') | Dec-31-2024 Week 53 |
FORMAT_DATE('%h-%e-%Y Week %W', DATE '2024-12-31') | Dec-31-2024 Week 53 |
FORMAT_DATE('%B-%e-%E4Y Week %W', DATE '2024-12-31') | December-31-2024 Week 53 |
FORMAT_DATE('%b-%e-%E4Y Week %W', DATE '2024-12-31') | Dec-31-2024 Week 53 |
FORMAT_DATE('%h-%e-%E4Y Week %W', DATE '2024-12-31') | Dec-31-2024 Week 53 |
FORMAT_DATE('%B-%e-%y Week %W', DATE '2024-12-31') | December-31-24 Week 53 |
FORMAT_DATE('%b-%e-%y Week %W', DATE '2024-12-31') | Dec-31-24 Week 53 |
FORMAT_DATE('%h-%e-%y Week %W', DATE '2024-12-31') | Dec-31-24 Week 53 |
FORMAT_DATE('%B-%e-%G Week %W', DATE '2024-12-31') | December-31-2025 Week 53 |
FORMAT_DATE('%b-%e-%G Week %W', DATE '2024-12-31') | Dec-31-2025 Week 53 |
FORMAT_DATE('%h-%e-%G Week %W', DATE '2024-12-31') | Dec-31-2025 Week 53 |
FORMAT_DATE('%B-%e-%g Week %W', DATE '2024-12-31') | December-31-25 Week 53 |
FORMAT_DATE('%b-%e-%g Week %W', DATE '2024-12-31') | Dec-31-25 Week 53 |
FORMAT_DATE('%h-%e-%g Week %W', DATE '2024-12-31') | Dec-31-25 Week 53 |
FORMAT_DATE('%m/%e/%Y Week %W', DATE '2024-12-31') | 12/31/2024 Week 53 |
FORMAT_DATE('%m/%e/%E4Y Week %W', DATE '2024-12-31') | 12/31/2024 Week 53 |
FORMAT_DATE('%m/%e/%y Week %W', DATE '2024-12-31') | 12/31/24 Week 53 |
FORMAT_DATE('%m/%e/%G Week %W', DATE '2024-12-31') | 12/31/2025 Week 53 |
FORMAT_DATE('%m/%e/%g Week %W', DATE '2024-12-31') | 12/31/25 Week 53 |
FORMAT_DATE('%B/%e/%Y Week %W', DATE '2024-12-31') | December/31/2024 Week 53 |
FORMAT_DATE('%b/%e/%Y Week %W', DATE '2024-12-31') | Dec/31/2024 Week 53 |
FORMAT_DATE('%h/%e/%Y Week %W', DATE '2024-12-31') | Dec/31/2024 Week 53 |
FORMAT_DATE('%B/%e/%E4Y Week %W', DATE '2024-12-31') | December/31/2024 Week 53 |
FORMAT_DATE('%b/%e/%E4Y Week %W', DATE '2024-12-31') | Dec/31/2024 Week 53 |
FORMAT_DATE('%h/%e/%E4Y Week %W', DATE '2024-12-31') | Dec/31/2024 Week 53 |
FORMAT_DATE('%B/%e/%y Week %W', DATE '2024-12-31') | December/31/24 Week 53 |
FORMAT_DATE('%b/%e/%y Week %W', DATE '2024-12-31') | Dec/31/24 Week 53 |
FORMAT_DATE('%h/%e/%y Week %W', DATE '2024-12-31') | Dec/31/24 Week 53 |
FORMAT_DATE('%B/%e/%G Week %W', DATE '2024-12-31') | December/31/2025 Week 53 |
FORMAT_DATE('%b/%e/%G Week %W', DATE '2024-12-31') | Dec/31/2025 Week 53 |
FORMAT_DATE('%h/%e/%G Week %W', DATE '2024-12-31') | Dec/31/2025 Week 53 |
FORMAT_DATE('%B/%e/%g Week %W', DATE '2024-12-31') | December/31/25 Week 53 |
FORMAT_DATE('%b/%e/%g Week %W', DATE '2024-12-31') | Dec/31/25 Week 53 |
FORMAT_DATE('%h/%e/%g Week %W', DATE '2024-12-31') | Dec/31/25 Week 53 |
FORMAT_DATE('%m:%e:%Y Week %W', DATE '2024-12-31') | 12:31:2024 Week 53 |
FORMAT_DATE('%m:%e:%E4Y Week %W', DATE '2024-12-31') | 12:31:2024 Week 53 |
FORMAT_DATE('%m:%e:%y Week %W', DATE '2024-12-31') | 12:31:24 Week 53 |
FORMAT_DATE('%m:%e:%G Week %W', DATE '2024-12-31') | 12:31:2025 Week 53 |
FORMAT_DATE('%m:%e:%g Week %W', DATE '2024-12-31') | 12:31:25 Week 53 |
FORMAT_DATE('%B:%e:%Y Week %W', DATE '2024-12-31') | December:31:2024 Week 53 |
FORMAT_DATE('%b:%e:%Y Week %W', DATE '2024-12-31') | Dec:31:2024 Week 53 |
FORMAT_DATE('%h:%e:%Y Week %W', DATE '2024-12-31') | Dec:31:2024 Week 53 |
FORMAT_DATE('%B:%e:%E4Y Week %W', DATE '2024-12-31') | December:31:2024 Week 53 |
FORMAT_DATE('%b:%e:%E4Y Week %W', DATE '2024-12-31') | Dec:31:2024 Week 53 |
FORMAT_DATE('%h:%e:%E4Y Week %W', DATE '2024-12-31') | Dec:31:2024 Week 53 |
FORMAT_DATE('%B:%e:%y Week %W', DATE '2024-12-31') | December:31:24 Week 53 |
FORMAT_DATE('%b:%e:%y Week %W', DATE '2024-12-31') | Dec:31:24 Week 53 |
FORMAT_DATE('%h:%e:%y Week %W', DATE '2024-12-31') | Dec:31:24 Week 53 |
FORMAT_DATE('%B:%e:%G Week %W', DATE '2024-12-31') | December:31:2025 Week 53 |
FORMAT_DATE('%b:%e:%G Week %W', DATE '2024-12-31') | Dec:31:2025 Week 53 |
FORMAT_DATE('%h:%e:%G Week %W', DATE '2024-12-31') | Dec:31:2025 Week 53 |
FORMAT_DATE('%B:%e:%g Week %W', DATE '2024-12-31') | December:31:25 Week 53 |
FORMAT_DATE('%b:%e:%g Week %W', DATE '2024-12-31') | Dec:31:25 Week 53 |
FORMAT_DATE('%h:%e:%g Week %W', DATE '2024-12-31') | Dec:31:25 Week 53 |
FORMAT_DATE('%m.%e.%Y Week %W', DATE '2024-12-31') | 12.31.2024 Week 53 |
FORMAT_DATE('%m.%e.%E4Y Week %W', DATE '2024-12-31') | 12.31.2024 Week 53 |
FORMAT_DATE('%m.%e.%y Week %W', DATE '2024-12-31') | 12.31.24 Week 53 |
FORMAT_DATE('%m.%e.%G Week %W', DATE '2024-12-31') | 12.31.2025 Week 53 |
FORMAT_DATE('%m.%e.%g Week %W', DATE '2024-12-31') | 12.31.25 Week 53 |
FORMAT_DATE('%B.%e.%Y Week %W', DATE '2024-12-31') | December.31.2024 Week 53 |
FORMAT_DATE('%b.%e.%Y Week %W', DATE '2024-12-31') | Dec.31.2024 Week 53 |
FORMAT_DATE('%h.%e.%Y Week %W', DATE '2024-12-31') | Dec.31.2024 Week 53 |
FORMAT_DATE('%B.%e.%E4Y Week %W', DATE '2024-12-31') | December.31.2024 Week 53 |
FORMAT_DATE('%b.%e.%E4Y Week %W', DATE '2024-12-31') | Dec.31.2024 Week 53 |
FORMAT_DATE('%h.%e.%E4Y Week %W', DATE '2024-12-31') | Dec.31.2024 Week 53 |
FORMAT_DATE('%B.%e.%y Week %W', DATE '2024-12-31') | December.31.24 Week 53 |
FORMAT_DATE('%b.%e.%y Week %W', DATE '2024-12-31') | Dec.31.24 Week 53 |
FORMAT_DATE('%h.%e.%y Week %W', DATE '2024-12-31') | Dec.31.24 Week 53 |
FORMAT_DATE('%B.%e.%G Week %W', DATE '2024-12-31') | December.31.2025 Week 53 |
FORMAT_DATE('%b.%e.%G Week %W', DATE '2024-12-31') | Dec.31.2025 Week 53 |
FORMAT_DATE('%h.%e.%G Week %W', DATE '2024-12-31') | Dec.31.2025 Week 53 |
FORMAT_DATE('%B.%e.%g Week %W', DATE '2024-12-31') | December.31.25 Week 53 |
FORMAT_DATE('%b.%e.%g Week %W', DATE '2024-12-31') | Dec.31.25 Week 53 |
FORMAT_DATE('%h.%e.%g Week %W', DATE '2024-12-31') | Dec.31.25 Week 53 |
FORMAT_DATE('%m %e %Y Week %W', DATE '2024-12-31') | 12 31 2024 Week 53 |
FORMAT_DATE('%m %e %E4Y Week %W', DATE '2024-12-31') | 12 31 2024 Week 53 |
FORMAT_DATE('%m %e %y Week %W', DATE '2024-12-31') | 12 31 24 Week 53 |
FORMAT_DATE('%m %e %G Week %W', DATE '2024-12-31') | 12 31 2025 Week 53 |
FORMAT_DATE('%m %e %g Week %W', DATE '2024-12-31') | 12 31 25 Week 53 |
FORMAT_DATE('%B %e %Y Week %W', DATE '2024-12-31') | December 31 2024 Week 53 |
FORMAT_DATE('%b %e %Y Week %W', DATE '2024-12-31') | Dec 31 2024 Week 53 |
FORMAT_DATE('%h %e %Y Week %W', DATE '2024-12-31') | Dec 31 2024 Week 53 |
FORMAT_DATE('%B %e %E4Y Week %W', DATE '2024-12-31') | December 31 2024 Week 53 |
FORMAT_DATE('%b %e %E4Y Week %W', DATE '2024-12-31') | Dec 31 2024 Week 53 |
FORMAT_DATE('%h %e %E4Y Week %W', DATE '2024-12-31') | Dec 31 2024 Week 53 |
FORMAT_DATE('%B %e %y Week %W', DATE '2024-12-31') | December 31 24 Week 53 |
FORMAT_DATE('%b %e %y Week %W', DATE '2024-12-31') | Dec 31 24 Week 53 |
FORMAT_DATE('%h %e %y Week %W', DATE '2024-12-31') | Dec 31 24 Week 53 |
FORMAT_DATE('%B %e %G Week %W', DATE '2024-12-31') | December 31 2025 Week 53 |
FORMAT_DATE('%b %e %G Week %W', DATE '2024-12-31') | Dec 31 2025 Week 53 |
FORMAT_DATE('%h %e %G Week %W', DATE '2024-12-31') | Dec 31 2025 Week 53 |
FORMAT_DATE('%B %e %g Week %W', DATE '2024-12-31') | December 31 25 Week 53 |
FORMAT_DATE('%b %e %g Week %W', DATE '2024-12-31') | Dec 31 25 Week 53 |
FORMAT_DATE('%h %e %g Week %W', DATE '2024-12-31') | Dec 31 25 Week 53 |
FORMAT_DATE('%m%e%Y Week %W', DATE '2024-12-31') | 12312024 Week 53 |
FORMAT_DATE('%m%e%E4Y Week %W', DATE '2024-12-31') | 12312024 Week 53 |
FORMAT_DATE('%m%e%y Week %W', DATE '2024-12-31') | 123124 Week 53 |
FORMAT_DATE('%m%e%G Week %W', DATE '2024-12-31') | 12312025 Week 53 |
FORMAT_DATE('%m%e%g Week %W', DATE '2024-12-31') | 123125 Week 53 |
FORMAT_DATE('%B%e%Y Week %W', DATE '2024-12-31') | December312024 Week 53 |
FORMAT_DATE('%b%e%Y Week %W', DATE '2024-12-31') | Dec312024 Week 53 |
FORMAT_DATE('%h%e%Y Week %W', DATE '2024-12-31') | Dec312024 Week 53 |
FORMAT_DATE('%B%e%E4Y Week %W', DATE '2024-12-31') | December312024 Week 53 |
FORMAT_DATE('%b%e%E4Y Week %W', DATE '2024-12-31') | Dec312024 Week 53 |
FORMAT_DATE('%h%e%E4Y Week %W', DATE '2024-12-31') | Dec312024 Week 53 |
FORMAT_DATE('%B%e%y Week %W', DATE '2024-12-31') | December3124 Week 53 |
FORMAT_DATE('%b%e%y Week %W', DATE '2024-12-31') | Dec3124 Week 53 |
FORMAT_DATE('%h%e%y Week %W', DATE '2024-12-31') | Dec3124 Week 53 |
FORMAT_DATE('%B%e%G Week %W', DATE '2024-12-31') | December312025 Week 53 |
FORMAT_DATE('%b%e%G Week %W', DATE '2024-12-31') | Dec312025 Week 53 |
FORMAT_DATE('%h%e%G Week %W', DATE '2024-12-31') | Dec312025 Week 53 |
FORMAT_DATE('%B%e%g Week %W', DATE '2024-12-31') | December3125 Week 53 |
FORMAT_DATE('%b%e%g Week %W', DATE '2024-12-31') | Dec3125 Week 53 |
FORMAT_DATE('%h%e%g Week %W', DATE '2024-12-31') | Dec3125 Week 53 |
FORMAT_DATE('%m-%e-%Y ISO Week %V', DATE '2024-12-31') | 12-31-2024 ISO Week 01 |
FORMAT_DATE('%m-%e-%E4Y ISO Week %V', DATE '2024-12-31') | 12-31-2024 ISO Week 01 |
FORMAT_DATE('%m-%e-%y ISO Week %V', DATE '2024-12-31') | 12-31-24 ISO Week 01 |
FORMAT_DATE('%m-%e-%G ISO Week %V', DATE '2024-12-31') | 12-31-2025 ISO Week 01 |
FORMAT_DATE('%m-%e-%g ISO Week %V', DATE '2024-12-31') | 12-31-25 ISO Week 01 |
FORMAT_DATE('%B-%e-%Y ISO Week %V', DATE '2024-12-31') | December-31-2024 ISO Week 01 |
FORMAT_DATE('%b-%e-%Y ISO Week %V', DATE '2024-12-31') | Dec-31-2024 ISO Week 01 |
FORMAT_DATE('%h-%e-%Y ISO Week %V', DATE '2024-12-31') | Dec-31-2024 ISO Week 01 |
FORMAT_DATE('%B-%e-%E4Y ISO Week %V', DATE '2024-12-31') | December-31-2024 ISO Week 01 |
FORMAT_DATE('%b-%e-%E4Y ISO Week %V', DATE '2024-12-31') | Dec-31-2024 ISO Week 01 |
FORMAT_DATE('%h-%e-%E4Y ISO Week %V', DATE '2024-12-31') | Dec-31-2024 ISO Week 01 |
FORMAT_DATE('%B-%e-%y ISO Week %V', DATE '2024-12-31') | December-31-24 ISO Week 01 |
FORMAT_DATE('%b-%e-%y ISO Week %V', DATE '2024-12-31') | Dec-31-24 ISO Week 01 |
FORMAT_DATE('%h-%e-%y ISO Week %V', DATE '2024-12-31') | Dec-31-24 ISO Week 01 |
FORMAT_DATE('%B-%e-%G ISO Week %V', DATE '2024-12-31') | December-31-2025 ISO Week 01 |
FORMAT_DATE('%b-%e-%G ISO Week %V', DATE '2024-12-31') | Dec-31-2025 ISO Week 01 |
FORMAT_DATE('%h-%e-%G ISO Week %V', DATE '2024-12-31') | Dec-31-2025 ISO Week 01 |
FORMAT_DATE('%B-%e-%g ISO Week %V', DATE '2024-12-31') | December-31-25 ISO Week 01 |
FORMAT_DATE('%b-%e-%g ISO Week %V', DATE '2024-12-31') | Dec-31-25 ISO Week 01 |
FORMAT_DATE('%h-%e-%g ISO Week %V', DATE '2024-12-31') | Dec-31-25 ISO Week 01 |
FORMAT_DATE('%m/%e/%Y ISO Week %V', DATE '2024-12-31') | 12/31/2024 ISO Week 01 |
FORMAT_DATE('%m/%e/%E4Y ISO Week %V', DATE '2024-12-31') | 12/31/2024 ISO Week 01 |
FORMAT_DATE('%m/%e/%y ISO Week %V', DATE '2024-12-31') | 12/31/24 ISO Week 01 |
FORMAT_DATE('%m/%e/%G ISO Week %V', DATE '2024-12-31') | 12/31/2025 ISO Week 01 |
FORMAT_DATE('%m/%e/%g ISO Week %V', DATE '2024-12-31') | 12/31/25 ISO Week 01 |
FORMAT_DATE('%B/%e/%Y ISO Week %V', DATE '2024-12-31') | December/31/2024 ISO Week 01 |
FORMAT_DATE('%b/%e/%Y ISO Week %V', DATE '2024-12-31') | Dec/31/2024 ISO Week 01 |
FORMAT_DATE('%h/%e/%Y ISO Week %V', DATE '2024-12-31') | Dec/31/2024 ISO Week 01 |
FORMAT_DATE('%B/%e/%E4Y ISO Week %V', DATE '2024-12-31') | December/31/2024 ISO Week 01 |
FORMAT_DATE('%b/%e/%E4Y ISO Week %V', DATE '2024-12-31') | Dec/31/2024 ISO Week 01 |
FORMAT_DATE('%h/%e/%E4Y ISO Week %V', DATE '2024-12-31') | Dec/31/2024 ISO Week 01 |
FORMAT_DATE('%B/%e/%y ISO Week %V', DATE '2024-12-31') | December/31/24 ISO Week 01 |
FORMAT_DATE('%b/%e/%y ISO Week %V', DATE '2024-12-31') | Dec/31/24 ISO Week 01 |
FORMAT_DATE('%h/%e/%y ISO Week %V', DATE '2024-12-31') | Dec/31/24 ISO Week 01 |
FORMAT_DATE('%B/%e/%G ISO Week %V', DATE '2024-12-31') | December/31/2025 ISO Week 01 |
FORMAT_DATE('%b/%e/%G ISO Week %V', DATE '2024-12-31') | Dec/31/2025 ISO Week 01 |
FORMAT_DATE('%h/%e/%G ISO Week %V', DATE '2024-12-31') | Dec/31/2025 ISO Week 01 |
FORMAT_DATE('%B/%e/%g ISO Week %V', DATE '2024-12-31') | December/31/25 ISO Week 01 |
FORMAT_DATE('%b/%e/%g ISO Week %V', DATE '2024-12-31') | Dec/31/25 ISO Week 01 |
FORMAT_DATE('%h/%e/%g ISO Week %V', DATE '2024-12-31') | Dec/31/25 ISO Week 01 |
FORMAT_DATE('%m:%e:%Y ISO Week %V', DATE '2024-12-31') | 12:31:2024 ISO Week 01 |
FORMAT_DATE('%m:%e:%E4Y ISO Week %V', DATE '2024-12-31') | 12:31:2024 ISO Week 01 |
FORMAT_DATE('%m:%e:%y ISO Week %V', DATE '2024-12-31') | 12:31:24 ISO Week 01 |
FORMAT_DATE('%m:%e:%G ISO Week %V', DATE '2024-12-31') | 12:31:2025 ISO Week 01 |
FORMAT_DATE('%m:%e:%g ISO Week %V', DATE '2024-12-31') | 12:31:25 ISO Week 01 |
FORMAT_DATE('%B:%e:%Y ISO Week %V', DATE '2024-12-31') | December:31:2024 ISO Week 01 |
FORMAT_DATE('%b:%e:%Y ISO Week %V', DATE '2024-12-31') | Dec:31:2024 ISO Week 01 |
FORMAT_DATE('%h:%e:%Y ISO Week %V', DATE '2024-12-31') | Dec:31:2024 ISO Week 01 |
FORMAT_DATE('%B:%e:%E4Y ISO Week %V', DATE '2024-12-31') | December:31:2024 ISO Week 01 |
FORMAT_DATE('%b:%e:%E4Y ISO Week %V', DATE '2024-12-31') | Dec:31:2024 ISO Week 01 |
FORMAT_DATE('%h:%e:%E4Y ISO Week %V', DATE '2024-12-31') | Dec:31:2024 ISO Week 01 |
FORMAT_DATE('%B:%e:%y ISO Week %V', DATE '2024-12-31') | December:31:24 ISO Week 01 |
FORMAT_DATE('%b:%e:%y ISO Week %V', DATE '2024-12-31') | Dec:31:24 ISO Week 01 |
FORMAT_DATE('%h:%e:%y ISO Week %V', DATE '2024-12-31') | Dec:31:24 ISO Week 01 |
FORMAT_DATE('%B:%e:%G ISO Week %V', DATE '2024-12-31') | December:31:2025 ISO Week 01 |
FORMAT_DATE('%b:%e:%G ISO Week %V', DATE '2024-12-31') | Dec:31:2025 ISO Week 01 |
FORMAT_DATE('%h:%e:%G ISO Week %V', DATE '2024-12-31') | Dec:31:2025 ISO Week 01 |
FORMAT_DATE('%B:%e:%g ISO Week %V', DATE '2024-12-31') | December:31:25 ISO Week 01 |
FORMAT_DATE('%b:%e:%g ISO Week %V', DATE '2024-12-31') | Dec:31:25 ISO Week 01 |
FORMAT_DATE('%h:%e:%g ISO Week %V', DATE '2024-12-31') | Dec:31:25 ISO Week 01 |
FORMAT_DATE('%m.%e.%Y ISO Week %V', DATE '2024-12-31') | 12.31.2024 ISO Week 01 |
FORMAT_DATE('%m.%e.%E4Y ISO Week %V', DATE '2024-12-31') | 12.31.2024 ISO Week 01 |
FORMAT_DATE('%m.%e.%y ISO Week %V', DATE '2024-12-31') | 12.31.24 ISO Week 01 |
FORMAT_DATE('%m.%e.%G ISO Week %V', DATE '2024-12-31') | 12.31.2025 ISO Week 01 |
FORMAT_DATE('%m.%e.%g ISO Week %V', DATE '2024-12-31') | 12.31.25 ISO Week 01 |
FORMAT_DATE('%B.%e.%Y ISO Week %V', DATE '2024-12-31') | December.31.2024 ISO Week 01 |
FORMAT_DATE('%b.%e.%Y ISO Week %V', DATE '2024-12-31') | Dec.31.2024 ISO Week 01 |
FORMAT_DATE('%h.%e.%Y ISO Week %V', DATE '2024-12-31') | Dec.31.2024 ISO Week 01 |
FORMAT_DATE('%B.%e.%E4Y ISO Week %V', DATE '2024-12-31') | December.31.2024 ISO Week 01 |
FORMAT_DATE('%b.%e.%E4Y ISO Week %V', DATE '2024-12-31') | Dec.31.2024 ISO Week 01 |
FORMAT_DATE('%h.%e.%E4Y ISO Week %V', DATE '2024-12-31') | Dec.31.2024 ISO Week 01 |
FORMAT_DATE('%B.%e.%y ISO Week %V', DATE '2024-12-31') | December.31.24 ISO Week 01 |
FORMAT_DATE('%b.%e.%y ISO Week %V', DATE '2024-12-31') | Dec.31.24 ISO Week 01 |
FORMAT_DATE('%h.%e.%y ISO Week %V', DATE '2024-12-31') | Dec.31.24 ISO Week 01 |
FORMAT_DATE('%B.%e.%G ISO Week %V', DATE '2024-12-31') | December.31.2025 ISO Week 01 |
FORMAT_DATE('%b.%e.%G ISO Week %V', DATE '2024-12-31') | Dec.31.2025 ISO Week 01 |
FORMAT_DATE('%h.%e.%G ISO Week %V', DATE '2024-12-31') | Dec.31.2025 ISO Week 01 |
FORMAT_DATE('%B.%e.%g ISO Week %V', DATE '2024-12-31') | December.31.25 ISO Week 01 |
FORMAT_DATE('%b.%e.%g ISO Week %V', DATE '2024-12-31') | Dec.31.25 ISO Week 01 |
FORMAT_DATE('%h.%e.%g ISO Week %V', DATE '2024-12-31') | Dec.31.25 ISO Week 01 |
FORMAT_DATE('%m %e %Y ISO Week %V', DATE '2024-12-31') | 12 31 2024 ISO Week 01 |
FORMAT_DATE('%m %e %E4Y ISO Week %V', DATE '2024-12-31') | 12 31 2024 ISO Week 01 |
FORMAT_DATE('%m %e %y ISO Week %V', DATE '2024-12-31') | 12 31 24 ISO Week 01 |
FORMAT_DATE('%m %e %G ISO Week %V', DATE '2024-12-31') | 12 31 2025 ISO Week 01 |
FORMAT_DATE('%m %e %g ISO Week %V', DATE '2024-12-31') | 12 31 25 ISO Week 01 |
FORMAT_DATE('%B %e %Y ISO Week %V', DATE '2024-12-31') | December 31 2024 ISO Week 01 |
FORMAT_DATE('%b %e %Y ISO Week %V', DATE '2024-12-31') | Dec 31 2024 ISO Week 01 |
FORMAT_DATE('%h %e %Y ISO Week %V', DATE '2024-12-31') | Dec 31 2024 ISO Week 01 |
FORMAT_DATE('%B %e %E4Y ISO Week %V', DATE '2024-12-31') | December 31 2024 ISO Week 01 |
FORMAT_DATE('%b %e %E4Y ISO Week %V', DATE '2024-12-31') | Dec 31 2024 ISO Week 01 |
FORMAT_DATE('%h %e %E4Y ISO Week %V', DATE '2024-12-31') | Dec 31 2024 ISO Week 01 |
FORMAT_DATE('%B %e %y ISO Week %V', DATE '2024-12-31') | December 31 24 ISO Week 01 |
FORMAT_DATE('%b %e %y ISO Week %V', DATE '2024-12-31') | Dec 31 24 ISO Week 01 |
FORMAT_DATE('%h %e %y ISO Week %V', DATE '2024-12-31') | Dec 31 24 ISO Week 01 |
FORMAT_DATE('%B %e %G ISO Week %V', DATE '2024-12-31') | December 31 2025 ISO Week 01 |
FORMAT_DATE('%b %e %G ISO Week %V', DATE '2024-12-31') | Dec 31 2025 ISO Week 01 |
FORMAT_DATE('%h %e %G ISO Week %V', DATE '2024-12-31') | Dec 31 2025 ISO Week 01 |
FORMAT_DATE('%B %e %g ISO Week %V', DATE '2024-12-31') | December 31 25 ISO Week 01 |
FORMAT_DATE('%b %e %g ISO Week %V', DATE '2024-12-31') | Dec 31 25 ISO Week 01 |
FORMAT_DATE('%h %e %g ISO Week %V', DATE '2024-12-31') | Dec 31 25 ISO Week 01 |
FORMAT_DATE('%m%e%Y ISO Week %V', DATE '2024-12-31') | 12312024 ISO Week 01 |
FORMAT_DATE('%m%e%E4Y ISO Week %V', DATE '2024-12-31') | 12312024 ISO Week 01 |
FORMAT_DATE('%m%e%y ISO Week %V', DATE '2024-12-31') | 123124 ISO Week 01 |
FORMAT_DATE('%m%e%G ISO Week %V', DATE '2024-12-31') | 12312025 ISO Week 01 |
FORMAT_DATE('%m%e%g ISO Week %V', DATE '2024-12-31') | 123125 ISO Week 01 |
FORMAT_DATE('%B%e%Y ISO Week %V', DATE '2024-12-31') | December312024 ISO Week 01 |
FORMAT_DATE('%b%e%Y ISO Week %V', DATE '2024-12-31') | Dec312024 ISO Week 01 |
FORMAT_DATE('%h%e%Y ISO Week %V', DATE '2024-12-31') | Dec312024 ISO Week 01 |
FORMAT_DATE('%B%e%E4Y ISO Week %V', DATE '2024-12-31') | December312024 ISO Week 01 |
FORMAT_DATE('%b%e%E4Y ISO Week %V', DATE '2024-12-31') | Dec312024 ISO Week 01 |
FORMAT_DATE('%h%e%E4Y ISO Week %V', DATE '2024-12-31') | Dec312024 ISO Week 01 |
FORMAT_DATE('%B%e%y ISO Week %V', DATE '2024-12-31') | December3124 ISO Week 01 |
FORMAT_DATE('%b%e%y ISO Week %V', DATE '2024-12-31') | Dec3124 ISO Week 01 |
FORMAT_DATE('%h%e%y ISO Week %V', DATE '2024-12-31') | Dec3124 ISO Week 01 |
FORMAT_DATE('%B%e%G ISO Week %V', DATE '2024-12-31') | December312025 ISO Week 01 |
FORMAT_DATE('%b%e%G ISO Week %V', DATE '2024-12-31') | Dec312025 ISO Week 01 |
FORMAT_DATE('%h%e%G ISO Week %V', DATE '2024-12-31') | Dec312025 ISO Week 01 |
FORMAT_DATE('%B%e%g ISO Week %V', DATE '2024-12-31') | December3125 ISO Week 01 |
FORMAT_DATE('%b%e%g ISO Week %V', DATE '2024-12-31') | Dec3125 ISO Week 01 |
FORMAT_DATE('%h%e%g ISO Week %V', DATE '2024-12-31') | Dec3125 ISO Week 01 |
FORMAT_DATE('%m-%d-%Y', DATE '2024-12-31') | 12-31-2024 |
FORMAT_DATE('%m-%d-%E4Y', DATE '2024-12-31') | 12-31-2024 |
FORMAT_DATE('%m-%d-%y', DATE '2024-12-31') | 12-31-24 |
FORMAT_DATE('%m-%d-%G', DATE '2024-12-31') | 12-31-2025 |
FORMAT_DATE('%m-%d-%g', DATE '2024-12-31') | 12-31-25 |
FORMAT_DATE('%B-%d-%Y', DATE '2024-12-31') | December-31-2024 |
FORMAT_DATE('%b-%d-%Y', DATE '2024-12-31') | Dec-31-2024 |
FORMAT_DATE('%h-%d-%Y', DATE '2024-12-31') | Dec-31-2024 |
FORMAT_DATE('%B-%d-%E4Y', DATE '2024-12-31') | December-31-2024 |
FORMAT_DATE('%b-%d-%E4Y', DATE '2024-12-31') | Dec-31-2024 |
FORMAT_DATE('%h-%d-%E4Y', DATE '2024-12-31') | Dec-31-2024 |
FORMAT_DATE('%B-%d-%y', DATE '2024-12-31') | December-31-24 |
FORMAT_DATE('%b-%d-%y', DATE '2024-12-31') | Dec-31-24 |
FORMAT_DATE('%h-%d-%y', DATE '2024-12-31') | Dec-31-24 |
FORMAT_DATE('%B-%d-%G', DATE '2024-12-31') | December-31-2025 |
FORMAT_DATE('%b-%d-%G', DATE '2024-12-31') | Dec-31-2025 |
FORMAT_DATE('%h-%d-%G', DATE '2024-12-31') | Dec-31-2025 |
FORMAT_DATE('%B-%d-%g', DATE '2024-12-31') | December-31-25 |
FORMAT_DATE('%b-%d-%g', DATE '2024-12-31') | Dec-31-25 |
FORMAT_DATE('%h-%d-%g', DATE '2024-12-31') | Dec-31-25 |
FORMAT_DATE('%m-%d-%Y Day %j', DATE '2024-12-31') | 12-31-2024 Day 366 |
FORMAT_DATE('%m-%d-%E4Y Day %j', DATE '2024-12-31') | 12-31-2024 Day 366 |
FORMAT_DATE('%m-%d-%y Day %j', DATE '2024-12-31') | 12-31-24 Day 366 |
FORMAT_DATE('%m-%d-%G Day %j', DATE '2024-12-31') | 12-31-2025 Day 366 |
FORMAT_DATE('%m-%d-%g Day %j', DATE '2024-12-31') | 12-31-25 Day 366 |
FORMAT_DATE('%B-%d-%Y Day %j', DATE '2024-12-31') | December-31-2024 Day 366 |
FORMAT_DATE('%b-%d-%Y Day %j', DATE '2024-12-31') | Dec-31-2024 Day 366 |
FORMAT_DATE('%h-%d-%Y Day %j', DATE '2024-12-31') | Dec-31-2024 Day 366 |
FORMAT_DATE('%B-%d-%E4Y Day %j', DATE '2024-12-31') | December-31-2024 Day 366 |
FORMAT_DATE('%b-%d-%E4Y Day %j', DATE '2024-12-31') | Dec-31-2024 Day 366 |
FORMAT_DATE('%h-%d-%E4Y Day %j', DATE '2024-12-31') | Dec-31-2024 Day 366 |
FORMAT_DATE('%B-%d-%y Day %j', DATE '2024-12-31') | December-31-24 Day 366 |
FORMAT_DATE('%b-%d-%y Day %j', DATE '2024-12-31') | Dec-31-24 Day 366 |
FORMAT_DATE('%h-%d-%y Day %j', DATE '2024-12-31') | Dec-31-24 Day 366 |
FORMAT_DATE('%B-%d-%G Day %j', DATE '2024-12-31') | December-31-2025 Day 366 |
FORMAT_DATE('%b-%d-%G Day %j', DATE '2024-12-31') | Dec-31-2025 Day 366 |
FORMAT_DATE('%h-%d-%G Day %j', DATE '2024-12-31') | Dec-31-2025 Day 366 |
FORMAT_DATE('%B-%d-%g Day %j', DATE '2024-12-31') | December-31-25 Day 366 |
FORMAT_DATE('%b-%d-%g Day %j', DATE '2024-12-31') | Dec-31-25 Day 366 |
FORMAT_DATE('%h-%d-%g Day %j', DATE '2024-12-31') | Dec-31-25 Day 366 |
FORMAT_DATE('%m/%d/%Y', DATE '2024-12-31') | 12/31/2024 |
FORMAT_DATE('%m/%d/%E4Y', DATE '2024-12-31') | 12/31/2024 |
FORMAT_DATE('%m/%d/%y', DATE '2024-12-31') | 12/31/24 |
FORMAT_DATE('%m/%d/%G', DATE '2024-12-31') | 12/31/2025 |
FORMAT_DATE('%m/%d/%g', DATE '2024-12-31') | 12/31/25 |
FORMAT_DATE('%B/%d/%Y', DATE '2024-12-31') | December/31/2024 |
FORMAT_DATE('%b/%d/%Y', DATE '2024-12-31') | Dec/31/2024 |
FORMAT_DATE('%h/%d/%Y', DATE '2024-12-31') | Dec/31/2024 |
FORMAT_DATE('%B/%d/%E4Y', DATE '2024-12-31') | December/31/2024 |
FORMAT_DATE('%b/%d/%E4Y', DATE '2024-12-31') | Dec/31/2024 |
FORMAT_DATE('%h/%d/%E4Y', DATE '2024-12-31') | Dec/31/2024 |
FORMAT_DATE('%B/%d/%y', DATE '2024-12-31') | December/31/24 |
FORMAT_DATE('%b/%d/%y', DATE '2024-12-31') | Dec/31/24 |
FORMAT_DATE('%h/%d/%y', DATE '2024-12-31') | Dec/31/24 |
FORMAT_DATE('%B/%d/%G', DATE '2024-12-31') | December/31/2025 |
FORMAT_DATE('%b/%d/%G', DATE '2024-12-31') | Dec/31/2025 |
FORMAT_DATE('%h/%d/%G', DATE '2024-12-31') | Dec/31/2025 |
FORMAT_DATE('%B/%d/%g', DATE '2024-12-31') | December/31/25 |
FORMAT_DATE('%b/%d/%g', DATE '2024-12-31') | Dec/31/25 |
FORMAT_DATE('%h/%d/%g', DATE '2024-12-31') | Dec/31/25 |
FORMAT_DATE('%m/%d/%Y Day %j', DATE '2024-12-31') | 12/31/2024 Day 366 |
FORMAT_DATE('%m/%d/%E4Y Day %j', DATE '2024-12-31') | 12/31/2024 Day 366 |
FORMAT_DATE('%m/%d/%y Day %j', DATE '2024-12-31') | 12/31/24 Day 366 |
FORMAT_DATE('%m/%d/%G Day %j', DATE '2024-12-31') | 12/31/2025 Day 366 |
FORMAT_DATE('%m/%d/%g Day %j', DATE '2024-12-31') | 12/31/25 Day 366 |
FORMAT_DATE('%B/%d/%Y Day %j', DATE '2024-12-31') | December/31/2024 Day 366 |
FORMAT_DATE('%b/%d/%Y Day %j', DATE '2024-12-31') | Dec/31/2024 Day 366 |
FORMAT_DATE('%h/%d/%Y Day %j', DATE '2024-12-31') | Dec/31/2024 Day 366 |
FORMAT_DATE('%B/%d/%E4Y Day %j', DATE '2024-12-31') | December/31/2024 Day 366 |
FORMAT_DATE('%b/%d/%E4Y Day %j', DATE '2024-12-31') | Dec/31/2024 Day 366 |
FORMAT_DATE('%h/%d/%E4Y Day %j', DATE '2024-12-31') | Dec/31/2024 Day 366 |
FORMAT_DATE('%B/%d/%y Day %j', DATE '2024-12-31') | December/31/24 Day 366 |
FORMAT_DATE('%b/%d/%y Day %j', DATE '2024-12-31') | Dec/31/24 Day 366 |
FORMAT_DATE('%h/%d/%y Day %j', DATE '2024-12-31') | Dec/31/24 Day 366 |
FORMAT_DATE('%B/%d/%G Day %j', DATE '2024-12-31') | December/31/2025 Day 366 |
FORMAT_DATE('%b/%d/%G Day %j', DATE '2024-12-31') | Dec/31/2025 Day 366 |
FORMAT_DATE('%h/%d/%G Day %j', DATE '2024-12-31') | Dec/31/2025 Day 366 |
FORMAT_DATE('%B/%d/%g Day %j', DATE '2024-12-31') | December/31/25 Day 366 |
FORMAT_DATE('%b/%d/%g Day %j', DATE '2024-12-31') | Dec/31/25 Day 366 |
FORMAT_DATE('%h/%d/%g Day %j', DATE '2024-12-31') | Dec/31/25 Day 366 |
FORMAT_DATE('%m:%d:%Y', DATE '2024-12-31') | 12:31:2024 |
FORMAT_DATE('%m:%d:%E4Y', DATE '2024-12-31') | 12:31:2024 |
FORMAT_DATE('%m:%d:%y', DATE '2024-12-31') | 12:31:24 |
FORMAT_DATE('%m:%d:%G', DATE '2024-12-31') | 12:31:2025 |
FORMAT_DATE('%m:%d:%g', DATE '2024-12-31') | 12:31:25 |
FORMAT_DATE('%B:%d:%Y', DATE '2024-12-31') | December:31:2024 |
FORMAT_DATE('%b:%d:%Y', DATE '2024-12-31') | Dec:31:2024 |
FORMAT_DATE('%h:%d:%Y', DATE '2024-12-31') | Dec:31:2024 |
FORMAT_DATE('%B:%d:%E4Y', DATE '2024-12-31') | December:31:2024 |
FORMAT_DATE('%b:%d:%E4Y', DATE '2024-12-31') | Dec:31:2024 |
FORMAT_DATE('%h:%d:%E4Y', DATE '2024-12-31') | Dec:31:2024 |
FORMAT_DATE('%B:%d:%y', DATE '2024-12-31') | December:31:24 |
FORMAT_DATE('%b:%d:%y', DATE '2024-12-31') | Dec:31:24 |
FORMAT_DATE('%h:%d:%y', DATE '2024-12-31') | Dec:31:24 |
FORMAT_DATE('%B:%d:%G', DATE '2024-12-31') | December:31:2025 |
FORMAT_DATE('%b:%d:%G', DATE '2024-12-31') | Dec:31:2025 |
FORMAT_DATE('%h:%d:%G', DATE '2024-12-31') | Dec:31:2025 |
FORMAT_DATE('%B:%d:%g', DATE '2024-12-31') | December:31:25 |
FORMAT_DATE('%b:%d:%g', DATE '2024-12-31') | Dec:31:25 |
FORMAT_DATE('%h:%d:%g', DATE '2024-12-31') | Dec:31:25 |
FORMAT_DATE('%m:%d:%Y Day %j', DATE '2024-12-31') | 12:31:2024 Day 366 |
FORMAT_DATE('%m:%d:%E4Y Day %j', DATE '2024-12-31') | 12:31:2024 Day 366 |
FORMAT_DATE('%m:%d:%y Day %j', DATE '2024-12-31') | 12:31:24 Day 366 |
FORMAT_DATE('%m:%d:%G Day %j', DATE '2024-12-31') | 12:31:2025 Day 366 |
FORMAT_DATE('%m:%d:%g Day %j', DATE '2024-12-31') | 12:31:25 Day 366 |
FORMAT_DATE('%B:%d:%Y Day %j', DATE '2024-12-31') | December:31:2024 Day 366 |
FORMAT_DATE('%b:%d:%Y Day %j', DATE '2024-12-31') | Dec:31:2024 Day 366 |
FORMAT_DATE('%h:%d:%Y Day %j', DATE '2024-12-31') | Dec:31:2024 Day 366 |
FORMAT_DATE('%B:%d:%E4Y Day %j', DATE '2024-12-31') | December:31:2024 Day 366 |
FORMAT_DATE('%b:%d:%E4Y Day %j', DATE '2024-12-31') | Dec:31:2024 Day 366 |
FORMAT_DATE('%h:%d:%E4Y Day %j', DATE '2024-12-31') | Dec:31:2024 Day 366 |
FORMAT_DATE('%B:%d:%y Day %j', DATE '2024-12-31') | December:31:24 Day 366 |
FORMAT_DATE('%b:%d:%y Day %j', DATE '2024-12-31') | Dec:31:24 Day 366 |
FORMAT_DATE('%h:%d:%y Day %j', DATE '2024-12-31') | Dec:31:24 Day 366 |
FORMAT_DATE('%B:%d:%G Day %j', DATE '2024-12-31') | December:31:2025 Day 366 |
FORMAT_DATE('%b:%d:%G Day %j', DATE '2024-12-31') | Dec:31:2025 Day 366 |
FORMAT_DATE('%h:%d:%G Day %j', DATE '2024-12-31') | Dec:31:2025 Day 366 |
FORMAT_DATE('%B:%d:%g Day %j', DATE '2024-12-31') | December:31:25 Day 366 |
FORMAT_DATE('%b:%d:%g Day %j', DATE '2024-12-31') | Dec:31:25 Day 366 |
FORMAT_DATE('%h:%d:%g Day %j', DATE '2024-12-31') | Dec:31:25 Day 366 |
FORMAT_DATE('%m.%d.%Y', DATE '2024-12-31') | 12.31.2024 |
FORMAT_DATE('%m.%d.%E4Y', DATE '2024-12-31') | 12.31.2024 |
FORMAT_DATE('%m.%d.%y', DATE '2024-12-31') | 12.31.24 |
FORMAT_DATE('%m.%d.%G', DATE '2024-12-31') | 12.31.2025 |
FORMAT_DATE('%m.%d.%g', DATE '2024-12-31') | 12.31.25 |
FORMAT_DATE('%B.%d.%Y', DATE '2024-12-31') | December.31.2024 |
FORMAT_DATE('%b.%d.%Y', DATE '2024-12-31') | Dec.31.2024 |
FORMAT_DATE('%h.%d.%Y', DATE '2024-12-31') | Dec.31.2024 |
FORMAT_DATE('%B.%d.%E4Y', DATE '2024-12-31') | December.31.2024 |
FORMAT_DATE('%b.%d.%E4Y', DATE '2024-12-31') | Dec.31.2024 |
FORMAT_DATE('%h.%d.%E4Y', DATE '2024-12-31') | Dec.31.2024 |
FORMAT_DATE('%B.%d.%y', DATE '2024-12-31') | December.31.24 |
FORMAT_DATE('%b.%d.%y', DATE '2024-12-31') | Dec.31.24 |
FORMAT_DATE('%h.%d.%y', DATE '2024-12-31') | Dec.31.24 |
FORMAT_DATE('%B.%d.%G', DATE '2024-12-31') | December.31.2025 |
FORMAT_DATE('%b.%d.%G', DATE '2024-12-31') | Dec.31.2025 |
FORMAT_DATE('%h.%d.%G', DATE '2024-12-31') | Dec.31.2025 |
FORMAT_DATE('%B.%d.%g', DATE '2024-12-31') | December.31.25 |
FORMAT_DATE('%b.%d.%g', DATE '2024-12-31') | Dec.31.25 |
FORMAT_DATE('%h.%d.%g', DATE '2024-12-31') | Dec.31.25 |
FORMAT_DATE('%m.%d.%Y Day %j', DATE '2024-12-31') | 12.31.2024 Day 366 |
FORMAT_DATE('%m.%d.%E4Y Day %j', DATE '2024-12-31') | 12.31.2024 Day 366 |
FORMAT_DATE('%m.%d.%y Day %j', DATE '2024-12-31') | 12.31.24 Day 366 |
FORMAT_DATE('%m.%d.%G Day %j', DATE '2024-12-31') | 12.31.2025 Day 366 |
FORMAT_DATE('%m.%d.%g Day %j', DATE '2024-12-31') | 12.31.25 Day 366 |
FORMAT_DATE('%B.%d.%Y Day %j', DATE '2024-12-31') | December.31.2024 Day 366 |
FORMAT_DATE('%b.%d.%Y Day %j', DATE '2024-12-31') | Dec.31.2024 Day 366 |
FORMAT_DATE('%h.%d.%Y Day %j', DATE '2024-12-31') | Dec.31.2024 Day 366 |
FORMAT_DATE('%B.%d.%E4Y Day %j', DATE '2024-12-31') | December.31.2024 Day 366 |
FORMAT_DATE('%b.%d.%E4Y Day %j', DATE '2024-12-31') | Dec.31.2024 Day 366 |
FORMAT_DATE('%h.%d.%E4Y Day %j', DATE '2024-12-31') | Dec.31.2024 Day 366 |
FORMAT_DATE('%B.%d.%y Day %j', DATE '2024-12-31') | December.31.24 Day 366 |
FORMAT_DATE('%b.%d.%y Day %j', DATE '2024-12-31') | Dec.31.24 Day 366 |
FORMAT_DATE('%h.%d.%y Day %j', DATE '2024-12-31') | Dec.31.24 Day 366 |
FORMAT_DATE('%B.%d.%G Day %j', DATE '2024-12-31') | December.31.2025 Day 366 |
FORMAT_DATE('%b.%d.%G Day %j', DATE '2024-12-31') | Dec.31.2025 Day 366 |
FORMAT_DATE('%h.%d.%G Day %j', DATE '2024-12-31') | Dec.31.2025 Day 366 |
FORMAT_DATE('%B.%d.%g Day %j', DATE '2024-12-31') | December.31.25 Day 366 |
FORMAT_DATE('%b.%d.%g Day %j', DATE '2024-12-31') | Dec.31.25 Day 366 |
FORMAT_DATE('%h.%d.%g Day %j', DATE '2024-12-31') | Dec.31.25 Day 366 |
FORMAT_DATE('%m %d %Y', DATE '2024-12-31') | 12 31 2024 |
FORMAT_DATE('%m %d %E4Y', DATE '2024-12-31') | 12 31 2024 |
FORMAT_DATE('%m %d %y', DATE '2024-12-31') | 12 31 24 |
FORMAT_DATE('%m %d %G', DATE '2024-12-31') | 12 31 2025 |
FORMAT_DATE('%m %d %g', DATE '2024-12-31') | 12 31 25 |
FORMAT_DATE('%B %d %Y', DATE '2024-12-31') | December 31 2024 |
FORMAT_DATE('%b %d %Y', DATE '2024-12-31') | Dec 31 2024 |
FORMAT_DATE('%h %d %Y', DATE '2024-12-31') | Dec 31 2024 |
FORMAT_DATE('%B %d %E4Y', DATE '2024-12-31') | December 31 2024 |
FORMAT_DATE('%b %d %E4Y', DATE '2024-12-31') | Dec 31 2024 |
FORMAT_DATE('%h %d %E4Y', DATE '2024-12-31') | Dec 31 2024 |
FORMAT_DATE('%B %d %y', DATE '2024-12-31') | December 31 24 |
FORMAT_DATE('%b %d %y', DATE '2024-12-31') | Dec 31 24 |
FORMAT_DATE('%h %d %y', DATE '2024-12-31') | Dec 31 24 |
FORMAT_DATE('%B %d %G', DATE '2024-12-31') | December 31 2025 |
FORMAT_DATE('%b %d %G', DATE '2024-12-31') | Dec 31 2025 |
FORMAT_DATE('%h %d %G', DATE '2024-12-31') | Dec 31 2025 |
FORMAT_DATE('%B %d %g', DATE '2024-12-31') | December 31 25 |
FORMAT_DATE('%b %d %g', DATE '2024-12-31') | Dec 31 25 |
FORMAT_DATE('%h %d %g', DATE '2024-12-31') | Dec 31 25 |
FORMAT_DATE('%m %d %Y Day %j', DATE '2024-12-31') | 12 31 2024 Day 366 |
FORMAT_DATE('%m %d %E4Y Day %j', DATE '2024-12-31') | 12 31 2024 Day 366 |
FORMAT_DATE('%m %d %y Day %j', DATE '2024-12-31') | 12 31 24 Day 366 |
FORMAT_DATE('%m %d %G Day %j', DATE '2024-12-31') | 12 31 2025 Day 366 |
FORMAT_DATE('%m %d %g Day %j', DATE '2024-12-31') | 12 31 25 Day 366 |
FORMAT_DATE('%B %d %Y Day %j', DATE '2024-12-31') | December 31 2024 Day 366 |
FORMAT_DATE('%b %d %Y Day %j', DATE '2024-12-31') | Dec 31 2024 Day 366 |
FORMAT_DATE('%h %d %Y Day %j', DATE '2024-12-31') | Dec 31 2024 Day 366 |
FORMAT_DATE('%B %d %E4Y Day %j', DATE '2024-12-31') | December 31 2024 Day 366 |
FORMAT_DATE('%b %d %E4Y Day %j', DATE '2024-12-31') | Dec 31 2024 Day 366 |
FORMAT_DATE('%h %d %E4Y Day %j', DATE '2024-12-31') | Dec 31 2024 Day 366 |
FORMAT_DATE('%B %d %y Day %j', DATE '2024-12-31') | December 31 24 Day 366 |
FORMAT_DATE('%b %d %y Day %j', DATE '2024-12-31') | Dec 31 24 Day 366 |
FORMAT_DATE('%h %d %y Day %j', DATE '2024-12-31') | Dec 31 24 Day 366 |
FORMAT_DATE('%B %d %G Day %j', DATE '2024-12-31') | December 31 2025 Day 366 |
FORMAT_DATE('%b %d %G Day %j', DATE '2024-12-31') | Dec 31 2025 Day 366 |
FORMAT_DATE('%h %d %G Day %j', DATE '2024-12-31') | Dec 31 2025 Day 366 |
FORMAT_DATE('%B %d %g Day %j', DATE '2024-12-31') | December 31 25 Day 366 |
FORMAT_DATE('%b %d %g Day %j', DATE '2024-12-31') | Dec 31 25 Day 366 |
FORMAT_DATE('%h %d %g Day %j', DATE '2024-12-31') | Dec 31 25 Day 366 |
FORMAT_DATE('%m%d%Y', DATE '2024-12-31') | 12312024 |
FORMAT_DATE('%m%d%E4Y', DATE '2024-12-31') | 12312024 |
FORMAT_DATE('%m%d%y', DATE '2024-12-31') | 123124 |
FORMAT_DATE('%m%d%G', DATE '2024-12-31') | 12312025 |
FORMAT_DATE('%m%d%g', DATE '2024-12-31') | 123125 |
FORMAT_DATE('%B%d%Y', DATE '2024-12-31') | December312024 |
FORMAT_DATE('%b%d%Y', DATE '2024-12-31') | Dec312024 |
FORMAT_DATE('%h%d%Y', DATE '2024-12-31') | Dec312024 |
FORMAT_DATE('%B%d%E4Y', DATE '2024-12-31') | December312024 |
FORMAT_DATE('%b%d%E4Y', DATE '2024-12-31') | Dec312024 |
FORMAT_DATE('%h%d%E4Y', DATE '2024-12-31') | Dec312024 |
FORMAT_DATE('%B%d%y', DATE '2024-12-31') | December3124 |
FORMAT_DATE('%b%d%y', DATE '2024-12-31') | Dec3124 |
FORMAT_DATE('%h%d%y', DATE '2024-12-31') | Dec3124 |
FORMAT_DATE('%B%d%G', DATE '2024-12-31') | December312025 |
FORMAT_DATE('%b%d%G', DATE '2024-12-31') | Dec312025 |
FORMAT_DATE('%h%d%G', DATE '2024-12-31') | Dec312025 |
FORMAT_DATE('%B%d%g', DATE '2024-12-31') | December3125 |
FORMAT_DATE('%b%d%g', DATE '2024-12-31') | Dec3125 |
FORMAT_DATE('%h%d%g', DATE '2024-12-31') | Dec3125 |
FORMAT_DATE('%m%d%Y Day %j', DATE '2024-12-31') | 12312024 Day 366 |
FORMAT_DATE('%m%d%E4Y Day %j', DATE '2024-12-31') | 12312024 Day 366 |
FORMAT_DATE('%m%d%y Day %j', DATE '2024-12-31') | 123124 Day 366 |
FORMAT_DATE('%m%d%G Day %j', DATE '2024-12-31') | 12312025 Day 366 |
FORMAT_DATE('%m%d%g Day %j', DATE '2024-12-31') | 123125 Day 366 |
FORMAT_DATE('%B%d%Y Day %j', DATE '2024-12-31') | December312024 Day 366 |
FORMAT_DATE('%b%d%Y Day %j', DATE '2024-12-31') | Dec312024 Day 366 |
FORMAT_DATE('%h%d%Y Day %j', DATE '2024-12-31') | Dec312024 Day 366 |
FORMAT_DATE('%B%d%E4Y Day %j', DATE '2024-12-31') | December312024 Day 366 |
FORMAT_DATE('%b%d%E4Y Day %j', DATE '2024-12-31') | Dec312024 Day 366 |
FORMAT_DATE('%h%d%E4Y Day %j', DATE '2024-12-31') | Dec312024 Day 366 |
FORMAT_DATE('%B%d%y Day %j', DATE '2024-12-31') | December3124 Day 366 |
FORMAT_DATE('%b%d%y Day %j', DATE '2024-12-31') | Dec3124 Day 366 |
FORMAT_DATE('%h%d%y Day %j', DATE '2024-12-31') | Dec3124 Day 366 |
FORMAT_DATE('%B%d%G Day %j', DATE '2024-12-31') | December312025 Day 366 |
FORMAT_DATE('%b%d%G Day %j', DATE '2024-12-31') | Dec312025 Day 366 |
FORMAT_DATE('%h%d%G Day %j', DATE '2024-12-31') | Dec312025 Day 366 |
FORMAT_DATE('%B%d%g Day %j', DATE '2024-12-31') | December3125 Day 366 |
FORMAT_DATE('%b%d%g Day %j', DATE '2024-12-31') | Dec3125 Day 366 |
FORMAT_DATE('%h%d%g Day %j', DATE '2024-12-31') | Dec3125 Day 366 |
FORMAT_DATE('%m-%d-%Y %A', DATE '2024-12-31') | 12-31-2024 Tuesday |
FORMAT_DATE('%m-%d-%E4Y %A', DATE '2024-12-31') | 12-31-2024 Tuesday |
FORMAT_DATE('%m-%d-%y %A', DATE '2024-12-31') | 12-31-24 Tuesday |
FORMAT_DATE('%m-%d-%G %A', DATE '2024-12-31') | 12-31-2025 Tuesday |
FORMAT_DATE('%m-%d-%g %A', DATE '2024-12-31') | 12-31-25 Tuesday |
FORMAT_DATE('%B-%d-%Y %A', DATE '2024-12-31') | December-31-2024 Tuesday |
FORMAT_DATE('%b-%d-%Y %A', DATE '2024-12-31') | Dec-31-2024 Tuesday |
FORMAT_DATE('%h-%d-%Y %A', DATE '2024-12-31') | Dec-31-2024 Tuesday |
FORMAT_DATE('%B-%d-%E4Y %A', DATE '2024-12-31') | December-31-2024 Tuesday |
FORMAT_DATE('%b-%d-%E4Y %A', DATE '2024-12-31') | Dec-31-2024 Tuesday |
FORMAT_DATE('%h-%d-%E4Y %A', DATE '2024-12-31') | Dec-31-2024 Tuesday |
FORMAT_DATE('%B-%d-%y %A', DATE '2024-12-31') | December-31-24 Tuesday |
FORMAT_DATE('%b-%d-%y %A', DATE '2024-12-31') | Dec-31-24 Tuesday |
FORMAT_DATE('%h-%d-%y %A', DATE '2024-12-31') | Dec-31-24 Tuesday |
FORMAT_DATE('%B-%d-%G %A', DATE '2024-12-31') | December-31-2025 Tuesday |
FORMAT_DATE('%b-%d-%G %A', DATE '2024-12-31') | Dec-31-2025 Tuesday |
FORMAT_DATE('%h-%d-%G %A', DATE '2024-12-31') | Dec-31-2025 Tuesday |
FORMAT_DATE('%B-%d-%g %A', DATE '2024-12-31') | December-31-25 Tuesday |
FORMAT_DATE('%b-%d-%g %A', DATE '2024-12-31') | Dec-31-25 Tuesday |
FORMAT_DATE('%h-%d-%g %A', DATE '2024-12-31') | Dec-31-25 Tuesday |
FORMAT_DATE('%m/%d/%Y %A', DATE '2024-12-31') | 12/31/2024 Tuesday |
FORMAT_DATE('%m/%d/%E4Y %A', DATE '2024-12-31') | 12/31/2024 Tuesday |
FORMAT_DATE('%m/%d/%y %A', DATE '2024-12-31') | 12/31/24 Tuesday |
FORMAT_DATE('%m/%d/%G %A', DATE '2024-12-31') | 12/31/2025 Tuesday |
FORMAT_DATE('%m/%d/%g %A', DATE '2024-12-31') | 12/31/25 Tuesday |
FORMAT_DATE('%B/%d/%Y %A', DATE '2024-12-31') | December/31/2024 Tuesday |
FORMAT_DATE('%b/%d/%Y %A', DATE '2024-12-31') | Dec/31/2024 Tuesday |
FORMAT_DATE('%h/%d/%Y %A', DATE '2024-12-31') | Dec/31/2024 Tuesday |
FORMAT_DATE('%B/%d/%E4Y %A', DATE '2024-12-31') | December/31/2024 Tuesday |
FORMAT_DATE('%b/%d/%E4Y %A', DATE '2024-12-31') | Dec/31/2024 Tuesday |
FORMAT_DATE('%h/%d/%E4Y %A', DATE '2024-12-31') | Dec/31/2024 Tuesday |
FORMAT_DATE('%B/%d/%y %A', DATE '2024-12-31') | December/31/24 Tuesday |
FORMAT_DATE('%b/%d/%y %A', DATE '2024-12-31') | Dec/31/24 Tuesday |
FORMAT_DATE('%h/%d/%y %A', DATE '2024-12-31') | Dec/31/24 Tuesday |
FORMAT_DATE('%B/%d/%G %A', DATE '2024-12-31') | December/31/2025 Tuesday |
FORMAT_DATE('%b/%d/%G %A', DATE '2024-12-31') | Dec/31/2025 Tuesday |
FORMAT_DATE('%h/%d/%G %A', DATE '2024-12-31') | Dec/31/2025 Tuesday |
FORMAT_DATE('%B/%d/%g %A', DATE '2024-12-31') | December/31/25 Tuesday |
FORMAT_DATE('%b/%d/%g %A', DATE '2024-12-31') | Dec/31/25 Tuesday |
FORMAT_DATE('%h/%d/%g %A', DATE '2024-12-31') | Dec/31/25 Tuesday |
FORMAT_DATE('%m:%d:%Y %A', DATE '2024-12-31') | 12:31:2024 Tuesday |
FORMAT_DATE('%m:%d:%E4Y %A', DATE '2024-12-31') | 12:31:2024 Tuesday |
FORMAT_DATE('%m:%d:%y %A', DATE '2024-12-31') | 12:31:24 Tuesday |
FORMAT_DATE('%m:%d:%G %A', DATE '2024-12-31') | 12:31:2025 Tuesday |
FORMAT_DATE('%m:%d:%g %A', DATE '2024-12-31') | 12:31:25 Tuesday |
FORMAT_DATE('%B:%d:%Y %A', DATE '2024-12-31') | December:31:2024 Tuesday |
FORMAT_DATE('%b:%d:%Y %A', DATE '2024-12-31') | Dec:31:2024 Tuesday |
FORMAT_DATE('%h:%d:%Y %A', DATE '2024-12-31') | Dec:31:2024 Tuesday |
FORMAT_DATE('%B:%d:%E4Y %A', DATE '2024-12-31') | December:31:2024 Tuesday |
FORMAT_DATE('%b:%d:%E4Y %A', DATE '2024-12-31') | Dec:31:2024 Tuesday |
FORMAT_DATE('%h:%d:%E4Y %A', DATE '2024-12-31') | Dec:31:2024 Tuesday |
FORMAT_DATE('%B:%d:%y %A', DATE '2024-12-31') | December:31:24 Tuesday |
FORMAT_DATE('%b:%d:%y %A', DATE '2024-12-31') | Dec:31:24 Tuesday |
FORMAT_DATE('%h:%d:%y %A', DATE '2024-12-31') | Dec:31:24 Tuesday |
FORMAT_DATE('%B:%d:%G %A', DATE '2024-12-31') | December:31:2025 Tuesday |
FORMAT_DATE('%b:%d:%G %A', DATE '2024-12-31') | Dec:31:2025 Tuesday |
FORMAT_DATE('%h:%d:%G %A', DATE '2024-12-31') | Dec:31:2025 Tuesday |
FORMAT_DATE('%B:%d:%g %A', DATE '2024-12-31') | December:31:25 Tuesday |
FORMAT_DATE('%b:%d:%g %A', DATE '2024-12-31') | Dec:31:25 Tuesday |
FORMAT_DATE('%h:%d:%g %A', DATE '2024-12-31') | Dec:31:25 Tuesday |
FORMAT_DATE('%m.%d.%Y %A', DATE '2024-12-31') | 12.31.2024 Tuesday |
FORMAT_DATE('%m.%d.%E4Y %A', DATE '2024-12-31') | 12.31.2024 Tuesday |
FORMAT_DATE('%m.%d.%y %A', DATE '2024-12-31') | 12.31.24 Tuesday |
FORMAT_DATE('%m.%d.%G %A', DATE '2024-12-31') | 12.31.2025 Tuesday |
FORMAT_DATE('%m.%d.%g %A', DATE '2024-12-31') | 12.31.25 Tuesday |
FORMAT_DATE('%B.%d.%Y %A', DATE '2024-12-31') | December.31.2024 Tuesday |
FORMAT_DATE('%b.%d.%Y %A', DATE '2024-12-31') | Dec.31.2024 Tuesday |
FORMAT_DATE('%h.%d.%Y %A', DATE '2024-12-31') | Dec.31.2024 Tuesday |
FORMAT_DATE('%B.%d.%E4Y %A', DATE '2024-12-31') | December.31.2024 Tuesday |
FORMAT_DATE('%b.%d.%E4Y %A', DATE '2024-12-31') | Dec.31.2024 Tuesday |
FORMAT_DATE('%h.%d.%E4Y %A', DATE '2024-12-31') | Dec.31.2024 Tuesday |
FORMAT_DATE('%B.%d.%y %A', DATE '2024-12-31') | December.31.24 Tuesday |
FORMAT_DATE('%b.%d.%y %A', DATE '2024-12-31') | Dec.31.24 Tuesday |
FORMAT_DATE('%h.%d.%y %A', DATE '2024-12-31') | Dec.31.24 Tuesday |
FORMAT_DATE('%B.%d.%G %A', DATE '2024-12-31') | December.31.2025 Tuesday |
FORMAT_DATE('%b.%d.%G %A', DATE '2024-12-31') | Dec.31.2025 Tuesday |
FORMAT_DATE('%h.%d.%G %A', DATE '2024-12-31') | Dec.31.2025 Tuesday |
FORMAT_DATE('%B.%d.%g %A', DATE '2024-12-31') | December.31.25 Tuesday |
FORMAT_DATE('%b.%d.%g %A', DATE '2024-12-31') | Dec.31.25 Tuesday |
FORMAT_DATE('%h.%d.%g %A', DATE '2024-12-31') | Dec.31.25 Tuesday |
FORMAT_DATE('%m %d %Y %A', DATE '2024-12-31') | 12 31 2024 Tuesday |
FORMAT_DATE('%m %d %E4Y %A', DATE '2024-12-31') | 12 31 2024 Tuesday |
FORMAT_DATE('%m %d %y %A', DATE '2024-12-31') | 12 31 24 Tuesday |
FORMAT_DATE('%m %d %G %A', DATE '2024-12-31') | 12 31 2025 Tuesday |
FORMAT_DATE('%m %d %g %A', DATE '2024-12-31') | 12 31 25 Tuesday |
FORMAT_DATE('%B %d %Y %A', DATE '2024-12-31') | December 31 2024 Tuesday |
FORMAT_DATE('%b %d %Y %A', DATE '2024-12-31') | Dec 31 2024 Tuesday |
FORMAT_DATE('%h %d %Y %A', DATE '2024-12-31') | Dec 31 2024 Tuesday |
FORMAT_DATE('%B %d %E4Y %A', DATE '2024-12-31') | December 31 2024 Tuesday |
FORMAT_DATE('%b %d %E4Y %A', DATE '2024-12-31') | Dec 31 2024 Tuesday |
FORMAT_DATE('%h %d %E4Y %A', DATE '2024-12-31') | Dec 31 2024 Tuesday |
FORMAT_DATE('%B %d %y %A', DATE '2024-12-31') | December 31 24 Tuesday |
FORMAT_DATE('%b %d %y %A', DATE '2024-12-31') | Dec 31 24 Tuesday |
FORMAT_DATE('%h %d %y %A', DATE '2024-12-31') | Dec 31 24 Tuesday |
FORMAT_DATE('%B %d %G %A', DATE '2024-12-31') | December 31 2025 Tuesday |
FORMAT_DATE('%b %d %G %A', DATE '2024-12-31') | Dec 31 2025 Tuesday |
FORMAT_DATE('%h %d %G %A', DATE '2024-12-31') | Dec 31 2025 Tuesday |
FORMAT_DATE('%B %d %g %A', DATE '2024-12-31') | December 31 25 Tuesday |
FORMAT_DATE('%b %d %g %A', DATE '2024-12-31') | Dec 31 25 Tuesday |
FORMAT_DATE('%h %d %g %A', DATE '2024-12-31') | Dec 31 25 Tuesday |
FORMAT_DATE('%m%d%Y %A', DATE '2024-12-31') | 12312024 Tuesday |
FORMAT_DATE('%m%d%E4Y %A', DATE '2024-12-31') | 12312024 Tuesday |
FORMAT_DATE('%m%d%y %A', DATE '2024-12-31') | 123124 Tuesday |
FORMAT_DATE('%m%d%G %A', DATE '2024-12-31') | 12312025 Tuesday |
FORMAT_DATE('%m%d%g %A', DATE '2024-12-31') | 123125 Tuesday |
FORMAT_DATE('%B%d%Y %A', DATE '2024-12-31') | December312024 Tuesday |
FORMAT_DATE('%b%d%Y %A', DATE '2024-12-31') | Dec312024 Tuesday |
FORMAT_DATE('%h%d%Y %A', DATE '2024-12-31') | Dec312024 Tuesday |
FORMAT_DATE('%B%d%E4Y %A', DATE '2024-12-31') | December312024 Tuesday |
FORMAT_DATE('%b%d%E4Y %A', DATE '2024-12-31') | Dec312024 Tuesday |
FORMAT_DATE('%h%d%E4Y %A', DATE '2024-12-31') | Dec312024 Tuesday |
FORMAT_DATE('%B%d%y %A', DATE '2024-12-31') | December3124 Tuesday |
FORMAT_DATE('%b%d%y %A', DATE '2024-12-31') | Dec3124 Tuesday |
FORMAT_DATE('%h%d%y %A', DATE '2024-12-31') | Dec3124 Tuesday |
FORMAT_DATE('%B%d%G %A', DATE '2024-12-31') | December312025 Tuesday |
FORMAT_DATE('%b%d%G %A', DATE '2024-12-31') | Dec312025 Tuesday |
FORMAT_DATE('%h%d%G %A', DATE '2024-12-31') | Dec312025 Tuesday |
FORMAT_DATE('%B%d%g %A', DATE '2024-12-31') | December3125 Tuesday |
FORMAT_DATE('%b%d%g %A', DATE '2024-12-31') | Dec3125 Tuesday |
FORMAT_DATE('%h%d%g %A', DATE '2024-12-31') | Dec3125 Tuesday |
FORMAT_DATE('%m-%d-%Y %a', DATE '2024-12-31') | 12-31-2024 Tue |
FORMAT_DATE('%m-%d-%E4Y %a', DATE '2024-12-31') | 12-31-2024 Tue |
FORMAT_DATE('%m-%d-%y %a', DATE '2024-12-31') | 12-31-24 Tue |
FORMAT_DATE('%m-%d-%G %a', DATE '2024-12-31') | 12-31-2025 Tue |
FORMAT_DATE('%m-%d-%g %a', DATE '2024-12-31') | 12-31-25 Tue |
FORMAT_DATE('%B-%d-%Y %a', DATE '2024-12-31') | December-31-2024 Tue |
FORMAT_DATE('%b-%d-%Y %a', DATE '2024-12-31') | Dec-31-2024 Tue |
FORMAT_DATE('%h-%d-%Y %a', DATE '2024-12-31') | Dec-31-2024 Tue |
FORMAT_DATE('%B-%d-%E4Y %a', DATE '2024-12-31') | December-31-2024 Tue |
FORMAT_DATE('%b-%d-%E4Y %a', DATE '2024-12-31') | Dec-31-2024 Tue |
FORMAT_DATE('%h-%d-%E4Y %a', DATE '2024-12-31') | Dec-31-2024 Tue |
FORMAT_DATE('%B-%d-%y %a', DATE '2024-12-31') | December-31-24 Tue |
FORMAT_DATE('%b-%d-%y %a', DATE '2024-12-31') | Dec-31-24 Tue |
FORMAT_DATE('%h-%d-%y %a', DATE '2024-12-31') | Dec-31-24 Tue |
FORMAT_DATE('%B-%d-%G %a', DATE '2024-12-31') | December-31-2025 Tue |
FORMAT_DATE('%b-%d-%G %a', DATE '2024-12-31') | Dec-31-2025 Tue |
FORMAT_DATE('%h-%d-%G %a', DATE '2024-12-31') | Dec-31-2025 Tue |
FORMAT_DATE('%B-%d-%g %a', DATE '2024-12-31') | December-31-25 Tue |
FORMAT_DATE('%b-%d-%g %a', DATE '2024-12-31') | Dec-31-25 Tue |
FORMAT_DATE('%h-%d-%g %a', DATE '2024-12-31') | Dec-31-25 Tue |
FORMAT_DATE('%m/%d/%Y %a', DATE '2024-12-31') | 12/31/2024 Tue |
FORMAT_DATE('%m/%d/%E4Y %a', DATE '2024-12-31') | 12/31/2024 Tue |
FORMAT_DATE('%m/%d/%y %a', DATE '2024-12-31') | 12/31/24 Tue |
FORMAT_DATE('%m/%d/%G %a', DATE '2024-12-31') | 12/31/2025 Tue |
FORMAT_DATE('%m/%d/%g %a', DATE '2024-12-31') | 12/31/25 Tue |
FORMAT_DATE('%B/%d/%Y %a', DATE '2024-12-31') | December/31/2024 Tue |
FORMAT_DATE('%b/%d/%Y %a', DATE '2024-12-31') | Dec/31/2024 Tue |
FORMAT_DATE('%h/%d/%Y %a', DATE '2024-12-31') | Dec/31/2024 Tue |
FORMAT_DATE('%B/%d/%E4Y %a', DATE '2024-12-31') | December/31/2024 Tue |
FORMAT_DATE('%b/%d/%E4Y %a', DATE '2024-12-31') | Dec/31/2024 Tue |
FORMAT_DATE('%h/%d/%E4Y %a', DATE '2024-12-31') | Dec/31/2024 Tue |
FORMAT_DATE('%B/%d/%y %a', DATE '2024-12-31') | December/31/24 Tue |
FORMAT_DATE('%b/%d/%y %a', DATE '2024-12-31') | Dec/31/24 Tue |
FORMAT_DATE('%h/%d/%y %a', DATE '2024-12-31') | Dec/31/24 Tue |
FORMAT_DATE('%B/%d/%G %a', DATE '2024-12-31') | December/31/2025 Tue |
FORMAT_DATE('%b/%d/%G %a', DATE '2024-12-31') | Dec/31/2025 Tue |
FORMAT_DATE('%h/%d/%G %a', DATE '2024-12-31') | Dec/31/2025 Tue |
FORMAT_DATE('%B/%d/%g %a', DATE '2024-12-31') | December/31/25 Tue |
FORMAT_DATE('%b/%d/%g %a', DATE '2024-12-31') | Dec/31/25 Tue |
FORMAT_DATE('%h/%d/%g %a', DATE '2024-12-31') | Dec/31/25 Tue |
FORMAT_DATE('%m:%d:%Y %a', DATE '2024-12-31') | 12:31:2024 Tue |
FORMAT_DATE('%m:%d:%E4Y %a', DATE '2024-12-31') | 12:31:2024 Tue |
FORMAT_DATE('%m:%d:%y %a', DATE '2024-12-31') | 12:31:24 Tue |
FORMAT_DATE('%m:%d:%G %a', DATE '2024-12-31') | 12:31:2025 Tue |
FORMAT_DATE('%m:%d:%g %a', DATE '2024-12-31') | 12:31:25 Tue |
FORMAT_DATE('%B:%d:%Y %a', DATE '2024-12-31') | December:31:2024 Tue |
FORMAT_DATE('%b:%d:%Y %a', DATE '2024-12-31') | Dec:31:2024 Tue |
FORMAT_DATE('%h:%d:%Y %a', DATE '2024-12-31') | Dec:31:2024 Tue |
FORMAT_DATE('%B:%d:%E4Y %a', DATE '2024-12-31') | December:31:2024 Tue |
FORMAT_DATE('%b:%d:%E4Y %a', DATE '2024-12-31') | Dec:31:2024 Tue |
FORMAT_DATE('%h:%d:%E4Y %a', DATE '2024-12-31') | Dec:31:2024 Tue |
FORMAT_DATE('%B:%d:%y %a', DATE '2024-12-31') | December:31:24 Tue |
FORMAT_DATE('%b:%d:%y %a', DATE '2024-12-31') | Dec:31:24 Tue |
FORMAT_DATE('%h:%d:%y %a', DATE '2024-12-31') | Dec:31:24 Tue |
FORMAT_DATE('%B:%d:%G %a', DATE '2024-12-31') | December:31:2025 Tue |
FORMAT_DATE('%b:%d:%G %a', DATE '2024-12-31') | Dec:31:2025 Tue |
FORMAT_DATE('%h:%d:%G %a', DATE '2024-12-31') | Dec:31:2025 Tue |
FORMAT_DATE('%B:%d:%g %a', DATE '2024-12-31') | December:31:25 Tue |
FORMAT_DATE('%b:%d:%g %a', DATE '2024-12-31') | Dec:31:25 Tue |
FORMAT_DATE('%h:%d:%g %a', DATE '2024-12-31') | Dec:31:25 Tue |
FORMAT_DATE('%m.%d.%Y %a', DATE '2024-12-31') | 12.31.2024 Tue |
FORMAT_DATE('%m.%d.%E4Y %a', DATE '2024-12-31') | 12.31.2024 Tue |
FORMAT_DATE('%m.%d.%y %a', DATE '2024-12-31') | 12.31.24 Tue |
FORMAT_DATE('%m.%d.%G %a', DATE '2024-12-31') | 12.31.2025 Tue |
FORMAT_DATE('%m.%d.%g %a', DATE '2024-12-31') | 12.31.25 Tue |
FORMAT_DATE('%B.%d.%Y %a', DATE '2024-12-31') | December.31.2024 Tue |
FORMAT_DATE('%b.%d.%Y %a', DATE '2024-12-31') | Dec.31.2024 Tue |
FORMAT_DATE('%h.%d.%Y %a', DATE '2024-12-31') | Dec.31.2024 Tue |
FORMAT_DATE('%B.%d.%E4Y %a', DATE '2024-12-31') | December.31.2024 Tue |
FORMAT_DATE('%b.%d.%E4Y %a', DATE '2024-12-31') | Dec.31.2024 Tue |
FORMAT_DATE('%h.%d.%E4Y %a', DATE '2024-12-31') | Dec.31.2024 Tue |
FORMAT_DATE('%B.%d.%y %a', DATE '2024-12-31') | December.31.24 Tue |
FORMAT_DATE('%b.%d.%y %a', DATE '2024-12-31') | Dec.31.24 Tue |
FORMAT_DATE('%h.%d.%y %a', DATE '2024-12-31') | Dec.31.24 Tue |
FORMAT_DATE('%B.%d.%G %a', DATE '2024-12-31') | December.31.2025 Tue |
FORMAT_DATE('%b.%d.%G %a', DATE '2024-12-31') | Dec.31.2025 Tue |
FORMAT_DATE('%h.%d.%G %a', DATE '2024-12-31') | Dec.31.2025 Tue |
FORMAT_DATE('%B.%d.%g %a', DATE '2024-12-31') | December.31.25 Tue |
FORMAT_DATE('%b.%d.%g %a', DATE '2024-12-31') | Dec.31.25 Tue |
FORMAT_DATE('%h.%d.%g %a', DATE '2024-12-31') | Dec.31.25 Tue |
FORMAT_DATE('%m %d %Y %a', DATE '2024-12-31') | 12 31 2024 Tue |
FORMAT_DATE('%m %d %E4Y %a', DATE '2024-12-31') | 12 31 2024 Tue |
FORMAT_DATE('%m %d %y %a', DATE '2024-12-31') | 12 31 24 Tue |
FORMAT_DATE('%m %d %G %a', DATE '2024-12-31') | 12 31 2025 Tue |
FORMAT_DATE('%m %d %g %a', DATE '2024-12-31') | 12 31 25 Tue |
FORMAT_DATE('%B %d %Y %a', DATE '2024-12-31') | December 31 2024 Tue |
FORMAT_DATE('%b %d %Y %a', DATE '2024-12-31') | Dec 31 2024 Tue |
FORMAT_DATE('%h %d %Y %a', DATE '2024-12-31') | Dec 31 2024 Tue |
FORMAT_DATE('%B %d %E4Y %a', DATE '2024-12-31') | December 31 2024 Tue |
FORMAT_DATE('%b %d %E4Y %a', DATE '2024-12-31') | Dec 31 2024 Tue |
FORMAT_DATE('%h %d %E4Y %a', DATE '2024-12-31') | Dec 31 2024 Tue |
FORMAT_DATE('%B %d %y %a', DATE '2024-12-31') | December 31 24 Tue |
FORMAT_DATE('%b %d %y %a', DATE '2024-12-31') | Dec 31 24 Tue |
FORMAT_DATE('%h %d %y %a', DATE '2024-12-31') | Dec 31 24 Tue |
FORMAT_DATE('%B %d %G %a', DATE '2024-12-31') | December 31 2025 Tue |
FORMAT_DATE('%b %d %G %a', DATE '2024-12-31') | Dec 31 2025 Tue |
FORMAT_DATE('%h %d %G %a', DATE '2024-12-31') | Dec 31 2025 Tue |
FORMAT_DATE('%B %d %g %a', DATE '2024-12-31') | December 31 25 Tue |
FORMAT_DATE('%b %d %g %a', DATE '2024-12-31') | Dec 31 25 Tue |
FORMAT_DATE('%h %d %g %a', DATE '2024-12-31') | Dec 31 25 Tue |
FORMAT_DATE('%m%d%Y %a', DATE '2024-12-31') | 12312024 Tue |
FORMAT_DATE('%m%d%E4Y %a', DATE '2024-12-31') | 12312024 Tue |
FORMAT_DATE('%m%d%y %a', DATE '2024-12-31') | 123124 Tue |
FORMAT_DATE('%m%d%G %a', DATE '2024-12-31') | 12312025 Tue |
FORMAT_DATE('%m%d%g %a', DATE '2024-12-31') | 123125 Tue |
FORMAT_DATE('%B%d%Y %a', DATE '2024-12-31') | December312024 Tue |
FORMAT_DATE('%b%d%Y %a', DATE '2024-12-31') | Dec312024 Tue |
FORMAT_DATE('%h%d%Y %a', DATE '2024-12-31') | Dec312024 Tue |
FORMAT_DATE('%B%d%E4Y %a', DATE '2024-12-31') | December312024 Tue |
FORMAT_DATE('%b%d%E4Y %a', DATE '2024-12-31') | Dec312024 Tue |
FORMAT_DATE('%h%d%E4Y %a', DATE '2024-12-31') | Dec312024 Tue |
FORMAT_DATE('%B%d%y %a', DATE '2024-12-31') | December3124 Tue |
FORMAT_DATE('%b%d%y %a', DATE '2024-12-31') | Dec3124 Tue |
FORMAT_DATE('%h%d%y %a', DATE '2024-12-31') | Dec3124 Tue |
FORMAT_DATE('%B%d%G %a', DATE '2024-12-31') | December312025 Tue |
FORMAT_DATE('%b%d%G %a', DATE '2024-12-31') | Dec312025 Tue |
FORMAT_DATE('%h%d%G %a', DATE '2024-12-31') | Dec312025 Tue |
FORMAT_DATE('%B%d%g %a', DATE '2024-12-31') | December3125 Tue |
FORMAT_DATE('%b%d%g %a', DATE '2024-12-31') | Dec3125 Tue |
FORMAT_DATE('%h%d%g %a', DATE '2024-12-31') | Dec3125 Tue |
FORMAT_DATE('%m-%d-%Y Quarter %Q', DATE '2024-12-31') | 12-31-2024 Quarter 4 |
FORMAT_DATE('%m-%d-%E4Y Quarter %Q', DATE '2024-12-31') | 12-31-2024 Quarter 4 |
FORMAT_DATE('%m-%d-%y Quarter %Q', DATE '2024-12-31') | 12-31-24 Quarter 4 |
FORMAT_DATE('%m-%d-%G Quarter %Q', DATE '2024-12-31') | 12-31-2025 Quarter 4 |
FORMAT_DATE('%m-%d-%g Quarter %Q', DATE '2024-12-31') | 12-31-25 Quarter 4 |
FORMAT_DATE('%B-%d-%Y Quarter %Q', DATE '2024-12-31') | December-31-2024 Quarter 4 |
FORMAT_DATE('%b-%d-%Y Quarter %Q', DATE '2024-12-31') | Dec-31-2024 Quarter 4 |
FORMAT_DATE('%h-%d-%Y Quarter %Q', DATE '2024-12-31') | Dec-31-2024 Quarter 4 |
FORMAT_DATE('%B-%d-%E4Y Quarter %Q', DATE '2024-12-31') | December-31-2024 Quarter 4 |
FORMAT_DATE('%b-%d-%E4Y Quarter %Q', DATE '2024-12-31') | Dec-31-2024 Quarter 4 |
FORMAT_DATE('%h-%d-%E4Y Quarter %Q', DATE '2024-12-31') | Dec-31-2024 Quarter 4 |
FORMAT_DATE('%B-%d-%y Quarter %Q', DATE '2024-12-31') | December-31-24 Quarter 4 |
FORMAT_DATE('%b-%d-%y Quarter %Q', DATE '2024-12-31') | Dec-31-24 Quarter 4 |
FORMAT_DATE('%h-%d-%y Quarter %Q', DATE '2024-12-31') | Dec-31-24 Quarter 4 |
FORMAT_DATE('%B-%d-%G Quarter %Q', DATE '2024-12-31') | December-31-2025 Quarter 4 |
FORMAT_DATE('%b-%d-%G Quarter %Q', DATE '2024-12-31') | Dec-31-2025 Quarter 4 |
FORMAT_DATE('%h-%d-%G Quarter %Q', DATE '2024-12-31') | Dec-31-2025 Quarter 4 |
FORMAT_DATE('%B-%d-%g Quarter %Q', DATE '2024-12-31') | December-31-25 Quarter 4 |
FORMAT_DATE('%b-%d-%g Quarter %Q', DATE '2024-12-31') | Dec-31-25 Quarter 4 |
FORMAT_DATE('%h-%d-%g Quarter %Q', DATE '2024-12-31') | Dec-31-25 Quarter 4 |
FORMAT_DATE('%m/%d/%Y Quarter %Q', DATE '2024-12-31') | 12/31/2024 Quarter 4 |
FORMAT_DATE('%m/%d/%E4Y Quarter %Q', DATE '2024-12-31') | 12/31/2024 Quarter 4 |
FORMAT_DATE('%m/%d/%y Quarter %Q', DATE '2024-12-31') | 12/31/24 Quarter 4 |
FORMAT_DATE('%m/%d/%G Quarter %Q', DATE '2024-12-31') | 12/31/2025 Quarter 4 |
FORMAT_DATE('%m/%d/%g Quarter %Q', DATE '2024-12-31') | 12/31/25 Quarter 4 |
FORMAT_DATE('%B/%d/%Y Quarter %Q', DATE '2024-12-31') | December/31/2024 Quarter 4 |
FORMAT_DATE('%b/%d/%Y Quarter %Q', DATE '2024-12-31') | Dec/31/2024 Quarter 4 |
FORMAT_DATE('%h/%d/%Y Quarter %Q', DATE '2024-12-31') | Dec/31/2024 Quarter 4 |
FORMAT_DATE('%B/%d/%E4Y Quarter %Q', DATE '2024-12-31') | December/31/2024 Quarter 4 |
FORMAT_DATE('%b/%d/%E4Y Quarter %Q', DATE '2024-12-31') | Dec/31/2024 Quarter 4 |
FORMAT_DATE('%h/%d/%E4Y Quarter %Q', DATE '2024-12-31') | Dec/31/2024 Quarter 4 |
FORMAT_DATE('%B/%d/%y Quarter %Q', DATE '2024-12-31') | December/31/24 Quarter 4 |
FORMAT_DATE('%b/%d/%y Quarter %Q', DATE '2024-12-31') | Dec/31/24 Quarter 4 |
FORMAT_DATE('%h/%d/%y Quarter %Q', DATE '2024-12-31') | Dec/31/24 Quarter 4 |
FORMAT_DATE('%B/%d/%G Quarter %Q', DATE '2024-12-31') | December/31/2025 Quarter 4 |
FORMAT_DATE('%b/%d/%G Quarter %Q', DATE '2024-12-31') | Dec/31/2025 Quarter 4 |
FORMAT_DATE('%h/%d/%G Quarter %Q', DATE '2024-12-31') | Dec/31/2025 Quarter 4 |
FORMAT_DATE('%B/%d/%g Quarter %Q', DATE '2024-12-31') | December/31/25 Quarter 4 |
FORMAT_DATE('%b/%d/%g Quarter %Q', DATE '2024-12-31') | Dec/31/25 Quarter 4 |
FORMAT_DATE('%h/%d/%g Quarter %Q', DATE '2024-12-31') | Dec/31/25 Quarter 4 |
FORMAT_DATE('%m:%d:%Y Quarter %Q', DATE '2024-12-31') | 12:31:2024 Quarter 4 |
FORMAT_DATE('%m:%d:%E4Y Quarter %Q', DATE '2024-12-31') | 12:31:2024 Quarter 4 |
FORMAT_DATE('%m:%d:%y Quarter %Q', DATE '2024-12-31') | 12:31:24 Quarter 4 |
FORMAT_DATE('%m:%d:%G Quarter %Q', DATE '2024-12-31') | 12:31:2025 Quarter 4 |
FORMAT_DATE('%m:%d:%g Quarter %Q', DATE '2024-12-31') | 12:31:25 Quarter 4 |
FORMAT_DATE('%B:%d:%Y Quarter %Q', DATE '2024-12-31') | December:31:2024 Quarter 4 |
FORMAT_DATE('%b:%d:%Y Quarter %Q', DATE '2024-12-31') | Dec:31:2024 Quarter 4 |
FORMAT_DATE('%h:%d:%Y Quarter %Q', DATE '2024-12-31') | Dec:31:2024 Quarter 4 |
FORMAT_DATE('%B:%d:%E4Y Quarter %Q', DATE '2024-12-31') | December:31:2024 Quarter 4 |
FORMAT_DATE('%b:%d:%E4Y Quarter %Q', DATE '2024-12-31') | Dec:31:2024 Quarter 4 |
FORMAT_DATE('%h:%d:%E4Y Quarter %Q', DATE '2024-12-31') | Dec:31:2024 Quarter 4 |
FORMAT_DATE('%B:%d:%y Quarter %Q', DATE '2024-12-31') | December:31:24 Quarter 4 |
FORMAT_DATE('%b:%d:%y Quarter %Q', DATE '2024-12-31') | Dec:31:24 Quarter 4 |
FORMAT_DATE('%h:%d:%y Quarter %Q', DATE '2024-12-31') | Dec:31:24 Quarter 4 |
FORMAT_DATE('%B:%d:%G Quarter %Q', DATE '2024-12-31') | December:31:2025 Quarter 4 |
FORMAT_DATE('%b:%d:%G Quarter %Q', DATE '2024-12-31') | Dec:31:2025 Quarter 4 |
FORMAT_DATE('%h:%d:%G Quarter %Q', DATE '2024-12-31') | Dec:31:2025 Quarter 4 |
FORMAT_DATE('%B:%d:%g Quarter %Q', DATE '2024-12-31') | December:31:25 Quarter 4 |
FORMAT_DATE('%b:%d:%g Quarter %Q', DATE '2024-12-31') | Dec:31:25 Quarter 4 |
FORMAT_DATE('%h:%d:%g Quarter %Q', DATE '2024-12-31') | Dec:31:25 Quarter 4 |
FORMAT_DATE('%m.%d.%Y Quarter %Q', DATE '2024-12-31') | 12.31.2024 Quarter 4 |
FORMAT_DATE('%m.%d.%E4Y Quarter %Q', DATE '2024-12-31') | 12.31.2024 Quarter 4 |
FORMAT_DATE('%m.%d.%y Quarter %Q', DATE '2024-12-31') | 12.31.24 Quarter 4 |
FORMAT_DATE('%m.%d.%G Quarter %Q', DATE '2024-12-31') | 12.31.2025 Quarter 4 |
FORMAT_DATE('%m.%d.%g Quarter %Q', DATE '2024-12-31') | 12.31.25 Quarter 4 |
FORMAT_DATE('%B.%d.%Y Quarter %Q', DATE '2024-12-31') | December.31.2024 Quarter 4 |
FORMAT_DATE('%b.%d.%Y Quarter %Q', DATE '2024-12-31') | Dec.31.2024 Quarter 4 |
FORMAT_DATE('%h.%d.%Y Quarter %Q', DATE '2024-12-31') | Dec.31.2024 Quarter 4 |
FORMAT_DATE('%B.%d.%E4Y Quarter %Q', DATE '2024-12-31') | December.31.2024 Quarter 4 |
FORMAT_DATE('%b.%d.%E4Y Quarter %Q', DATE '2024-12-31') | Dec.31.2024 Quarter 4 |
FORMAT_DATE('%h.%d.%E4Y Quarter %Q', DATE '2024-12-31') | Dec.31.2024 Quarter 4 |
FORMAT_DATE('%B.%d.%y Quarter %Q', DATE '2024-12-31') | December.31.24 Quarter 4 |
FORMAT_DATE('%b.%d.%y Quarter %Q', DATE '2024-12-31') | Dec.31.24 Quarter 4 |
FORMAT_DATE('%h.%d.%y Quarter %Q', DATE '2024-12-31') | Dec.31.24 Quarter 4 |
FORMAT_DATE('%B.%d.%G Quarter %Q', DATE '2024-12-31') | December.31.2025 Quarter 4 |
FORMAT_DATE('%b.%d.%G Quarter %Q', DATE '2024-12-31') | Dec.31.2025 Quarter 4 |
FORMAT_DATE('%h.%d.%G Quarter %Q', DATE '2024-12-31') | Dec.31.2025 Quarter 4 |
FORMAT_DATE('%B.%d.%g Quarter %Q', DATE '2024-12-31') | December.31.25 Quarter 4 |
FORMAT_DATE('%b.%d.%g Quarter %Q', DATE '2024-12-31') | Dec.31.25 Quarter 4 |
FORMAT_DATE('%h.%d.%g Quarter %Q', DATE '2024-12-31') | Dec.31.25 Quarter 4 |
FORMAT_DATE('%m %d %Y Quarter %Q', DATE '2024-12-31') | 12 31 2024 Quarter 4 |
FORMAT_DATE('%m %d %E4Y Quarter %Q', DATE '2024-12-31') | 12 31 2024 Quarter 4 |
FORMAT_DATE('%m %d %y Quarter %Q', DATE '2024-12-31') | 12 31 24 Quarter 4 |
FORMAT_DATE('%m %d %G Quarter %Q', DATE '2024-12-31') | 12 31 2025 Quarter 4 |
FORMAT_DATE('%m %d %g Quarter %Q', DATE '2024-12-31') | 12 31 25 Quarter 4 |
FORMAT_DATE('%B %d %Y Quarter %Q', DATE '2024-12-31') | December 31 2024 Quarter 4 |
FORMAT_DATE('%b %d %Y Quarter %Q', DATE '2024-12-31') | Dec 31 2024 Quarter 4 |
FORMAT_DATE('%h %d %Y Quarter %Q', DATE '2024-12-31') | Dec 31 2024 Quarter 4 |
FORMAT_DATE('%B %d %E4Y Quarter %Q', DATE '2024-12-31') | December 31 2024 Quarter 4 |
FORMAT_DATE('%b %d %E4Y Quarter %Q', DATE '2024-12-31') | Dec 31 2024 Quarter 4 |
FORMAT_DATE('%h %d %E4Y Quarter %Q', DATE '2024-12-31') | Dec 31 2024 Quarter 4 |
FORMAT_DATE('%B %d %y Quarter %Q', DATE '2024-12-31') | December 31 24 Quarter 4 |
FORMAT_DATE('%b %d %y Quarter %Q', DATE '2024-12-31') | Dec 31 24 Quarter 4 |
FORMAT_DATE('%h %d %y Quarter %Q', DATE '2024-12-31') | Dec 31 24 Quarter 4 |
FORMAT_DATE('%B %d %G Quarter %Q', DATE '2024-12-31') | December 31 2025 Quarter 4 |
FORMAT_DATE('%b %d %G Quarter %Q', DATE '2024-12-31') | Dec 31 2025 Quarter 4 |
FORMAT_DATE('%h %d %G Quarter %Q', DATE '2024-12-31') | Dec 31 2025 Quarter 4 |
FORMAT_DATE('%B %d %g Quarter %Q', DATE '2024-12-31') | December 31 25 Quarter 4 |
FORMAT_DATE('%b %d %g Quarter %Q', DATE '2024-12-31') | Dec 31 25 Quarter 4 |
FORMAT_DATE('%h %d %g Quarter %Q', DATE '2024-12-31') | Dec 31 25 Quarter 4 |
FORMAT_DATE('%m%d%Y Quarter %Q', DATE '2024-12-31') | 12312024 Quarter 4 |
FORMAT_DATE('%m%d%E4Y Quarter %Q', DATE '2024-12-31') | 12312024 Quarter 4 |
FORMAT_DATE('%m%d%y Quarter %Q', DATE '2024-12-31') | 123124 Quarter 4 |
FORMAT_DATE('%m%d%G Quarter %Q', DATE '2024-12-31') | 12312025 Quarter 4 |
FORMAT_DATE('%m%d%g Quarter %Q', DATE '2024-12-31') | 123125 Quarter 4 |
FORMAT_DATE('%B%d%Y Quarter %Q', DATE '2024-12-31') | December312024 Quarter 4 |
FORMAT_DATE('%b%d%Y Quarter %Q', DATE '2024-12-31') | Dec312024 Quarter 4 |
FORMAT_DATE('%h%d%Y Quarter %Q', DATE '2024-12-31') | Dec312024 Quarter 4 |
FORMAT_DATE('%B%d%E4Y Quarter %Q', DATE '2024-12-31') | December312024 Quarter 4 |
FORMAT_DATE('%b%d%E4Y Quarter %Q', DATE '2024-12-31') | Dec312024 Quarter 4 |
FORMAT_DATE('%h%d%E4Y Quarter %Q', DATE '2024-12-31') | Dec312024 Quarter 4 |
FORMAT_DATE('%B%d%y Quarter %Q', DATE '2024-12-31') | December3124 Quarter 4 |
FORMAT_DATE('%b%d%y Quarter %Q', DATE '2024-12-31') | Dec3124 Quarter 4 |
FORMAT_DATE('%h%d%y Quarter %Q', DATE '2024-12-31') | Dec3124 Quarter 4 |
FORMAT_DATE('%B%d%G Quarter %Q', DATE '2024-12-31') | December312025 Quarter 4 |
FORMAT_DATE('%b%d%G Quarter %Q', DATE '2024-12-31') | Dec312025 Quarter 4 |
FORMAT_DATE('%h%d%G Quarter %Q', DATE '2024-12-31') | Dec312025 Quarter 4 |
FORMAT_DATE('%B%d%g Quarter %Q', DATE '2024-12-31') | December3125 Quarter 4 |
FORMAT_DATE('%b%d%g Quarter %Q', DATE '2024-12-31') | Dec3125 Quarter 4 |
FORMAT_DATE('%h%d%g Quarter %Q', DATE '2024-12-31') | Dec3125 Quarter 4 |
FORMAT_DATE('%m-%d-%Y Week %U', DATE '2024-12-31') | 12-31-2024 Week 52 |
FORMAT_DATE('%m-%d-%E4Y Week %U', DATE '2024-12-31') | 12-31-2024 Week 52 |
FORMAT_DATE('%m-%d-%y Week %U', DATE '2024-12-31') | 12-31-24 Week 52 |
FORMAT_DATE('%m-%d-%G Week %U', DATE '2024-12-31') | 12-31-2025 Week 52 |
FORMAT_DATE('%m-%d-%g Week %U', DATE '2024-12-31') | 12-31-25 Week 52 |
FORMAT_DATE('%B-%d-%Y Week %U', DATE '2024-12-31') | December-31-2024 Week 52 |
FORMAT_DATE('%b-%d-%Y Week %U', DATE '2024-12-31') | Dec-31-2024 Week 52 |
FORMAT_DATE('%h-%d-%Y Week %U', DATE '2024-12-31') | Dec-31-2024 Week 52 |
FORMAT_DATE('%B-%d-%E4Y Week %U', DATE '2024-12-31') | December-31-2024 Week 52 |
FORMAT_DATE('%b-%d-%E4Y Week %U', DATE '2024-12-31') | Dec-31-2024 Week 52 |
FORMAT_DATE('%h-%d-%E4Y Week %U', DATE '2024-12-31') | Dec-31-2024 Week 52 |
FORMAT_DATE('%B-%d-%y Week %U', DATE '2024-12-31') | December-31-24 Week 52 |
FORMAT_DATE('%b-%d-%y Week %U', DATE '2024-12-31') | Dec-31-24 Week 52 |
FORMAT_DATE('%h-%d-%y Week %U', DATE '2024-12-31') | Dec-31-24 Week 52 |
FORMAT_DATE('%B-%d-%G Week %U', DATE '2024-12-31') | December-31-2025 Week 52 |
FORMAT_DATE('%b-%d-%G Week %U', DATE '2024-12-31') | Dec-31-2025 Week 52 |
FORMAT_DATE('%h-%d-%G Week %U', DATE '2024-12-31') | Dec-31-2025 Week 52 |
FORMAT_DATE('%B-%d-%g Week %U', DATE '2024-12-31') | December-31-25 Week 52 |
FORMAT_DATE('%b-%d-%g Week %U', DATE '2024-12-31') | Dec-31-25 Week 52 |
FORMAT_DATE('%h-%d-%g Week %U', DATE '2024-12-31') | Dec-31-25 Week 52 |
FORMAT_DATE('%m/%d/%Y Week %U', DATE '2024-12-31') | 12/31/2024 Week 52 |
FORMAT_DATE('%m/%d/%E4Y Week %U', DATE '2024-12-31') | 12/31/2024 Week 52 |
FORMAT_DATE('%m/%d/%y Week %U', DATE '2024-12-31') | 12/31/24 Week 52 |
FORMAT_DATE('%m/%d/%G Week %U', DATE '2024-12-31') | 12/31/2025 Week 52 |
FORMAT_DATE('%m/%d/%g Week %U', DATE '2024-12-31') | 12/31/25 Week 52 |
FORMAT_DATE('%B/%d/%Y Week %U', DATE '2024-12-31') | December/31/2024 Week 52 |
FORMAT_DATE('%b/%d/%Y Week %U', DATE '2024-12-31') | Dec/31/2024 Week 52 |
FORMAT_DATE('%h/%d/%Y Week %U', DATE '2024-12-31') | Dec/31/2024 Week 52 |
FORMAT_DATE('%B/%d/%E4Y Week %U', DATE '2024-12-31') | December/31/2024 Week 52 |
FORMAT_DATE('%b/%d/%E4Y Week %U', DATE '2024-12-31') | Dec/31/2024 Week 52 |
FORMAT_DATE('%h/%d/%E4Y Week %U', DATE '2024-12-31') | Dec/31/2024 Week 52 |
FORMAT_DATE('%B/%d/%y Week %U', DATE '2024-12-31') | December/31/24 Week 52 |
FORMAT_DATE('%b/%d/%y Week %U', DATE '2024-12-31') | Dec/31/24 Week 52 |
FORMAT_DATE('%h/%d/%y Week %U', DATE '2024-12-31') | Dec/31/24 Week 52 |
FORMAT_DATE('%B/%d/%G Week %U', DATE '2024-12-31') | December/31/2025 Week 52 |
FORMAT_DATE('%b/%d/%G Week %U', DATE '2024-12-31') | Dec/31/2025 Week 52 |
FORMAT_DATE('%h/%d/%G Week %U', DATE '2024-12-31') | Dec/31/2025 Week 52 |
FORMAT_DATE('%B/%d/%g Week %U', DATE '2024-12-31') | December/31/25 Week 52 |
FORMAT_DATE('%b/%d/%g Week %U', DATE '2024-12-31') | Dec/31/25 Week 52 |
FORMAT_DATE('%h/%d/%g Week %U', DATE '2024-12-31') | Dec/31/25 Week 52 |
FORMAT_DATE('%m:%d:%Y Week %U', DATE '2024-12-31') | 12:31:2024 Week 52 |
FORMAT_DATE('%m:%d:%E4Y Week %U', DATE '2024-12-31') | 12:31:2024 Week 52 |
FORMAT_DATE('%m:%d:%y Week %U', DATE '2024-12-31') | 12:31:24 Week 52 |
FORMAT_DATE('%m:%d:%G Week %U', DATE '2024-12-31') | 12:31:2025 Week 52 |
FORMAT_DATE('%m:%d:%g Week %U', DATE '2024-12-31') | 12:31:25 Week 52 |
FORMAT_DATE('%B:%d:%Y Week %U', DATE '2024-12-31') | December:31:2024 Week 52 |
FORMAT_DATE('%b:%d:%Y Week %U', DATE '2024-12-31') | Dec:31:2024 Week 52 |
FORMAT_DATE('%h:%d:%Y Week %U', DATE '2024-12-31') | Dec:31:2024 Week 52 |
FORMAT_DATE('%B:%d:%E4Y Week %U', DATE '2024-12-31') | December:31:2024 Week 52 |
FORMAT_DATE('%b:%d:%E4Y Week %U', DATE '2024-12-31') | Dec:31:2024 Week 52 |
FORMAT_DATE('%h:%d:%E4Y Week %U', DATE '2024-12-31') | Dec:31:2024 Week 52 |
FORMAT_DATE('%B:%d:%y Week %U', DATE '2024-12-31') | December:31:24 Week 52 |
FORMAT_DATE('%b:%d:%y Week %U', DATE '2024-12-31') | Dec:31:24 Week 52 |
FORMAT_DATE('%h:%d:%y Week %U', DATE '2024-12-31') | Dec:31:24 Week 52 |
FORMAT_DATE('%B:%d:%G Week %U', DATE '2024-12-31') | December:31:2025 Week 52 |
FORMAT_DATE('%b:%d:%G Week %U', DATE '2024-12-31') | Dec:31:2025 Week 52 |
FORMAT_DATE('%h:%d:%G Week %U', DATE '2024-12-31') | Dec:31:2025 Week 52 |
FORMAT_DATE('%B:%d:%g Week %U', DATE '2024-12-31') | December:31:25 Week 52 |
FORMAT_DATE('%b:%d:%g Week %U', DATE '2024-12-31') | Dec:31:25 Week 52 |
FORMAT_DATE('%h:%d:%g Week %U', DATE '2024-12-31') | Dec:31:25 Week 52 |
FORMAT_DATE('%m.%d.%Y Week %U', DATE '2024-12-31') | 12.31.2024 Week 52 |
FORMAT_DATE('%m.%d.%E4Y Week %U', DATE '2024-12-31') | 12.31.2024 Week 52 |
FORMAT_DATE('%m.%d.%y Week %U', DATE '2024-12-31') | 12.31.24 Week 52 |
FORMAT_DATE('%m.%d.%G Week %U', DATE '2024-12-31') | 12.31.2025 Week 52 |
FORMAT_DATE('%m.%d.%g Week %U', DATE '2024-12-31') | 12.31.25 Week 52 |
FORMAT_DATE('%B.%d.%Y Week %U', DATE '2024-12-31') | December.31.2024 Week 52 |
FORMAT_DATE('%b.%d.%Y Week %U', DATE '2024-12-31') | Dec.31.2024 Week 52 |
FORMAT_DATE('%h.%d.%Y Week %U', DATE '2024-12-31') | Dec.31.2024 Week 52 |
FORMAT_DATE('%B.%d.%E4Y Week %U', DATE '2024-12-31') | December.31.2024 Week 52 |
FORMAT_DATE('%b.%d.%E4Y Week %U', DATE '2024-12-31') | Dec.31.2024 Week 52 |
FORMAT_DATE('%h.%d.%E4Y Week %U', DATE '2024-12-31') | Dec.31.2024 Week 52 |
FORMAT_DATE('%B.%d.%y Week %U', DATE '2024-12-31') | December.31.24 Week 52 |
FORMAT_DATE('%b.%d.%y Week %U', DATE '2024-12-31') | Dec.31.24 Week 52 |
FORMAT_DATE('%h.%d.%y Week %U', DATE '2024-12-31') | Dec.31.24 Week 52 |
FORMAT_DATE('%B.%d.%G Week %U', DATE '2024-12-31') | December.31.2025 Week 52 |
FORMAT_DATE('%b.%d.%G Week %U', DATE '2024-12-31') | Dec.31.2025 Week 52 |
FORMAT_DATE('%h.%d.%G Week %U', DATE '2024-12-31') | Dec.31.2025 Week 52 |
FORMAT_DATE('%B.%d.%g Week %U', DATE '2024-12-31') | December.31.25 Week 52 |
FORMAT_DATE('%b.%d.%g Week %U', DATE '2024-12-31') | Dec.31.25 Week 52 |
FORMAT_DATE('%h.%d.%g Week %U', DATE '2024-12-31') | Dec.31.25 Week 52 |
FORMAT_DATE('%m %d %Y Week %U', DATE '2024-12-31') | 12 31 2024 Week 52 |
FORMAT_DATE('%m %d %E4Y Week %U', DATE '2024-12-31') | 12 31 2024 Week 52 |
FORMAT_DATE('%m %d %y Week %U', DATE '2024-12-31') | 12 31 24 Week 52 |
FORMAT_DATE('%m %d %G Week %U', DATE '2024-12-31') | 12 31 2025 Week 52 |
FORMAT_DATE('%m %d %g Week %U', DATE '2024-12-31') | 12 31 25 Week 52 |
FORMAT_DATE('%B %d %Y Week %U', DATE '2024-12-31') | December 31 2024 Week 52 |
FORMAT_DATE('%b %d %Y Week %U', DATE '2024-12-31') | Dec 31 2024 Week 52 |
FORMAT_DATE('%h %d %Y Week %U', DATE '2024-12-31') | Dec 31 2024 Week 52 |
FORMAT_DATE('%B %d %E4Y Week %U', DATE '2024-12-31') | December 31 2024 Week 52 |
FORMAT_DATE('%b %d %E4Y Week %U', DATE '2024-12-31') | Dec 31 2024 Week 52 |
FORMAT_DATE('%h %d %E4Y Week %U', DATE '2024-12-31') | Dec 31 2024 Week 52 |
FORMAT_DATE('%B %d %y Week %U', DATE '2024-12-31') | December 31 24 Week 52 |
FORMAT_DATE('%b %d %y Week %U', DATE '2024-12-31') | Dec 31 24 Week 52 |
FORMAT_DATE('%h %d %y Week %U', DATE '2024-12-31') | Dec 31 24 Week 52 |
FORMAT_DATE('%B %d %G Week %U', DATE '2024-12-31') | December 31 2025 Week 52 |
FORMAT_DATE('%b %d %G Week %U', DATE '2024-12-31') | Dec 31 2025 Week 52 |
FORMAT_DATE('%h %d %G Week %U', DATE '2024-12-31') | Dec 31 2025 Week 52 |
FORMAT_DATE('%B %d %g Week %U', DATE '2024-12-31') | December 31 25 Week 52 |
FORMAT_DATE('%b %d %g Week %U', DATE '2024-12-31') | Dec 31 25 Week 52 |
FORMAT_DATE('%h %d %g Week %U', DATE '2024-12-31') | Dec 31 25 Week 52 |
FORMAT_DATE('%m%d%Y Week %U', DATE '2024-12-31') | 12312024 Week 52 |
FORMAT_DATE('%m%d%E4Y Week %U', DATE '2024-12-31') | 12312024 Week 52 |
FORMAT_DATE('%m%d%y Week %U', DATE '2024-12-31') | 123124 Week 52 |
FORMAT_DATE('%m%d%G Week %U', DATE '2024-12-31') | 12312025 Week 52 |
FORMAT_DATE('%m%d%g Week %U', DATE '2024-12-31') | 123125 Week 52 |
FORMAT_DATE('%B%d%Y Week %U', DATE '2024-12-31') | December312024 Week 52 |
FORMAT_DATE('%b%d%Y Week %U', DATE '2024-12-31') | Dec312024 Week 52 |
FORMAT_DATE('%h%d%Y Week %U', DATE '2024-12-31') | Dec312024 Week 52 |
FORMAT_DATE('%B%d%E4Y Week %U', DATE '2024-12-31') | December312024 Week 52 |
FORMAT_DATE('%b%d%E4Y Week %U', DATE '2024-12-31') | Dec312024 Week 52 |
FORMAT_DATE('%h%d%E4Y Week %U', DATE '2024-12-31') | Dec312024 Week 52 |
FORMAT_DATE('%B%d%y Week %U', DATE '2024-12-31') | December3124 Week 52 |
FORMAT_DATE('%b%d%y Week %U', DATE '2024-12-31') | Dec3124 Week 52 |
FORMAT_DATE('%h%d%y Week %U', DATE '2024-12-31') | Dec3124 Week 52 |
FORMAT_DATE('%B%d%G Week %U', DATE '2024-12-31') | December312025 Week 52 |
FORMAT_DATE('%b%d%G Week %U', DATE '2024-12-31') | Dec312025 Week 52 |
FORMAT_DATE('%h%d%G Week %U', DATE '2024-12-31') | Dec312025 Week 52 |
FORMAT_DATE('%B%d%g Week %U', DATE '2024-12-31') | December3125 Week 52 |
FORMAT_DATE('%b%d%g Week %U', DATE '2024-12-31') | Dec3125 Week 52 |
FORMAT_DATE('%h%d%g Week %U', DATE '2024-12-31') | Dec3125 Week 52 |
FORMAT_DATE('%m-%d-%Y Week %W', DATE '2024-12-31') | 12-31-2024 Week 53 |
FORMAT_DATE('%m-%d-%E4Y Week %W', DATE '2024-12-31') | 12-31-2024 Week 53 |
FORMAT_DATE('%m-%d-%y Week %W', DATE '2024-12-31') | 12-31-24 Week 53 |
FORMAT_DATE('%m-%d-%G Week %W', DATE '2024-12-31') | 12-31-2025 Week 53 |
FORMAT_DATE('%m-%d-%g Week %W', DATE '2024-12-31') | 12-31-25 Week 53 |
FORMAT_DATE('%B-%d-%Y Week %W', DATE '2024-12-31') | December-31-2024 Week 53 |
FORMAT_DATE('%b-%d-%Y Week %W', DATE '2024-12-31') | Dec-31-2024 Week 53 |
FORMAT_DATE('%h-%d-%Y Week %W', DATE '2024-12-31') | Dec-31-2024 Week 53 |
FORMAT_DATE('%B-%d-%E4Y Week %W', DATE '2024-12-31') | December-31-2024 Week 53 |
FORMAT_DATE('%b-%d-%E4Y Week %W', DATE '2024-12-31') | Dec-31-2024 Week 53 |
FORMAT_DATE('%h-%d-%E4Y Week %W', DATE '2024-12-31') | Dec-31-2024 Week 53 |
FORMAT_DATE('%B-%d-%y Week %W', DATE '2024-12-31') | December-31-24 Week 53 |
FORMAT_DATE('%b-%d-%y Week %W', DATE '2024-12-31') | Dec-31-24 Week 53 |
FORMAT_DATE('%h-%d-%y Week %W', DATE '2024-12-31') | Dec-31-24 Week 53 |
FORMAT_DATE('%B-%d-%G Week %W', DATE '2024-12-31') | December-31-2025 Week 53 |
FORMAT_DATE('%b-%d-%G Week %W', DATE '2024-12-31') | Dec-31-2025 Week 53 |
FORMAT_DATE('%h-%d-%G Week %W', DATE '2024-12-31') | Dec-31-2025 Week 53 |
FORMAT_DATE('%B-%d-%g Week %W', DATE '2024-12-31') | December-31-25 Week 53 |
FORMAT_DATE('%b-%d-%g Week %W', DATE '2024-12-31') | Dec-31-25 Week 53 |
FORMAT_DATE('%h-%d-%g Week %W', DATE '2024-12-31') | Dec-31-25 Week 53 |
FORMAT_DATE('%m/%d/%Y Week %W', DATE '2024-12-31') | 12/31/2024 Week 53 |
FORMAT_DATE('%m/%d/%E4Y Week %W', DATE '2024-12-31') | 12/31/2024 Week 53 |
FORMAT_DATE('%m/%d/%y Week %W', DATE '2024-12-31') | 12/31/24 Week 53 |
FORMAT_DATE('%m/%d/%G Week %W', DATE '2024-12-31') | 12/31/2025 Week 53 |
FORMAT_DATE('%m/%d/%g Week %W', DATE '2024-12-31') | 12/31/25 Week 53 |
FORMAT_DATE('%B/%d/%Y Week %W', DATE '2024-12-31') | December/31/2024 Week 53 |
FORMAT_DATE('%b/%d/%Y Week %W', DATE '2024-12-31') | Dec/31/2024 Week 53 |
FORMAT_DATE('%h/%d/%Y Week %W', DATE '2024-12-31') | Dec/31/2024 Week 53 |
FORMAT_DATE('%B/%d/%E4Y Week %W', DATE '2024-12-31') | December/31/2024 Week 53 |
FORMAT_DATE('%b/%d/%E4Y Week %W', DATE '2024-12-31') | Dec/31/2024 Week 53 |
FORMAT_DATE('%h/%d/%E4Y Week %W', DATE '2024-12-31') | Dec/31/2024 Week 53 |
FORMAT_DATE('%B/%d/%y Week %W', DATE '2024-12-31') | December/31/24 Week 53 |
FORMAT_DATE('%b/%d/%y Week %W', DATE '2024-12-31') | Dec/31/24 Week 53 |
FORMAT_DATE('%h/%d/%y Week %W', DATE '2024-12-31') | Dec/31/24 Week 53 |
FORMAT_DATE('%B/%d/%G Week %W', DATE '2024-12-31') | December/31/2025 Week 53 |
FORMAT_DATE('%b/%d/%G Week %W', DATE '2024-12-31') | Dec/31/2025 Week 53 |
FORMAT_DATE('%h/%d/%G Week %W', DATE '2024-12-31') | Dec/31/2025 Week 53 |
FORMAT_DATE('%B/%d/%g Week %W', DATE '2024-12-31') | December/31/25 Week 53 |
FORMAT_DATE('%b/%d/%g Week %W', DATE '2024-12-31') | Dec/31/25 Week 53 |
FORMAT_DATE('%h/%d/%g Week %W', DATE '2024-12-31') | Dec/31/25 Week 53 |
FORMAT_DATE('%m:%d:%Y Week %W', DATE '2024-12-31') | 12:31:2024 Week 53 |
FORMAT_DATE('%m:%d:%E4Y Week %W', DATE '2024-12-31') | 12:31:2024 Week 53 |
FORMAT_DATE('%m:%d:%y Week %W', DATE '2024-12-31') | 12:31:24 Week 53 |
FORMAT_DATE('%m:%d:%G Week %W', DATE '2024-12-31') | 12:31:2025 Week 53 |
FORMAT_DATE('%m:%d:%g Week %W', DATE '2024-12-31') | 12:31:25 Week 53 |
FORMAT_DATE('%B:%d:%Y Week %W', DATE '2024-12-31') | December:31:2024 Week 53 |
FORMAT_DATE('%b:%d:%Y Week %W', DATE '2024-12-31') | Dec:31:2024 Week 53 |
FORMAT_DATE('%h:%d:%Y Week %W', DATE '2024-12-31') | Dec:31:2024 Week 53 |
FORMAT_DATE('%B:%d:%E4Y Week %W', DATE '2024-12-31') | December:31:2024 Week 53 |
FORMAT_DATE('%b:%d:%E4Y Week %W', DATE '2024-12-31') | Dec:31:2024 Week 53 |
FORMAT_DATE('%h:%d:%E4Y Week %W', DATE '2024-12-31') | Dec:31:2024 Week 53 |
FORMAT_DATE('%B:%d:%y Week %W', DATE '2024-12-31') | December:31:24 Week 53 |
FORMAT_DATE('%b:%d:%y Week %W', DATE '2024-12-31') | Dec:31:24 Week 53 |
FORMAT_DATE('%h:%d:%y Week %W', DATE '2024-12-31') | Dec:31:24 Week 53 |
FORMAT_DATE('%B:%d:%G Week %W', DATE '2024-12-31') | December:31:2025 Week 53 |
FORMAT_DATE('%b:%d:%G Week %W', DATE '2024-12-31') | Dec:31:2025 Week 53 |
FORMAT_DATE('%h:%d:%G Week %W', DATE '2024-12-31') | Dec:31:2025 Week 53 |
FORMAT_DATE('%B:%d:%g Week %W', DATE '2024-12-31') | December:31:25 Week 53 |
FORMAT_DATE('%b:%d:%g Week %W', DATE '2024-12-31') | Dec:31:25 Week 53 |
FORMAT_DATE('%h:%d:%g Week %W', DATE '2024-12-31') | Dec:31:25 Week 53 |
FORMAT_DATE('%m.%d.%Y Week %W', DATE '2024-12-31') | 12.31.2024 Week 53 |
FORMAT_DATE('%m.%d.%E4Y Week %W', DATE '2024-12-31') | 12.31.2024 Week 53 |
FORMAT_DATE('%m.%d.%y Week %W', DATE '2024-12-31') | 12.31.24 Week 53 |
FORMAT_DATE('%m.%d.%G Week %W', DATE '2024-12-31') | 12.31.2025 Week 53 |
FORMAT_DATE('%m.%d.%g Week %W', DATE '2024-12-31') | 12.31.25 Week 53 |
FORMAT_DATE('%B.%d.%Y Week %W', DATE '2024-12-31') | December.31.2024 Week 53 |
FORMAT_DATE('%b.%d.%Y Week %W', DATE '2024-12-31') | Dec.31.2024 Week 53 |
FORMAT_DATE('%h.%d.%Y Week %W', DATE '2024-12-31') | Dec.31.2024 Week 53 |
FORMAT_DATE('%B.%d.%E4Y Week %W', DATE '2024-12-31') | December.31.2024 Week 53 |
FORMAT_DATE('%b.%d.%E4Y Week %W', DATE '2024-12-31') | Dec.31.2024 Week 53 |
FORMAT_DATE('%h.%d.%E4Y Week %W', DATE '2024-12-31') | Dec.31.2024 Week 53 |
FORMAT_DATE('%B.%d.%y Week %W', DATE '2024-12-31') | December.31.24 Week 53 |
FORMAT_DATE('%b.%d.%y Week %W', DATE '2024-12-31') | Dec.31.24 Week 53 |
FORMAT_DATE('%h.%d.%y Week %W', DATE '2024-12-31') | Dec.31.24 Week 53 |
FORMAT_DATE('%B.%d.%G Week %W', DATE '2024-12-31') | December.31.2025 Week 53 |
FORMAT_DATE('%b.%d.%G Week %W', DATE '2024-12-31') | Dec.31.2025 Week 53 |
FORMAT_DATE('%h.%d.%G Week %W', DATE '2024-12-31') | Dec.31.2025 Week 53 |
FORMAT_DATE('%B.%d.%g Week %W', DATE '2024-12-31') | December.31.25 Week 53 |
FORMAT_DATE('%b.%d.%g Week %W', DATE '2024-12-31') | Dec.31.25 Week 53 |
FORMAT_DATE('%h.%d.%g Week %W', DATE '2024-12-31') | Dec.31.25 Week 53 |
FORMAT_DATE('%m %d %Y Week %W', DATE '2024-12-31') | 12 31 2024 Week 53 |
FORMAT_DATE('%m %d %E4Y Week %W', DATE '2024-12-31') | 12 31 2024 Week 53 |
FORMAT_DATE('%m %d %y Week %W', DATE '2024-12-31') | 12 31 24 Week 53 |
FORMAT_DATE('%m %d %G Week %W', DATE '2024-12-31') | 12 31 2025 Week 53 |
FORMAT_DATE('%m %d %g Week %W', DATE '2024-12-31') | 12 31 25 Week 53 |
FORMAT_DATE('%B %d %Y Week %W', DATE '2024-12-31') | December 31 2024 Week 53 |
FORMAT_DATE('%b %d %Y Week %W', DATE '2024-12-31') | Dec 31 2024 Week 53 |
FORMAT_DATE('%h %d %Y Week %W', DATE '2024-12-31') | Dec 31 2024 Week 53 |
FORMAT_DATE('%B %d %E4Y Week %W', DATE '2024-12-31') | December 31 2024 Week 53 |
FORMAT_DATE('%b %d %E4Y Week %W', DATE '2024-12-31') | Dec 31 2024 Week 53 |
FORMAT_DATE('%h %d %E4Y Week %W', DATE '2024-12-31') | Dec 31 2024 Week 53 |
FORMAT_DATE('%B %d %y Week %W', DATE '2024-12-31') | December 31 24 Week 53 |
FORMAT_DATE('%b %d %y Week %W', DATE '2024-12-31') | Dec 31 24 Week 53 |
FORMAT_DATE('%h %d %y Week %W', DATE '2024-12-31') | Dec 31 24 Week 53 |
FORMAT_DATE('%B %d %G Week %W', DATE '2024-12-31') | December 31 2025 Week 53 |
FORMAT_DATE('%b %d %G Week %W', DATE '2024-12-31') | Dec 31 2025 Week 53 |
FORMAT_DATE('%h %d %G Week %W', DATE '2024-12-31') | Dec 31 2025 Week 53 |
FORMAT_DATE('%B %d %g Week %W', DATE '2024-12-31') | December 31 25 Week 53 |
FORMAT_DATE('%b %d %g Week %W', DATE '2024-12-31') | Dec 31 25 Week 53 |
FORMAT_DATE('%h %d %g Week %W', DATE '2024-12-31') | Dec 31 25 Week 53 |
FORMAT_DATE('%m%d%Y Week %W', DATE '2024-12-31') | 12312024 Week 53 |
FORMAT_DATE('%m%d%E4Y Week %W', DATE '2024-12-31') | 12312024 Week 53 |
FORMAT_DATE('%m%d%y Week %W', DATE '2024-12-31') | 123124 Week 53 |
FORMAT_DATE('%m%d%G Week %W', DATE '2024-12-31') | 12312025 Week 53 |
FORMAT_DATE('%m%d%g Week %W', DATE '2024-12-31') | 123125 Week 53 |
FORMAT_DATE('%B%d%Y Week %W', DATE '2024-12-31') | December312024 Week 53 |
FORMAT_DATE('%b%d%Y Week %W', DATE '2024-12-31') | Dec312024 Week 53 |
FORMAT_DATE('%h%d%Y Week %W', DATE '2024-12-31') | Dec312024 Week 53 |
FORMAT_DATE('%B%d%E4Y Week %W', DATE '2024-12-31') | December312024 Week 53 |
FORMAT_DATE('%b%d%E4Y Week %W', DATE '2024-12-31') | Dec312024 Week 53 |
FORMAT_DATE('%h%d%E4Y Week %W', DATE '2024-12-31') | Dec312024 Week 53 |
FORMAT_DATE('%B%d%y Week %W', DATE '2024-12-31') | December3124 Week 53 |
FORMAT_DATE('%b%d%y Week %W', DATE '2024-12-31') | Dec3124 Week 53 |
FORMAT_DATE('%h%d%y Week %W', DATE '2024-12-31') | Dec3124 Week 53 |
FORMAT_DATE('%B%d%G Week %W', DATE '2024-12-31') | December312025 Week 53 |
FORMAT_DATE('%b%d%G Week %W', DATE '2024-12-31') | Dec312025 Week 53 |
FORMAT_DATE('%h%d%G Week %W', DATE '2024-12-31') | Dec312025 Week 53 |
FORMAT_DATE('%B%d%g Week %W', DATE '2024-12-31') | December3125 Week 53 |
FORMAT_DATE('%b%d%g Week %W', DATE '2024-12-31') | Dec3125 Week 53 |
FORMAT_DATE('%h%d%g Week %W', DATE '2024-12-31') | Dec3125 Week 53 |
FORMAT_DATE('%m-%d-%Y ISO Week %V', DATE '2024-12-31') | 12-31-2024 ISO Week 01 |
FORMAT_DATE('%m-%d-%E4Y ISO Week %V', DATE '2024-12-31') | 12-31-2024 ISO Week 01 |
FORMAT_DATE('%m-%d-%y ISO Week %V', DATE '2024-12-31') | 12-31-24 ISO Week 01 |
FORMAT_DATE('%m-%d-%G ISO Week %V', DATE '2024-12-31') | 12-31-2025 ISO Week 01 |
FORMAT_DATE('%m-%d-%g ISO Week %V', DATE '2024-12-31') | 12-31-25 ISO Week 01 |
FORMAT_DATE('%B-%d-%Y ISO Week %V', DATE '2024-12-31') | December-31-2024 ISO Week 01 |
FORMAT_DATE('%b-%d-%Y ISO Week %V', DATE '2024-12-31') | Dec-31-2024 ISO Week 01 |
FORMAT_DATE('%h-%d-%Y ISO Week %V', DATE '2024-12-31') | Dec-31-2024 ISO Week 01 |
FORMAT_DATE('%B-%d-%E4Y ISO Week %V', DATE '2024-12-31') | December-31-2024 ISO Week 01 |
FORMAT_DATE('%b-%d-%E4Y ISO Week %V', DATE '2024-12-31') | Dec-31-2024 ISO Week 01 |
FORMAT_DATE('%h-%d-%E4Y ISO Week %V', DATE '2024-12-31') | Dec-31-2024 ISO Week 01 |
FORMAT_DATE('%B-%d-%y ISO Week %V', DATE '2024-12-31') | December-31-24 ISO Week 01 |
FORMAT_DATE('%b-%d-%y ISO Week %V', DATE '2024-12-31') | Dec-31-24 ISO Week 01 |
FORMAT_DATE('%h-%d-%y ISO Week %V', DATE '2024-12-31') | Dec-31-24 ISO Week 01 |
FORMAT_DATE('%B-%d-%G ISO Week %V', DATE '2024-12-31') | December-31-2025 ISO Week 01 |
FORMAT_DATE('%b-%d-%G ISO Week %V', DATE '2024-12-31') | Dec-31-2025 ISO Week 01 |
FORMAT_DATE('%h-%d-%G ISO Week %V', DATE '2024-12-31') | Dec-31-2025 ISO Week 01 |
FORMAT_DATE('%B-%d-%g ISO Week %V', DATE '2024-12-31') | December-31-25 ISO Week 01 |
FORMAT_DATE('%b-%d-%g ISO Week %V', DATE '2024-12-31') | Dec-31-25 ISO Week 01 |
FORMAT_DATE('%h-%d-%g ISO Week %V', DATE '2024-12-31') | Dec-31-25 ISO Week 01 |
FORMAT_DATE('%m/%d/%Y ISO Week %V', DATE '2024-12-31') | 12/31/2024 ISO Week 01 |
FORMAT_DATE('%m/%d/%E4Y ISO Week %V', DATE '2024-12-31') | 12/31/2024 ISO Week 01 |
FORMAT_DATE('%m/%d/%y ISO Week %V', DATE '2024-12-31') | 12/31/24 ISO Week 01 |
FORMAT_DATE('%m/%d/%G ISO Week %V', DATE '2024-12-31') | 12/31/2025 ISO Week 01 |
FORMAT_DATE('%m/%d/%g ISO Week %V', DATE '2024-12-31') | 12/31/25 ISO Week 01 |
FORMAT_DATE('%B/%d/%Y ISO Week %V', DATE '2024-12-31') | December/31/2024 ISO Week 01 |
FORMAT_DATE('%b/%d/%Y ISO Week %V', DATE '2024-12-31') | Dec/31/2024 ISO Week 01 |
FORMAT_DATE('%h/%d/%Y ISO Week %V', DATE '2024-12-31') | Dec/31/2024 ISO Week 01 |
FORMAT_DATE('%B/%d/%E4Y ISO Week %V', DATE '2024-12-31') | December/31/2024 ISO Week 01 |
FORMAT_DATE('%b/%d/%E4Y ISO Week %V', DATE '2024-12-31') | Dec/31/2024 ISO Week 01 |
FORMAT_DATE('%h/%d/%E4Y ISO Week %V', DATE '2024-12-31') | Dec/31/2024 ISO Week 01 |
FORMAT_DATE('%B/%d/%y ISO Week %V', DATE '2024-12-31') | December/31/24 ISO Week 01 |
FORMAT_DATE('%b/%d/%y ISO Week %V', DATE '2024-12-31') | Dec/31/24 ISO Week 01 |
FORMAT_DATE('%h/%d/%y ISO Week %V', DATE '2024-12-31') | Dec/31/24 ISO Week 01 |
FORMAT_DATE('%B/%d/%G ISO Week %V', DATE '2024-12-31') | December/31/2025 ISO Week 01 |
FORMAT_DATE('%b/%d/%G ISO Week %V', DATE '2024-12-31') | Dec/31/2025 ISO Week 01 |
FORMAT_DATE('%h/%d/%G ISO Week %V', DATE '2024-12-31') | Dec/31/2025 ISO Week 01 |
FORMAT_DATE('%B/%d/%g ISO Week %V', DATE '2024-12-31') | December/31/25 ISO Week 01 |
FORMAT_DATE('%b/%d/%g ISO Week %V', DATE '2024-12-31') | Dec/31/25 ISO Week 01 |
FORMAT_DATE('%h/%d/%g ISO Week %V', DATE '2024-12-31') | Dec/31/25 ISO Week 01 |
FORMAT_DATE('%m:%d:%Y ISO Week %V', DATE '2024-12-31') | 12:31:2024 ISO Week 01 |
FORMAT_DATE('%m:%d:%E4Y ISO Week %V', DATE '2024-12-31') | 12:31:2024 ISO Week 01 |
FORMAT_DATE('%m:%d:%y ISO Week %V', DATE '2024-12-31') | 12:31:24 ISO Week 01 |
FORMAT_DATE('%m:%d:%G ISO Week %V', DATE '2024-12-31') | 12:31:2025 ISO Week 01 |
FORMAT_DATE('%m:%d:%g ISO Week %V', DATE '2024-12-31') | 12:31:25 ISO Week 01 |
FORMAT_DATE('%B:%d:%Y ISO Week %V', DATE '2024-12-31') | December:31:2024 ISO Week 01 |
FORMAT_DATE('%b:%d:%Y ISO Week %V', DATE '2024-12-31') | Dec:31:2024 ISO Week 01 |
FORMAT_DATE('%h:%d:%Y ISO Week %V', DATE '2024-12-31') | Dec:31:2024 ISO Week 01 |
FORMAT_DATE('%B:%d:%E4Y ISO Week %V', DATE '2024-12-31') | December:31:2024 ISO Week 01 |
FORMAT_DATE('%b:%d:%E4Y ISO Week %V', DATE '2024-12-31') | Dec:31:2024 ISO Week 01 |
FORMAT_DATE('%h:%d:%E4Y ISO Week %V', DATE '2024-12-31') | Dec:31:2024 ISO Week 01 |
FORMAT_DATE('%B:%d:%y ISO Week %V', DATE '2024-12-31') | December:31:24 ISO Week 01 |
FORMAT_DATE('%b:%d:%y ISO Week %V', DATE '2024-12-31') | Dec:31:24 ISO Week 01 |
FORMAT_DATE('%h:%d:%y ISO Week %V', DATE '2024-12-31') | Dec:31:24 ISO Week 01 |
FORMAT_DATE('%B:%d:%G ISO Week %V', DATE '2024-12-31') | December:31:2025 ISO Week 01 |
FORMAT_DATE('%b:%d:%G ISO Week %V', DATE '2024-12-31') | Dec:31:2025 ISO Week 01 |
FORMAT_DATE('%h:%d:%G ISO Week %V', DATE '2024-12-31') | Dec:31:2025 ISO Week 01 |
FORMAT_DATE('%B:%d:%g ISO Week %V', DATE '2024-12-31') | December:31:25 ISO Week 01 |
FORMAT_DATE('%b:%d:%g ISO Week %V', DATE '2024-12-31') | Dec:31:25 ISO Week 01 |
FORMAT_DATE('%h:%d:%g ISO Week %V', DATE '2024-12-31') | Dec:31:25 ISO Week 01 |
FORMAT_DATE('%m.%d.%Y ISO Week %V', DATE '2024-12-31') | 12.31.2024 ISO Week 01 |
FORMAT_DATE('%m.%d.%E4Y ISO Week %V', DATE '2024-12-31') | 12.31.2024 ISO Week 01 |
FORMAT_DATE('%m.%d.%y ISO Week %V', DATE '2024-12-31') | 12.31.24 ISO Week 01 |
FORMAT_DATE('%m.%d.%G ISO Week %V', DATE '2024-12-31') | 12.31.2025 ISO Week 01 |
FORMAT_DATE('%m.%d.%g ISO Week %V', DATE '2024-12-31') | 12.31.25 ISO Week 01 |
FORMAT_DATE('%B.%d.%Y ISO Week %V', DATE '2024-12-31') | December.31.2024 ISO Week 01 |
FORMAT_DATE('%b.%d.%Y ISO Week %V', DATE '2024-12-31') | Dec.31.2024 ISO Week 01 |
FORMAT_DATE('%h.%d.%Y ISO Week %V', DATE '2024-12-31') | Dec.31.2024 ISO Week 01 |
FORMAT_DATE('%B.%d.%E4Y ISO Week %V', DATE '2024-12-31') | December.31.2024 ISO Week 01 |
FORMAT_DATE('%b.%d.%E4Y ISO Week %V', DATE '2024-12-31') | Dec.31.2024 ISO Week 01 |
FORMAT_DATE('%h.%d.%E4Y ISO Week %V', DATE '2024-12-31') | Dec.31.2024 ISO Week 01 |
FORMAT_DATE('%B.%d.%y ISO Week %V', DATE '2024-12-31') | December.31.24 ISO Week 01 |
FORMAT_DATE('%b.%d.%y ISO Week %V', DATE '2024-12-31') | Dec.31.24 ISO Week 01 |
FORMAT_DATE('%h.%d.%y ISO Week %V', DATE '2024-12-31') | Dec.31.24 ISO Week 01 |
FORMAT_DATE('%B.%d.%G ISO Week %V', DATE '2024-12-31') | December.31.2025 ISO Week 01 |
FORMAT_DATE('%b.%d.%G ISO Week %V', DATE '2024-12-31') | Dec.31.2025 ISO Week 01 |
FORMAT_DATE('%h.%d.%G ISO Week %V', DATE '2024-12-31') | Dec.31.2025 ISO Week 01 |
FORMAT_DATE('%B.%d.%g ISO Week %V', DATE '2024-12-31') | December.31.25 ISO Week 01 |
FORMAT_DATE('%b.%d.%g ISO Week %V', DATE '2024-12-31') | Dec.31.25 ISO Week 01 |
FORMAT_DATE('%h.%d.%g ISO Week %V', DATE '2024-12-31') | Dec.31.25 ISO Week 01 |
FORMAT_DATE('%m %d %Y ISO Week %V', DATE '2024-12-31') | 12 31 2024 ISO Week 01 |
FORMAT_DATE('%m %d %E4Y ISO Week %V', DATE '2024-12-31') | 12 31 2024 ISO Week 01 |
FORMAT_DATE('%m %d %y ISO Week %V', DATE '2024-12-31') | 12 31 24 ISO Week 01 |
FORMAT_DATE('%m %d %G ISO Week %V', DATE '2024-12-31') | 12 31 2025 ISO Week 01 |
FORMAT_DATE('%m %d %g ISO Week %V', DATE '2024-12-31') | 12 31 25 ISO Week 01 |
FORMAT_DATE('%B %d %Y ISO Week %V', DATE '2024-12-31') | December 31 2024 ISO Week 01 |
FORMAT_DATE('%b %d %Y ISO Week %V', DATE '2024-12-31') | Dec 31 2024 ISO Week 01 |
FORMAT_DATE('%h %d %Y ISO Week %V', DATE '2024-12-31') | Dec 31 2024 ISO Week 01 |
FORMAT_DATE('%B %d %E4Y ISO Week %V', DATE '2024-12-31') | December 31 2024 ISO Week 01 |
FORMAT_DATE('%b %d %E4Y ISO Week %V', DATE '2024-12-31') | Dec 31 2024 ISO Week 01 |
FORMAT_DATE('%h %d %E4Y ISO Week %V', DATE '2024-12-31') | Dec 31 2024 ISO Week 01 |
FORMAT_DATE('%B %d %y ISO Week %V', DATE '2024-12-31') | December 31 24 ISO Week 01 |
FORMAT_DATE('%b %d %y ISO Week %V', DATE '2024-12-31') | Dec 31 24 ISO Week 01 |
FORMAT_DATE('%h %d %y ISO Week %V', DATE '2024-12-31') | Dec 31 24 ISO Week 01 |
FORMAT_DATE('%B %d %G ISO Week %V', DATE '2024-12-31') | December 31 2025 ISO Week 01 |
FORMAT_DATE('%b %d %G ISO Week %V', DATE '2024-12-31') | Dec 31 2025 ISO Week 01 |
FORMAT_DATE('%h %d %G ISO Week %V', DATE '2024-12-31') | Dec 31 2025 ISO Week 01 |
FORMAT_DATE('%B %d %g ISO Week %V', DATE '2024-12-31') | December 31 25 ISO Week 01 |
FORMAT_DATE('%b %d %g ISO Week %V', DATE '2024-12-31') | Dec 31 25 ISO Week 01 |
FORMAT_DATE('%h %d %g ISO Week %V', DATE '2024-12-31') | Dec 31 25 ISO Week 01 |
FORMAT_DATE('%m%d%Y ISO Week %V', DATE '2024-12-31') | 12312024 ISO Week 01 |
FORMAT_DATE('%m%d%E4Y ISO Week %V', DATE '2024-12-31') | 12312024 ISO Week 01 |
FORMAT_DATE('%m%d%y ISO Week %V', DATE '2024-12-31') | 123124 ISO Week 01 |
FORMAT_DATE('%m%d%G ISO Week %V', DATE '2024-12-31') | 12312025 ISO Week 01 |
FORMAT_DATE('%m%d%g ISO Week %V', DATE '2024-12-31') | 123125 ISO Week 01 |
FORMAT_DATE('%B%d%Y ISO Week %V', DATE '2024-12-31') | December312024 ISO Week 01 |
FORMAT_DATE('%b%d%Y ISO Week %V', DATE '2024-12-31') | Dec312024 ISO Week 01 |
FORMAT_DATE('%h%d%Y ISO Week %V', DATE '2024-12-31') | Dec312024 ISO Week 01 |
FORMAT_DATE('%B%d%E4Y ISO Week %V', DATE '2024-12-31') | December312024 ISO Week 01 |
FORMAT_DATE('%b%d%E4Y ISO Week %V', DATE '2024-12-31') | Dec312024 ISO Week 01 |
FORMAT_DATE('%h%d%E4Y ISO Week %V', DATE '2024-12-31') | Dec312024 ISO Week 01 |
FORMAT_DATE('%B%d%y ISO Week %V', DATE '2024-12-31') | December3124 ISO Week 01 |
FORMAT_DATE('%b%d%y ISO Week %V', DATE '2024-12-31') | Dec3124 ISO Week 01 |
FORMAT_DATE('%h%d%y ISO Week %V', DATE '2024-12-31') | Dec3124 ISO Week 01 |
FORMAT_DATE('%B%d%G ISO Week %V', DATE '2024-12-31') | December312025 ISO Week 01 |
FORMAT_DATE('%b%d%G ISO Week %V', DATE '2024-12-31') | Dec312025 ISO Week 01 |
FORMAT_DATE('%h%d%G ISO Week %V', DATE '2024-12-31') | Dec312025 ISO Week 01 |
FORMAT_DATE('%B%d%g ISO Week %V', DATE '2024-12-31') | December3125 ISO Week 01 |
FORMAT_DATE('%b%d%g ISO Week %V', DATE '2024-12-31') | Dec3125 ISO Week 01 |
FORMAT_DATE('%h%d%g ISO Week %V', DATE '2024-12-31') | Dec3125 ISO Week 01 |
FORMAT_DATE('%A %B %d, %Y', DATE '2024-12-31') | Tuesday December 31, 2024 |
FORMAT_DATE('%a %B %d, %Y', DATE '2024-12-31') | Tue December 31, 2024 |
FORMAT_DATE('%A %b %d, %Y', DATE '2024-12-31') | Tuesday Dec 31, 2024 |
FORMAT_DATE('%a %b %d, %Y', DATE '2024-12-31') | Tue Dec 31, 2024 |
FORMAT_DATE('%A %B %e, %Y', DATE '2024-12-31') | Tuesday December 31, 2024 |
FORMAT_DATE('%a %B %e, %Y', DATE '2024-12-31') | Tue December 31, 2024 |
FORMAT_DATE('%A %b %e, %Y', DATE '2024-12-31') | Tuesday Dec 31, 2024 |
FORMAT_DATE('%a %b %e, %Y', DATE '2024-12-31') | Tue Dec 31, 2024 |
FORMAT_DATE('%A %B %d, %y', DATE '2024-12-31') | Tuesday December 31, 24 |
FORMAT_DATE('%a %B %d, %y', DATE '2024-12-31') | Tue December 31, 24 |
FORMAT_DATE('%A %b %d, %y', DATE '2024-12-31') | Tuesday Dec 31, 24 |
FORMAT_DATE('%a %b %d, %y', DATE '2024-12-31') | Tue Dec 31, 24 |
FORMAT_DATE('%A %B %e, %y', DATE '2024-12-31') | Tuesday December 31, 24 |
FORMAT_DATE('%a %B %e, %y', DATE '2024-12-31') | Tue December 31, 24 |
FORMAT_DATE('%A %b %e, %y', DATE '2024-12-31') | Tuesday Dec 31, 24 |
FORMAT_DATE('%a %b %e, %y', DATE '2024-12-31') | Tue Dec 31, 24 |
FORMAT_DATE('%A %B %d, %E4Y', DATE '2024-12-31') | Tuesday December 31, 2024 |
FORMAT_DATE('%a %B %d, %E4Y', DATE '2024-12-31') | Tue December 31, 2024 |
FORMAT_DATE('%A %b %d, %E4Y', DATE '2024-12-31') | Tuesday Dec 31, 2024 |
FORMAT_DATE('%a %b %d, %E4Y', DATE '2024-12-31') | Tue Dec 31, 2024 |
FORMAT_DATE('%A %B %e, %E4Y', DATE '2024-12-31') | Tuesday December 31, 2024 |
FORMAT_DATE('%a %B %e, %E4Y', DATE '2024-12-31') | Tue December 31, 2024 |
FORMAT_DATE('%A %b %e, %E4Y', DATE '2024-12-31') | Tuesday Dec 31, 2024 |
FORMAT_DATE('%a %b %e, %E4Y', DATE '2024-12-31') | Tue Dec 31, 2024 |
FORMAT_DATE('%A %B %d, %G', DATE '2024-12-31') | Tuesday December 31, 2025 |
FORMAT_DATE('%a %B %d, %G', DATE '2024-12-31') | Tue December 31, 2025 |
FORMAT_DATE('%A %b %d, %G', DATE '2024-12-31') | Tuesday Dec 31, 2025 |
FORMAT_DATE('%a %b %d, %G', DATE '2024-12-31') | Tue Dec 31, 2025 |
FORMAT_DATE('%A %B %e, %G', DATE '2024-12-31') | Tuesday December 31, 2025 |
FORMAT_DATE('%a %B %e, %G', DATE '2024-12-31') | Tue December 31, 2025 |
FORMAT_DATE('%A %b %e, %G', DATE '2024-12-31') | Tuesday Dec 31, 2025 |
FORMAT_DATE('%a %b %e, %G', DATE '2024-12-31') | Tue Dec 31, 2025 |
FORMAT_DATE('%A %B %d, %g', DATE '2024-12-31') | Tuesday December 31, 25 |
FORMAT_DATE('%a %B %d, %g', DATE '2024-12-31') | Tue December 31, 25 |
FORMAT_DATE('%A %b %d, %g', DATE '2024-12-31') | Tuesday Dec 31, 25 |
FORMAT_DATE('%a %b %d, %g', DATE '2024-12-31') | Tue Dec 31, 25 |
FORMAT_DATE('%A %B %e, %g', DATE '2024-12-31') | Tuesday December 31, 25 |
FORMAT_DATE('%a %B %e, %g', DATE '2024-12-31') | Tue December 31, 25 |
FORMAT_DATE('%A %b %e, %g', DATE '2024-12-31') | Tuesday Dec 31, 25 |
FORMAT_DATE('%a %b %e, %g', DATE '2024-12-31') | Tue Dec 31, 25 |
