SyntaxResult
SELECT current_date as Todays_Date,2024-01-18
FORMAT_DATE(%m/%d/%Y, current_date) as US01/18/2024
FORMAT_DATE(%d/%m/%Y, current_date) as European18/01/2024
FORMAT_DATE(%Y-%m-%d, current_date) as ISO_86012024-01-18
FORMAT_DATE(%Y年%m月%d日, current_date) as Japanese2024年01月18日
FORMAT_DATE(%d/%m/%Y, current_date) as Brazilian18/01/2024
FORMAT_DATE(%Y年%m月%d日, current_date) as Chinese2024年01月18日
FORMAT_DATE(%d-%m-%Y, current_date) as Indian18-01-2024
FORMAT_DATE(%Y-%m-%d, current_date) as Canadian2024-01-18
FORMAT_DATE(%d/%m/%Y, current_date) as Australian18/01/2024
FORMAT_DATE(%d.%m.%Y, current_date) as Russian18.01.2024
FORMAT_DATE(%Y/%m/%d, current_date) as South_African2024/01/18
FORMAT_DATE(%d/%m/%Y, current_date) as British18/01/2024
FORMAT_DATE(%d/%m/%Y, current_date) as Mexican18/01/2024
FORMAT_DATE(%Y년 %m월 %d일, current_date) as Korean2024년 01월 18일
FORMAT_DATE(%d/%m/%Y, current_date) as Middle_Eastern18/01/2024
SyntaxResult
CURRENT_DATE2024-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
SYNTAXRESULTS
CURRENT_DATE as TODAYS_DATE2024-01-11
FORMAT_DATE('%A', CURRENT_DATE) AS FULL_WEEK_NAME -- The full weekday nameThursday
FORMAT_DATE('%a', CURRENT_DATE) AS ABB_WEEK_NAME -- The abbreviated weekday nameThu
FORMAT_DATE('%B', CURRENT_DATE) AS FULL_MNTH_NAME -- The full month nameJanuary
FORMAT_DATE('%b', CURRENT_DATE) AS ABB_MNTH_NAME -- The abbreviated month nameJan
FORMAT_DATE('%h', CURRENT_DATE) AS ABB_MNTH_NAME2 -- The abbreviated month nameJan
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/%y01/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 space11
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 number2024
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 format01/11/24
FORMAT_DATE('%Y', CURRENT_DATE) AS YR_YYYY -- The year with century as a decimal number2024
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 PMam
FORMAT_DATE('%Y-%m', CURRENT_DATE) as YYYYMM2024-01
FORMAT_DATE('%E4Y-%m', CURRENT_DATE) as YYYYMM22024-01
FORMAT_DATE('%y-%m', CURRENT_DATE) as YYMM24-01
FORMAT_DATE('%G-%m', CURRENT_DATE) as IYYYMM2024-01
FORMAT_DATE('%g-%m', CURRENT_DATE) as IYMM24-01
FORMAT_DATE('%Y-%B', CURRENT_DATE) as YYYYMONTH2024-January
FORMAT_DATE('%E4Y-%B', CURRENT_DATE) as YYYYMONTH22024-January
FORMAT_DATE('%y-%B', CURRENT_DATE) as YYMONTH24-January
FORMAT_DATE('%G-%B', CURRENT_DATE) as IYYYMONTH2024-January
FORMAT_DATE('%g-%B', CURRENT_DATE) as IYMONTH24-January
FORMAT_DATE('%Y-%b', CURRENT_DATE) as YYYYMON2024-Jan
FORMAT_DATE('%E4Y-%b', CURRENT_DATE) as YYYYMON22024-Jan
FORMAT_DATE('%y-%b', CURRENT_DATE) as YYMON24-Jan
FORMAT_DATE('%G-%b', CURRENT_DATE) as IYYYMON2024-Jan
FORMAT_DATE('%g-%b', CURRENT_DATE) as IYMON24-Jan
FORMAT_DATE('%Y-%h', CURRENT_DATE) as YYYYMON22024-Jan
FORMAT_DATE('%E4Y-%h', CURRENT_DATE) as YYYYMON32024-Jan
FORMAT_DATE('%y-%h', CURRENT_DATE) as YYMON224-Jan
FORMAT_DATE('%G-%h', CURRENT_DATE) as IYYYMON22024-Jan
FORMAT_DATE('%g-%h', CURRENT_DATE) as IYMON224-Jan
FORMAT_DATE('%m-%Y', CURRENT_DATE) as MMYYYY01-2024
FORMAT_DATE('%m-%E4Y', CURRENT_DATE) as MM2YYYY01-2024
FORMAT_DATE('%m-%y', CURRENT_DATE) as MMYY01-24
FORMAT_DATE('%m-%G', CURRENT_DATE) as MMIYYY01-2024
FORMAT_DATE('%m-%g', CURRENT_DATE) as MMIY01-24
FORMAT_DATE('%B-%Y', CURRENT_DATE) as MONTHYYYYJanuary-2024
FORMAT_DATE('%B-%E4Y', CURRENT_DATE) as MONTH2YYYYJanuary-2024
FORMAT_DATE('%B%y', CURRENT_DATE) as MONTHYYJanuary24
FORMAT_DATE('%B-%G', CURRENT_DATE) as MONTHIYYYJanuary-2024
FORMAT_DATE('%B-%g', CURRENT_DATE) as MONTHIYJanuary-24
FORMAT_DATE('%b-%Y', CURRENT_DATE) as MONYYYYJan-2024
FORMAT_DATE('%b-%E4Y', CURRENT_DATE) as MON2YYYYJan-2024
FORMAT_DATE('%b-%y', CURRENT_DATE) as MONYYJan-24
FORMAT_DATE('%b-%G', CURRENT_DATE) as MONIYYYJan-2024
FORMAT_DATE('%b-%g', CURRENT_DATE) as MONIYJan-24
FORMAT_DATE('%h-%Y', CURRENT_DATE) as MON2YYYYJan-2024
FORMAT_DATE('%h-%E4Y', CURRENT_DATE) as MON3YYYYJan-2024
FORMAT_DATE('%h-%y', CURRENT_DATE) as MON2YYJan-24
FORMAT_DATE('%h-%G', CURRENT_DATE) as MON2IYYYJan-2024
FORMAT_DATE('%h-%g', CURRENT_DATE) as MON2IYJan-24
FORMAT_DATE('%m-%d', CURRENT_DATE) as MM_DD_01_3101-11
FORMAT_DATE('%m-%e', CURRENT_DATE) as MM_D_1_3101-11
FORMAT_DATE('%B-%d', CURRENT_DATE) as MONTH_DD_01_31January-11
FORMAT_DATE('%B-%e', CURRENT_DATE) as MONTH_D_1_31January-11
FORMAT_DATE('%b-%d', CURRENT_DATE) as MON_DD_01_31Jan-11
FORMAT_DATE('%b-%e', CURRENT_DATE) as MON_D_1_31Jan-11
FORMAT_DATE('%h-%d', CURRENT_DATE) as MON2_DD_01_31Jan-11
FORMAT_DATE('%h-%e', CURRENT_DATE) as MON2_D_1_31Jan-11
FORMAT_DATE('%d-%m', CURRENT_DATE) as DD_01_31_MM11-01
FORMAT_DATE('%e-%m', CURRENT_DATE) as D_1_31_MM11-01
FORMAT_DATE('%d-%B', CURRENT_DATE) as DD_01_31_MONTH11-January
FORMAT_DATE('%e-%B', CURRENT_DATE) as D_1_31_MONTH11-January
FORMAT_DATE('%d-%b', CURRENT_DATE) as DD_01_31_MON11-Jan
FORMAT_DATE('%e-%b', CURRENT_DATE) as D_1_31_MON11-Jan
FORMAT_DATE('%d-%h', CURRENT_DATE) as DD_01_31_MON211-Jan
FORMAT_DATE('%e-%h', CURRENT_DATE) as D_1_31_MON211-Jan
FORMAT_DATE('%Y/%m', CURRENT_DATE) as YYYYMM_S2024/01
FORMAT_DATE('%E4Y/%m', CURRENT_DATE) as YYYYMM2_S2024/01
FORMAT_DATE('%y/%m', CURRENT_DATE) as YYMM_S24/01
FORMAT_DATE('%G/%m', CURRENT_DATE) as IYYYMM_S2024/01
FORMAT_DATE('%g/%m', CURRENT_DATE) as IYMM_S24/01
FORMAT_DATE('%Y/%B', CURRENT_DATE) as YYYYMONTH_S2024/January
FORMAT_DATE('%E4Y/%B', CURRENT_DATE) as YYYYMONTH2_S2024/January
FORMAT_DATE('%y/%B', CURRENT_DATE) as YYMONTH_S24/January
FORMAT_DATE('%G/%B', CURRENT_DATE) as IYYYMONTH_S2024/January
FORMAT_DATE('%g/%B', CURRENT_DATE) as IYMONTH_S24/January
FORMAT_DATE('%Y/%b', CURRENT_DATE) as YYYYMON_S2024/Jan
FORMAT_DATE('%E4Y/%b', CURRENT_DATE) as YYYYMON2_S2024/Jan
FORMAT_DATE('%y/%b', CURRENT_DATE) as YYMON_S24/Jan
FORMAT_DATE('%G/%b', CURRENT_DATE) as IYYYMON_S2024/Jan
FORMAT_DATE('%g/%b', CURRENT_DATE) as IYMON_S24/Jan
FORMAT_DATE('%Y/%h', CURRENT_DATE) as YYYYMON2_S2024/Jan
FORMAT_DATE('%E4Y/%h', CURRENT_DATE) as YYYYMON3_S2024/Jan
FORMAT_DATE('%y/%h', CURRENT_DATE) as YYMON2_S24/Jan
FORMAT_DATE('%G/%h', CURRENT_DATE) as IYYYMON2_S2024/Jan
FORMAT_DATE('%g/%h', CURRENT_DATE) as IYMON2_S24/Jan
FORMAT_DATE('%m/%Y', CURRENT_DATE) as MMYYYY_S01/2024
FORMAT_DATE('%m/%E4Y', CURRENT_DATE) as MM2YYYY_S01/2024
FORMAT_DATE('%m/%y', CURRENT_DATE) as MMYY_S01/24
FORMAT_DATE('%m/%G', CURRENT_DATE) as MMIYYY_S01/2024
FORMAT_DATE('%m/%g', CURRENT_DATE) as MMIY_S01/24
FORMAT_DATE('%B/%Y', CURRENT_DATE) as MONTHYYYY_SJanuary/2024
FORMAT_DATE('%B/%E4Y', CURRENT_DATE) as MONTH2YYYY_SJanuary/2024
FORMAT_DATE('%B%y', CURRENT_DATE) as MONTHYY_SJanuary24
FORMAT_DATE('%B/%G', CURRENT_DATE) as MONTHIYYY_SJanuary/2024
FORMAT_DATE('%B/%g', CURRENT_DATE) as MONTHIY_SJanuary/24
FORMAT_DATE('%b/%Y', CURRENT_DATE) as MONYYYY_SJan/2024
FORMAT_DATE('%b/%E4Y', CURRENT_DATE) as MON2YYYY_SJan/2024
FORMAT_DATE('%b/%y', CURRENT_DATE) as MONYY_SJan/24
FORMAT_DATE('%b/%G', CURRENT_DATE) as MONIYYY_SJan/2024
FORMAT_DATE('%b/%g', CURRENT_DATE) as MONIY_SJan/24
FORMAT_DATE('%h/%Y', CURRENT_DATE) as MON2YYYY_SJan/2024
FORMAT_DATE('%h/%E4Y', CURRENT_DATE) as MON3YYYY_SJan/2024
FORMAT_DATE('%h/%y', CURRENT_DATE) as MON2YY_SJan/24
FORMAT_DATE('%h/%G', CURRENT_DATE) as MON2IYYY_SJan/2024
FORMAT_DATE('%h/%g', CURRENT_DATE) as MON2IY_SJan/24
FORMAT_DATE('%m/%d', CURRENT_DATE) as MM_DD_01_31_S01/11
FORMAT_DATE('%m/%e', CURRENT_DATE) as MM_D_1_31_S01/11
FORMAT_DATE('%B/%d', CURRENT_DATE) as MONTH_DD_01_31_SJanuary/11
FORMAT_DATE('%B/%e', CURRENT_DATE) as MONTH_D_1_31_SJanuary/11
FORMAT_DATE('%b/%d', CURRENT_DATE) as MON_DD_01_31_SJan/11
FORMAT_DATE('%b/%e', CURRENT_DATE) as MON_D_1_31_SJan/11
FORMAT_DATE('%h/%d', CURRENT_DATE) as MON2_DD_01_31_SJan/11
FORMAT_DATE('%h/%e', CURRENT_DATE) as MON2_D_1_31_SJan/11
FORMAT_DATE('%d/%m', CURRENT_DATE) as DD_01_31_MM_S11/01
FORMAT_DATE('%e/%m', CURRENT_DATE) as D_1_31_MM_S11/01
FORMAT_DATE('%d/%B', CURRENT_DATE) as DD_01_31_MONTH_S11/January
FORMAT_DATE('%e/%B', CURRENT_DATE) as D_1_31_MONTH_S11/January
FORMAT_DATE('%d/%b', CURRENT_DATE) as DD_01_31_MON_S11/Jan
FORMAT_DATE('%e/%b', CURRENT_DATE) as D_1_31_MON_S11/Jan
FORMAT_DATE('%d/%h', CURRENT_DATE) as DD_01_31_MON2_S11/Jan
FORMAT_DATE('%e/%h', CURRENT_DATE) as D_1_31_MON2_S11/Jan
FORMAT_DATE('%Y:%m', CURRENT_DATE) as YYYYMM_C2024:01
FORMAT_DATE('%E4Y:%m', CURRENT_DATE) as YYYYMM2_C2024:01
FORMAT_DATE('%y:%m', CURRENT_DATE) as YYMM_C24:01
FORMAT_DATE('%G:%m', CURRENT_DATE) as IYYYMM_C2024:01
FORMAT_DATE('%g:%m', CURRENT_DATE) as IYMM_C24:01
FORMAT_DATE('%Y:%B', CURRENT_DATE) as YYYYMONTH_C2024:January
FORMAT_DATE('%E4Y:%B', CURRENT_DATE) as YYYYMONTH2_C2024:January
FORMAT_DATE('%y:%B', CURRENT_DATE) as YYMONTH_C24:January
FORMAT_DATE('%G:%B', CURRENT_DATE) as IYYYMONTH_C2024:January
FORMAT_DATE('%g:%B', CURRENT_DATE) as IYMONTH_C24:January
FORMAT_DATE('%Y:%b', CURRENT_DATE) as YYYYMON_C2024:Jan
FORMAT_DATE('%E4Y:%b', CURRENT_DATE) as YYYYMON2_C2024:Jan
FORMAT_DATE('%y:%b', CURRENT_DATE) as YYMON_C24:Jan
FORMAT_DATE('%G:%b', CURRENT_DATE) as IYYYMON_C2024:Jan
FORMAT_DATE('%g:%b', CURRENT_DATE) as IYMON_C24:Jan
FORMAT_DATE('%Y:%h', CURRENT_DATE) as YYYYMON2_C2024:Jan
FORMAT_DATE('%E4Y:%h', CURRENT_DATE) as YYYYMON3_C2024:Jan
FORMAT_DATE('%y:%h', CURRENT_DATE) as YYMON2_C24:Jan
FORMAT_DATE('%G:%h', CURRENT_DATE) as IYYYMON2_C2024:Jan
FORMAT_DATE('%g:%h', CURRENT_DATE) as IYMON2_C24:Jan
FORMAT_DATE('%m:%Y', CURRENT_DATE) as MMYYYY_C01:2024
FORMAT_DATE('%m:%E4Y', CURRENT_DATE) as MM2YYYY_C01:2024
FORMAT_DATE('%m:%y', CURRENT_DATE) as MMYY_C01:24
FORMAT_DATE('%m:%G', CURRENT_DATE) as MMIYYY_C01:2024
FORMAT_DATE('%m:%g', CURRENT_DATE) as MMIY_C01:24
FORMAT_DATE('%B:%Y', CURRENT_DATE) as MONTHYYYY_CJanuary:2024
FORMAT_DATE('%B:%E4Y', CURRENT_DATE) as MONTH2YYYY_CJanuary:2024
FORMAT_DATE('%B%y', CURRENT_DATE) as MONTHYY_CJanuary24
FORMAT_DATE('%B:%G', CURRENT_DATE) as MONTHIYYY_CJanuary:2024
FORMAT_DATE('%B:%g', CURRENT_DATE) as MONTHIY_CJanuary:24
FORMAT_DATE('%b:%Y', CURRENT_DATE) as MONYYYY_CJan:2024
FORMAT_DATE('%b:%E4Y', CURRENT_DATE) as MON2YYYY_CJan:2024
FORMAT_DATE('%b:%y', CURRENT_DATE) as MONYY_CJan:24
FORMAT_DATE('%b:%G', CURRENT_DATE) as MONIYYY_CJan:2024
FORMAT_DATE('%b:%g', CURRENT_DATE) as MONIY_CJan:24
FORMAT_DATE('%h:%Y', CURRENT_DATE) as MON2YYYY_CJan:2024
FORMAT_DATE('%h:%E4Y', CURRENT_DATE) as MON3YYYY_CJan:2024
FORMAT_DATE('%h:%y', CURRENT_DATE) as MON2YY_CJan:24
FORMAT_DATE('%h:%G', CURRENT_DATE) as MON2IYYY_CJan:2024
FORMAT_DATE('%h:%g', CURRENT_DATE) as MON2IY_CJan:24
FORMAT_DATE('%m:%d', CURRENT_DATE) as MM_DD_01_31_C01:11
FORMAT_DATE('%m:%e', CURRENT_DATE) as MM_D_1_31_C01:11
FORMAT_DATE('%B:%d', CURRENT_DATE) as MONTH_DD_01_31_CJanuary:11
FORMAT_DATE('%B:%e', CURRENT_DATE) as MONTH_D_1_31_CJanuary:11
FORMAT_DATE('%b:%d', CURRENT_DATE) as MON_DD_01_31_CJan:11
FORMAT_DATE('%b:%e', CURRENT_DATE) as MON_D_1_31_CJan:11
FORMAT_DATE('%h:%d', CURRENT_DATE) as MON2_DD_01_31_CJan:11
FORMAT_DATE('%h:%e', CURRENT_DATE) as MON2_D_1_31_CJan:11
FORMAT_DATE('%d:%m', CURRENT_DATE) as DD_01_31_MM_C11:01
FORMAT_DATE('%e:%m', CURRENT_DATE) as D_1_31_MM_C11:01
FORMAT_DATE('%d:%B', CURRENT_DATE) as DD_01_31_MONTH_C11:January
FORMAT_DATE('%e:%B', CURRENT_DATE) as D_1_31_MONTH_C11:January
FORMAT_DATE('%d:%b', CURRENT_DATE) as DD_01_31_MON_C11:Jan
FORMAT_DATE('%e:%b', CURRENT_DATE) as D_1_31_MON_C11:Jan
FORMAT_DATE('%d:%h', CURRENT_DATE) as DD_01_31_MON2_C11:Jan
FORMAT_DATE('%e:%h', CURRENT_DATE) as D_1_31_MON2_C11:Jan
FORMAT_DATE('%Y.%m', CURRENT_DATE) as YYYYMM_P2024.01
FORMAT_DATE('%E4Y.%m', CURRENT_DATE) as YYYYMM2_P2024.01
FORMAT_DATE('%y.%m', CURRENT_DATE) as YYMM_P24.01
FORMAT_DATE('%G.%m', CURRENT_DATE) as IYYYMM_P2024.01
FORMAT_DATE('%g.%m', CURRENT_DATE) as IYMM_P24.01
FORMAT_DATE('%Y.%B', CURRENT_DATE) as YYYYMONTH_P2024.January
FORMAT_DATE('%E4Y.%B', CURRENT_DATE) as YYYYMONTH2_P2024.January
FORMAT_DATE('%y.%B', CURRENT_DATE) as YYMONTH_P24.January
FORMAT_DATE('%G.%B', CURRENT_DATE) as IYYYMONTH_P2024.January
FORMAT_DATE('%g.%B', CURRENT_DATE) as IYMONTH_P24.January
FORMAT_DATE('%Y.%b', CURRENT_DATE) as YYYYMON_P2024.Jan
FORMAT_DATE('%E4Y.%b', CURRENT_DATE) as YYYYMON2_P2024.Jan
FORMAT_DATE('%y.%b', CURRENT_DATE) as YYMON_P24.Jan
FORMAT_DATE('%G.%b', CURRENT_DATE) as IYYYMON_P2024.Jan
FORMAT_DATE('%g.%b', CURRENT_DATE) as IYMON_P24.Jan
FORMAT_DATE('%Y.%h', CURRENT_DATE) as YYYYMON2_P2024.Jan
FORMAT_DATE('%E4Y.%h', CURRENT_DATE) as YYYYMON3_P2024.Jan
FORMAT_DATE('%y.%h', CURRENT_DATE) as YYMON2_P24.Jan
FORMAT_DATE('%G.%h', CURRENT_DATE) as IYYYMON2_P2024.Jan
FORMAT_DATE('%g.%h', CURRENT_DATE) as IYMON2_P24.Jan
FORMAT_DATE('%m.%Y', CURRENT_DATE) as MMYYYY_P01.2024
FORMAT_DATE('%m.%E4Y', CURRENT_DATE) as MM2YYYY_P01.2024
FORMAT_DATE('%m.%y', CURRENT_DATE) as MMYY_P01.24
FORMAT_DATE('%m.%G', CURRENT_DATE) as MMIYYY_P01.2024
FORMAT_DATE('%m.%g', CURRENT_DATE) as MMIY_P01.24
FORMAT_DATE('%B.%Y', CURRENT_DATE) as MONTHYYYY_PJanuary.2024
FORMAT_DATE('%B.%E4Y', CURRENT_DATE) as MONTH2YYYY_PJanuary.2024
FORMAT_DATE('%B%y', CURRENT_DATE) as MONTHYY_PJanuary24
FORMAT_DATE('%B.%G', CURRENT_DATE) as MONTHIYYY_PJanuary.2024
FORMAT_DATE('%B.%g', CURRENT_DATE) as MONTHIY_PJanuary.24
FORMAT_DATE('%b.%Y', CURRENT_DATE) as MONYYYY_PJan.2024
FORMAT_DATE('%b.%E4Y', CURRENT_DATE) as MON2YYYY_PJan.2024
FORMAT_DATE('%b.%y', CURRENT_DATE) as MONYY_PJan.24
FORMAT_DATE('%b.%G', CURRENT_DATE) as MONIYYY_PJan.2024
FORMAT_DATE('%b.%g', CURRENT_DATE) as MONIY_PJan.24
FORMAT_DATE('%h.%Y', CURRENT_DATE) as MON2YYYY_PJan.2024
FORMAT_DATE('%h.%E4Y', CURRENT_DATE) as MON3YYYY_PJan.2024
FORMAT_DATE('%h.%y', CURRENT_DATE) as MON2YY_PJan.24
FORMAT_DATE('%h.%G', CURRENT_DATE) as MON2IYYY_PJan.2024
FORMAT_DATE('%h.%g', CURRENT_DATE) as MON2IY_PJan.24
FORMAT_DATE('%m.%d', CURRENT_DATE) as MM_DD_01_31_P01.11
FORMAT_DATE('%m.%e', CURRENT_DATE) as MM_D_1_31_P01.11
FORMAT_DATE('%B.%d', CURRENT_DATE) as MONTH_DD_01_31_PJanuary.11
FORMAT_DATE('%B.%e', CURRENT_DATE) as MONTH_D_1_31_PJanuary.11
FORMAT_DATE('%b.%d', CURRENT_DATE) as MON_DD_01_31_PJan.11
FORMAT_DATE('%b.%e', CURRENT_DATE) as MON_D_1_31_PJan.11
FORMAT_DATE('%h.%d', CURRENT_DATE) as MON2_DD_01_31_PJan.11
FORMAT_DATE('%h.%e', CURRENT_DATE) as MON2_D_1_31_PJan.11
FORMAT_DATE('%d.%m', CURRENT_DATE) as DD_01_31_MM_P11.01
FORMAT_DATE('%e.%m', CURRENT_DATE) as D_1_31_MM_P11.01
FORMAT_DATE('%d.%B', CURRENT_DATE) as DD_01_31_MONTH_P11.January
FORMAT_DATE('%e.%B', CURRENT_DATE) as D_1_31_MONTH_P11.January
FORMAT_DATE('%d.%b', CURRENT_DATE) as DD_01_31_MON_P11.Jan
FORMAT_DATE('%e.%b', CURRENT_DATE) as D_1_31_MON_P11.Jan
FORMAT_DATE('%d.%h', CURRENT_DATE) as DD_01_31_MON2_P11.Jan
FORMAT_DATE('%e.%h', CURRENT_DATE) as D_1_31_MON2_P11.Jan
FORMAT_DATE('%Y %m', CURRENT_DATE) as YYYYMM_SP2024 01
FORMAT_DATE('%E4Y %m', CURRENT_DATE) as YYYYMM2_SP2024 01
FORMAT_DATE('%y %m', CURRENT_DATE) as YYMM_SP24 01
FORMAT_DATE('%G %m', CURRENT_DATE) as IYYYMM_SP2024 01
FORMAT_DATE('%g %m', CURRENT_DATE) as IYMM_SP24 01
FORMAT_DATE('%Y %B', CURRENT_DATE) as YYYYMONTH_SP2024 January
FORMAT_DATE('%E4Y %B', CURRENT_DATE) as YYYYMONTH2_SP2024 January
FORMAT_DATE('%y %B', CURRENT_DATE) as YYMONTH_SP24 January
FORMAT_DATE('%G %B', CURRENT_DATE) as IYYYMONTH_SP2024 January
FORMAT_DATE('%g %B', CURRENT_DATE) as IYMONTH_SP24 January
FORMAT_DATE('%Y %b', CURRENT_DATE) as YYYYMON_SP2024 Jan
FORMAT_DATE('%E4Y %b', CURRENT_DATE) as YYYYMON2_SP2024 Jan
FORMAT_DATE('%y %b', CURRENT_DATE) as YYMON_SP24 Jan
FORMAT_DATE('%G %b', CURRENT_DATE) as IYYYMON_SP2024 Jan
FORMAT_DATE('%g %b', CURRENT_DATE) as IYMON_SP24 Jan
FORMAT_DATE('%Y %h', CURRENT_DATE) as YYYYMON2_SP2024 Jan
FORMAT_DATE('%E4Y %h', CURRENT_DATE) as YYYYMON3_SP2024 Jan
FORMAT_DATE('%y %h', CURRENT_DATE) as YYMON2_SP24 Jan
FORMAT_DATE('%G %h', CURRENT_DATE) as IYYYMON2_SP2024 Jan
FORMAT_DATE('%g %h', CURRENT_DATE) as IYMON2_SP24 Jan
FORMAT_DATE('%m %Y', CURRENT_DATE) as MMYYYY_SP01 2024
FORMAT_DATE('%m %E4Y', CURRENT_DATE) as MM2YYYY_SP01 2024
FORMAT_DATE('%m %y', CURRENT_DATE) as MMYY_SP01 24
FORMAT_DATE('%m %G', CURRENT_DATE) as MMIYYY_SP01 2024
FORMAT_DATE('%m %g', CURRENT_DATE) as MMIY_SP01 24
FORMAT_DATE('%B %Y', CURRENT_DATE) as MONTHYYYY_SPJanuary 2024
FORMAT_DATE('%B %E4Y', CURRENT_DATE) as MONTH2YYYY_SPJanuary 2024
FORMAT_DATE('%B %y', CURRENT_DATE) as MONTHYY_SPJanuary 24
FORMAT_DATE('%B %G', CURRENT_DATE) as MONTHIYYY_SPJanuary 2024
FORMAT_DATE('%B %g', CURRENT_DATE) as MONTHIY_SPJanuary 24
FORMAT_DATE('%b %Y', CURRENT_DATE) as MONYYYY_SPJan 2024
FORMAT_DATE('%b %E4Y', CURRENT_DATE) as MON2YYYY_SPJan 2024
FORMAT_DATE('%b %y', CURRENT_DATE) as MONYY_SPJan 24
FORMAT_DATE('%b %G', CURRENT_DATE) as MONIYYY_SPJan 2024
FORMAT_DATE('%b %g', CURRENT_DATE) as MONIY_SPJan 24
FORMAT_DATE('%h %Y', CURRENT_DATE) as MON2YYYY_SPJan 2024
FORMAT_DATE('%h %E4Y', CURRENT_DATE) as MON3YYYY_SPJan 2024
FORMAT_DATE('%h %y', CURRENT_DATE) as MON2YY_SPJan 24
FORMAT_DATE('%h %G', CURRENT_DATE) as MON2IYYY_SPJan 2024
FORMAT_DATE('%h %g', CURRENT_DATE) as MON2IY_SPJan 24
FORMAT_DATE('%m %d', CURRENT_DATE) as MM_DD_01_31_SP01 11
FORMAT_DATE('%m %e', CURRENT_DATE) as MM_D_1_31_SP01 11
FORMAT_DATE('%B %d', CURRENT_DATE) as MONTH_DD_01_31_SPJanuary 11
FORMAT_DATE('%B %e', CURRENT_DATE) as MONTH_D_1_31_SPJanuary 11
FORMAT_DATE('%b %d', CURRENT_DATE) as MON_DD_01_31_SPJan 11
FORMAT_DATE('%b %e', CURRENT_DATE) as MON_D_1_31_SPJan 11
FORMAT_DATE('%h %d', CURRENT_DATE) as MON2_DD_01_31_SPJan 11
FORMAT_DATE('%h %e', CURRENT_DATE) as MON2_D_1_31_SPJan 11
FORMAT_DATE('%d %m', CURRENT_DATE) as DD_01_31_MM_SP11 01
FORMAT_DATE('%e %m', CURRENT_DATE) as D_1_31_MM_SP11 01
FORMAT_DATE('%d %B', CURRENT_DATE) as DD_01_31_MONTH_SP11 January
FORMAT_DATE('%e %B', CURRENT_DATE) as D_1_31_MONTH_SP11 January
FORMAT_DATE('%d %b', CURRENT_DATE) as DD_01_31_MON_SP11 Jan
FORMAT_DATE('%e %b', CURRENT_DATE) as D_1_31_MON_SP11 Jan
FORMAT_DATE('%d %h', CURRENT_DATE) as DD_01_31_MON2_SP11 Jan
FORMAT_DATE('%e %h', CURRENT_DATE) as D_1_31_MON2_SP11 Jan
FORMAT_DATE('%Y%m', CURRENT_DATE) as YYYYMM_NO_SP202401
FORMAT_DATE('%E4Y%m', CURRENT_DATE) as YYYYMM2_NO_SP202401
FORMAT_DATE('%y%m', CURRENT_DATE) as YYMM_NO_SP2401
FORMAT_DATE('%G%m', CURRENT_DATE) as IYYYMM_NO_SP202401
FORMAT_DATE('%g%m', CURRENT_DATE) as IYMM_NO_SP2401
FORMAT_DATE('%Y%B', CURRENT_DATE) as YYYYMONTH_NO_SP2024January
FORMAT_DATE('%E4Y%B', CURRENT_DATE) as YYYYMONTH2_NO_SP2024January
FORMAT_DATE('%y%B', CURRENT_DATE) as YYMONTH_NO_SP24January
FORMAT_DATE('%G%B', CURRENT_DATE) as IYYYMONTH_NO_SP2024January
FORMAT_DATE('%g%B', CURRENT_DATE) as IYMONTH_NO_SP24January
FORMAT_DATE('%Y%b', CURRENT_DATE) as YYYYMON_NO_SP2024Jan
FORMAT_DATE('%E4Y%b', CURRENT_DATE) as YYYYMON2_NO_SP2024Jan
FORMAT_DATE('%y%b', CURRENT_DATE) as YYMON_NO_SP24Jan
FORMAT_DATE('%G%b', CURRENT_DATE) as IYYYMON_NO_SP2024Jan
FORMAT_DATE('%g%b', CURRENT_DATE) as IYMON_NO_SP24Jan
FORMAT_DATE('%Y%h', CURRENT_DATE) as YYYYMON2_NO_SP2024Jan
FORMAT_DATE('%E4Y%h', CURRENT_DATE) as YYYYMON3_NO_SP2024Jan
FORMAT_DATE('%y%h', CURRENT_DATE) as YYMON2_NO_SP24Jan
FORMAT_DATE('%G%h', CURRENT_DATE) as IYYYMON2_NO_SP2024Jan
FORMAT_DATE('%g%h', CURRENT_DATE) as IYMON2_NO_SP24Jan
FORMAT_DATE('%m%Y', CURRENT_DATE) as MMYYYY_NO_SP012024
FORMAT_DATE('%m%E4Y', CURRENT_DATE) as MM2YYYY_NO_SP012024
FORMAT_DATE('%m%y', CURRENT_DATE) as MMYY_NO_SP0124
FORMAT_DATE('%m%G', CURRENT_DATE) as MMIYYY_NO_SP012024
FORMAT_DATE('%m%g', CURRENT_DATE) as MMIY_NO_SP0124
FORMAT_DATE('%B%Y', CURRENT_DATE) as MONTHYYYY_NO_SPJanuary2024
FORMAT_DATE('%B%E4Y', CURRENT_DATE) as MONTH2YYYY_NO_SPJanuary2024
FORMAT_DATE('%B%y', CURRENT_DATE) as MONTHYY_NO_SPJanuary24
FORMAT_DATE('%B%G', CURRENT_DATE) as MONTHIYYY_NO_SPJanuary2024
FORMAT_DATE('%B%g', CURRENT_DATE) as MONTHIY_NO_SPJanuary24
FORMAT_DATE('%b%Y', CURRENT_DATE) as MONYYYY_NO_SPJan2024
FORMAT_DATE('%b%E4Y', CURRENT_DATE) as MON2YYYY_NO_SPJan2024
FORMAT_DATE('%b%y', CURRENT_DATE) as MONYY_NO_SPJan24
FORMAT_DATE('%b%G', CURRENT_DATE) as MONIYYY_NO_SPJan2024
FORMAT_DATE('%b%g', CURRENT_DATE) as MONIY_NO_SPJan24
FORMAT_DATE('%h%Y', CURRENT_DATE) as MON2YYYY_NO_SPJan2024
FORMAT_DATE('%h%E4Y', CURRENT_DATE) as MON3YYYY_NO_SPJan2024
FORMAT_DATE('%h%y', CURRENT_DATE) as MON2YY_NO_SPJan24
FORMAT_DATE('%h%G', CURRENT_DATE) as MON2IYYY_NO_SPJan2024
FORMAT_DATE('%h%g', CURRENT_DATE) as MON2IY_NO_SPJan24
FORMAT_DATE('%m%d', CURRENT_DATE) as MM_DD_01_31_NO_SP0111
FORMAT_DATE('%m%e', CURRENT_DATE) as MM_D_1_31_NO_SP0111
FORMAT_DATE('%B%d', CURRENT_DATE) as MONTH_DD_01_31_NO_SPJanuary11
FORMAT_DATE('%B%e', CURRENT_DATE) as MONTH_D_1_31_NO_SPJanuary11
FORMAT_DATE('%b%d', CURRENT_DATE) as MON_DD_01_31_NO_SPJan11
FORMAT_DATE('%b%e', CURRENT_DATE) as MON_D_1_31_NO_SPJan11
FORMAT_DATE('%h%d', CURRENT_DATE) as MON2_DD_01_31_NO_SPJan11
FORMAT_DATE('%h%e', CURRENT_DATE) as MON2_D_1_31_NO_SPJan11
FORMAT_DATE('%d%m', CURRENT_DATE) as DD_01_31_MM_NO_SP1101
FORMAT_DATE('%e%m', CURRENT_DATE) as D_1_31_MM_NO_SP1101
FORMAT_DATE('%d%B', CURRENT_DATE) as DD_01_31_MONTH_NO_SP11January
FORMAT_DATE('%e%B', CURRENT_DATE) as D_1_31_MONTH_NO_SP11January
FORMAT_DATE('%d%b', CURRENT_DATE) as DD_01_31_MON_NO_SP11Jan
FORMAT_DATE('%e%b', CURRENT_DATE) as D_1_31_MON_NO_SP11Jan
FORMAT_DATE('%d%h', CURRENT_DATE) as DD_01_31_MON2_NO_SP11Jan
FORMAT_DATE('%e%h', CURRENT_DATE) as D_1_31_MON2_NO_SP11Jan
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 space2024-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 space2024-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 space24-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 space2024-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 space24-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 space2024-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 space2024-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 space2024-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 space2024-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 space2024-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 space2024-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 space24-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 space24-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 space24-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 space2024-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 space2024-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 space2024-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 space24-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 space24-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 space24-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 year2024-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 year2024-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 year2024-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 year2024-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 year24-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 year24-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 year2024-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 year2024-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 year24-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 year24-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 year2024-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 year2024-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 year2024-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 year2024-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 year2024-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 year2024-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 year2024-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 year2024-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 year2024-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 year2024-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 year2024-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 year2024-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 year24-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 year24-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 year24-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 year24-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 year24-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 year24-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 year2024-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 year2024-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 year2024-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 year2024-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 year2024-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 year2024-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 year24-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 year24-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 year24-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 year24-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 year24-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 year24-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 space2024/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 space2024/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 space24/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 space2024/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 space24/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 space2024/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 space2024/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 space2024/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 space2024/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 space2024/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 space2024/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 space24/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 space24/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 space24/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 space2024/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 space2024/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 space2024/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 space24/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 space24/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 space24/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 year2024/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 year2024/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 year2024/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 year2024/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 year24/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 year24/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 year2024/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 year2024/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 year24/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 year24/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 year2024/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 year2024/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 year2024/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 year2024/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 year2024/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 year2024/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 year2024/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 year2024/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 year2024/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 year2024/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 year2024/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 year2024/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 year24/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 year24/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 year24/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 year24/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 year24/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 year24/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 year2024/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 year2024/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 year2024/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 year2024/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 year2024/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 year2024/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 year24/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 year24/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 year24/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 year24/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 year24/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 year24/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 space2024: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 space2024: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 space24: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 space2024: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 space24: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 space2024: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 space2024: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 space2024: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 space2024: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 space2024: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 space2024: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 space24: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 space24: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 space24: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 space2024: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 space2024: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 space2024: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 space24: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 space24: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 space24: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 year2024: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 year2024: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 year2024: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 year2024: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 year24: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 year24: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 year2024: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 year2024: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 year24: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 year24: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 year2024: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 year2024: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 year2024: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 year2024: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 year2024: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 year2024: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 year2024: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 year2024: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 year2024: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 year2024: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 year2024: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 year2024: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 year24: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 year24: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 year24: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 year24: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 year24: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 year24: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 year2024: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 year2024: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 year2024: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 year2024: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 year2024: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 year2024: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 year24: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 year24: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 year24: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 year24: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 year24: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 year24: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 space2024.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 space2024.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 space24.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 space2024.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 space24.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 space2024.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 space2024.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 space2024.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 space2024.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 space2024.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 space2024.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 space24.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 space24.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 space24.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 space2024.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 space2024.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 space2024.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 space24.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 space24.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 space24.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 year2024.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 year2024.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 year2024.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 year2024.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 year24.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 year24.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 year2024.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 year2024.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 year24.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 year24.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 year2024.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 year2024.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 year2024.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 year2024.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 year2024.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 year2024.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 year2024.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 year2024.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 year2024.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 year2024.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 year2024.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 year2024.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 year24.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 year24.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 year24.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 year24.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 year24.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 year24.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 year2024.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 year2024.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 year2024.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 year2024.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 year2024.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 year2024.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 year24.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 year24.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 year24.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 year24.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 year24.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 year24.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 space2024 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 space2024 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 space24 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 space2024 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 space24 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 space2024 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 space2024 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 space2024 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 space2024 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 space2024 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 space2024 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 space24 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 space24 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 space24 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 space2024 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 space2024 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 space2024 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 space24 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 space24 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 space24 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 year2024 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 year2024 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 year2024 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 year2024 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 year24 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 year24 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 year2024 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 year2024 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 year24 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 year24 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 year2024 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 year2024 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 year2024 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 year2024 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 year2024 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 year2024 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 year2024 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 year2024 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 year2024 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 year2024 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 year2024 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 year2024 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 year24 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 year24 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 year24 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 year24 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 year24 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 year24 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 year2024 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 year2024 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 year2024 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 year2024 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 year2024 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 year2024 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 year24 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 year24 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 year24 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 year24 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 year24 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 year24 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 space20240111
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 space20240111
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 space240111
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 space20240111
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 space240111
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 space2024January11
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 space2024Jan11
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 space2024Jan11
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 space2024January11
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 space2024Jan11
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 space2024Jan11
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 space24January11
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 space24Jan11
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 space24Jan11
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 space2024January11
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 space2024Jan11
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 space2024Jan11
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 space24January11
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 space24Jan11
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 space24Jan11
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 year20240111 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 year20240111 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 year20240111 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 year20240111 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 year240111 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 year240111 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 year20240111 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 year20240111 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 year240111 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 year240111 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 year2024January11 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 year2024January11 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 year2024Jan11 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 year2024Jan11 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 year2024Jan11 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 year2024Jan11 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 year2024January11 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 year2024January11 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 year2024Jan11 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 year2024Jan11 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 year2024Jan11 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 year2024Jan11 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 year24January11 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 year24January11 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 year24Jan11 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 year24Jan11 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 year24Jan11 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 year24Jan11 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 year2024January11 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 year2024January11 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 year2024Jan11 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 year2024Jan11 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 year2024Jan11 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 year2024Jan11 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 year24January11 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 year24January11 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 year24Jan11 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 year24Jan11 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 year24Jan11 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 year24Jan11 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 week2024-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 week2024-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 week2024-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 week2024-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 week24-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 week24-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 week2024-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 week2024-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 week24-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 week24-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 week2024-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 week2024-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 week2024-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 week2024-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 week2024-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 week2024-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 week2024-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 week2024-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 week2024-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 week2024-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 week2024-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 week2024-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 week24-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 week24-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 week24-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 week24-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 week24-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 week24-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 week2024-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 week2024-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 week2024-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 week2024-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 week2024-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 week2024-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 week24-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 week24-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 week24-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 week24-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 week24-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 week24-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 week2024/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 week2024/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 week2024/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 week2024/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 week24/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 week24/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 week2024/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 week2024/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 week24/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 week24/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 week2024/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 week2024/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 week2024/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 week2024/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 week2024/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 week2024/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 week2024/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 week2024/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 week2024/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 week2024/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 week2024/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 week2024/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 week24/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 week24/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 week24/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 week24/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 week24/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 week24/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 week2024/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 week2024/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 week2024/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 week2024/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 week2024/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 week2024/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 week24/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 week24/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 week24/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 week24/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 week24/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 week24/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 week2024: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 week2024: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 week2024: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 week2024: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 week24: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 week24: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 week2024: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 week2024: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 week24: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 week24: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 week2024: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 week2024: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 week2024: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 week2024: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 week2024: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 week2024: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 week2024: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 week2024: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 week2024: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 week2024: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 week2024: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 week2024: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 week24: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 week24: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 week24: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 week24: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 week24: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 week24: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 week2024: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 week2024: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 week2024: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 week2024: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 week2024: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 week2024: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 week24: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 week24: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 week24: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 week24: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 week24: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 week24: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 week2024.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 week2024.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 week2024.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 week2024.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 week24.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 week24.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 week2024.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 week2024.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 week24.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 week24.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 week2024.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 week2024.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 week2024.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 week2024.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 week2024.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 week2024.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 week2024.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 week2024.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 week2024.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 week2024.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 week2024.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 week2024.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 week24.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 week24.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 week24.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 week24.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 week24.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 week24.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 week2024.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 week2024.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 week2024.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 week2024.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 week2024.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 week2024.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 week24.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 week24.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 week24.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 week24.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 week24.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 week24.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 week2024 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 week2024 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 week2024 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 week2024 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 week24 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 week24 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 week2024 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 week2024 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 week24 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 week24 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 week2024 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 week2024 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 week2024 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 week2024 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 week2024 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 week2024 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 week2024 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 week2024 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 week2024 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 week2024 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 week2024 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 week2024 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 week24 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 week24 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 week24 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 week24 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 week24 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 week24 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 week2024 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 week2024 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 week2024 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 week2024 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 week2024 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 week2024 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 week24 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 week24 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 week24 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 week24 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 week24 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 week24 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 week20240111 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 week20240111 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 week20240111 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 week20240111 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 week240111 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 week240111 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 week20240111 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 week20240111 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 week240111 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 week240111 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 week2024January11 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 week2024January11 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 week2024Jan11 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 week2024Jan11 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 week2024Jan11 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 week2024Jan11 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 week2024January11 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 week2024January11 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 week2024Jan11 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 week2024Jan11 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 week2024Jan11 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 week2024Jan11 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 week24January11 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 week24January11 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 week24Jan11 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 week24Jan11 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 week24Jan11 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 week24Jan11 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 week2024January11 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 week2024January11 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 week2024Jan11 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 week2024Jan11 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 week2024Jan11 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 week2024Jan11 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 week24January11 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 week24January11 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 week24Jan11 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 week24Jan11 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 week24Jan11 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 week24Jan11 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 abbreviated2024-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 abbreviated2024-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 abbreviated2024-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 abbreviated2024-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 abbreviated24-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 abbreviated24-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 abbreviated2024-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 abbreviated2024-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 abbreviated24-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 abbreviated24-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 abbreviated2024-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 abbreviated2024-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 abbreviated2024-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 abbreviated2024-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 abbreviated2024-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 abbreviated2024-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 abbreviated2024-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 abbreviated2024-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 abbreviated2024-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 abbreviated2024-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 abbreviated2024-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 abbreviated2024-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 abbreviated24-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 abbreviated24-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 abbreviated24-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 abbreviated24-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 abbreviated24-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 abbreviated24-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 abbreviated2024-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 abbreviated2024-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 abbreviated2024-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 abbreviated2024-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 abbreviated2024-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 abbreviated2024-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 abbreviated24-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 abbreviated24-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 abbreviated24-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 abbreviated24-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 abbreviated24-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 abbreviated24-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 abbreviated2024/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 abbreviated2024/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 abbreviated2024/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 abbreviated2024/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 abbreviated24/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 abbreviated24/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 abbreviated2024/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 abbreviated2024/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 abbreviated24/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 abbreviated24/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 abbreviated2024/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 abbreviated2024/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 abbreviated2024/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 abbreviated2024/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 abbreviated2024/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 abbreviated2024/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 abbreviated2024/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 abbreviated2024/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 abbreviated2024/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 abbreviated2024/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 abbreviated2024/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 abbreviated2024/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 abbreviated24/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 abbreviated24/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 abbreviated24/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 abbreviated24/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 abbreviated24/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 abbreviated24/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 abbreviated2024/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 abbreviated2024/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 abbreviated2024/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 abbreviated2024/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 abbreviated2024/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 abbreviated2024/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 abbreviated24/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 abbreviated24/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 abbreviated24/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 abbreviated24/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 abbreviated24/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 abbreviated24/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 abbreviated2024: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 abbreviated2024: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 abbreviated2024: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 abbreviated2024: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 abbreviated24: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 abbreviated24: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 abbreviated2024: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 abbreviated2024: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 abbreviated24: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 abbreviated24: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 abbreviated2024: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 abbreviated2024: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 abbreviated2024: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 abbreviated2024: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 abbreviated2024: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 abbreviated2024: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 abbreviated2024: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 abbreviated2024: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 abbreviated2024: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 abbreviated2024: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 abbreviated2024: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 abbreviated2024: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 abbreviated24: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 abbreviated24: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 abbreviated24: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 abbreviated24: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 abbreviated24: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 abbreviated24: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 abbreviated2024: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 abbreviated2024: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 abbreviated2024: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 abbreviated2024: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 abbreviated2024: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 abbreviated2024: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 abbreviated24: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 abbreviated24: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 abbreviated24: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 abbreviated24: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 abbreviated24: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 abbreviated24: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 abbreviated2024.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 abbreviated2024.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 abbreviated2024.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 abbreviated2024.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 abbreviated24.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 abbreviated24.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 abbreviated2024.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 abbreviated2024.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 abbreviated24.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 abbreviated24.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 abbreviated2024.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 abbreviated2024.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 abbreviated2024.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 abbreviated2024.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 abbreviated2024.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 abbreviated2024.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 abbreviated2024.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 abbreviated2024.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 abbreviated2024.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 abbreviated2024.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 abbreviated2024.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 abbreviated2024.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 abbreviated24.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 abbreviated24.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 abbreviated24.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 abbreviated24.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 abbreviated24.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 abbreviated24.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 abbreviated2024.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 abbreviated2024.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 abbreviated2024.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 abbreviated2024.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 abbreviated2024.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 abbreviated2024.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 abbreviated24.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 abbreviated24.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 abbreviated24.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 abbreviated24.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 abbreviated24.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 abbreviated24.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 abbreviated2024 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 abbreviated2024 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 abbreviated2024 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 abbreviated2024 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 abbreviated24 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 abbreviated24 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 abbreviated2024 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 abbreviated2024 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 abbreviated24 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 abbreviated24 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 abbreviated2024 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 abbreviated2024 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 abbreviated2024 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 abbreviated2024 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 abbreviated2024 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 abbreviated2024 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 abbreviated2024 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 abbreviated2024 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 abbreviated2024 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 abbreviated2024 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 abbreviated2024 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 abbreviated2024 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 abbreviated24 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 abbreviated24 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 abbreviated24 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 abbreviated24 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 abbreviated24 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 abbreviated24 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 abbreviated2024 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 abbreviated2024 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 abbreviated2024 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 abbreviated2024 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 abbreviated2024 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 abbreviated2024 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 abbreviated24 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 abbreviated24 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 abbreviated24 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 abbreviated24 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 abbreviated24 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 abbreviated24 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 abbreviated20240111 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 abbreviated20240111 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 abbreviated20240111 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 abbreviated20240111 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 abbreviated240111 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 abbreviated240111 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 abbreviated20240111 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 abbreviated20240111 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 abbreviated240111 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 abbreviated240111 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 abbreviated2024January11 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 abbreviated2024January11 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 abbreviated2024Jan11 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 abbreviated2024Jan11 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 abbreviated2024Jan11 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 abbreviated2024Jan11 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 abbreviated2024January11 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 abbreviated2024January11 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 abbreviated2024Jan11 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 abbreviated2024Jan11 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 abbreviated2024Jan11 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 abbreviated2024Jan11 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 abbreviated24January11 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 abbreviated24January11 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 abbreviated24Jan11 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 abbreviated24Jan11 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 abbreviated24Jan11 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 abbreviated24Jan11 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 abbreviated2024January11 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 abbreviated2024January11 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 abbreviated2024Jan11 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 abbreviated2024Jan11 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 abbreviated2024Jan11 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 abbreviated2024Jan11 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 abbreviated24January11 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 abbreviated24January11 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 abbreviated24Jan11 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 abbreviated24Jan11 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 abbreviated24Jan11 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 abbreviated24Jan11 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 quarter2024-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 quarter2024-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 quarter2024-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 quarter2024-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 quarter24-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 quarter24-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 quarter2024-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 quarter2024-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 quarter24-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 quarter24-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 quarter2024-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 quarter2024-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 quarter2024-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 quarter2024-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 quarter2024-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 quarter2024-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 quarter2024-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 quarter2024-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 quarter2024-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 quarter2024-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 quarter2024-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 quarter2024-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 quarter24-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 quarter24-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 quarter24-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 quarter24-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 quarter24-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 quarter24-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 quarter2024-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 quarter2024-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 quarter2024-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 quarter2024-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 quarter2024-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 quarter2024-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 quarter24-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 quarter24-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 quarter24-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 quarter24-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 quarter24-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 quarter24-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 quarter2024/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 quarter2024/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 quarter2024/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 quarter2024/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 quarter24/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 quarter24/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 quarter2024/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 quarter2024/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 quarter24/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 quarter24/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 quarter2024/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 quarter2024/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 quarter2024/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 quarter2024/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 quarter2024/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 quarter2024/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 quarter2024/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 quarter2024/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 quarter2024/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 quarter2024/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 quarter2024/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 quarter2024/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 quarter24/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 quarter24/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 quarter24/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 quarter24/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 quarter24/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 quarter24/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 quarter2024/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 quarter2024/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 quarter2024/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 quarter2024/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 quarter2024/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 quarter2024/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 quarter24/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 quarter24/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 quarter24/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 quarter24/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 quarter24/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 quarter24/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 quarter2024: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 quarter2024: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 quarter2024: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 quarter2024: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 quarter24: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 quarter24: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 quarter2024: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 quarter2024: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 quarter24: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 quarter24: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 quarter2024: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 quarter2024: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 quarter2024: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 quarter2024: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 quarter2024: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 quarter2024: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 quarter2024: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 quarter2024: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 quarter2024: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 quarter2024: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 quarter2024: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 quarter2024: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 quarter24: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 quarter24: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 quarter24: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 quarter24: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 quarter24: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 quarter24: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 quarter2024: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 quarter2024: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 quarter2024: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 quarter2024: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 quarter2024: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 quarter2024: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 quarter24: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 quarter24: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 quarter24: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 quarter24: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 quarter24: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 quarter24: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 quarter2024.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 quarter2024.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 quarter2024.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 quarter2024.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 quarter24.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 quarter24.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 quarter2024.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 quarter2024.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 quarter24.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 quarter24.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 quarter2024.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 quarter2024.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 quarter2024.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 quarter2024.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 quarter2024.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 quarter2024.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 quarter2024.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 quarter2024.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 quarter2024.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 quarter2024.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 quarter2024.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 quarter2024.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 quarter24.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 quarter24.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 quarter24.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 quarter24.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 quarter24.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 quarter24.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 quarter2024.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 quarter2024.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 quarter2024.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 quarter2024.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 quarter2024.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 quarter2024.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 quarter24.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 quarter24.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 quarter24.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 quarter24.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 quarter24.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 quarter24.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 quarter2024 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 quarter2024 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 quarter2024 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 quarter2024 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 quarter24 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 quarter24 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 quarter2024 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 quarter2024 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 quarter24 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 quarter24 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 quarter2024 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 quarter2024 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 quarter2024 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 quarter2024 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 quarter2024 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 quarter2024 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 quarter2024 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 quarter2024 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 quarter2024 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 quarter2024 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 quarter2024 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 quarter2024 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 quarter24 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 quarter24 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 quarter24 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 quarter24 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 quarter24 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 quarter24 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 quarter2024 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 quarter2024 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 quarter2024 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 quarter2024 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 quarter2024 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 quarter2024 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 quarter24 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 quarter24 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 quarter24 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 quarter24 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 quarter24 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 quarter24 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 quarter20240111 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 quarter20240111 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 quarter20240111 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 quarter20240111 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 quarter240111 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 quarter240111 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 quarter20240111 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 quarter20240111 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 quarter240111 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 quarter240111 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 quarter2024January11 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 quarter2024January11 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 quarter2024Jan11 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 quarter2024Jan11 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 quarter2024Jan11 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 quarter2024Jan11 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 quarter2024January11 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 quarter2024January11 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 quarter2024Jan11 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 quarter2024Jan11 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 quarter2024Jan11 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 quarter2024Jan11 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 quarter24January11 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 quarter24January11 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 quarter24Jan11 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 quarter24Jan11 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 quarter24Jan11 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 quarter24Jan11 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 quarter2024January11 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 quarter2024January11 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 quarter2024Jan11 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 quarter2024Jan11 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 quarter2024Jan11 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 quarter2024Jan11 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 quarter24January11 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 quarter24January11 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 quarter24Jan11 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 quarter24Jan11 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 quarter24Jan11 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 quarter24Jan11 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 year11-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 year11-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 year11-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 year11-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 year11-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 year11-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 year11-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 year11-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 year11-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 year11-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 year11-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 year11-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 year11-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 year11-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 year11-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 year11-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 year11-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 year11-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 year11-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 year11-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 year11/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 year11/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 year11/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 year11/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 year11/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 year11/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 year11/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 year11/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 year11/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 year11/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 year11/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 year11/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 year11/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 year11/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 year11/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 year11/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 year11/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 year11/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 year11/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 year11/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 year11: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 year11: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 year11: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 year11: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 year11: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 year11: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 year11: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 year11: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 year11: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 year11: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 year11: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 year11: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 year11: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 year11: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 year11: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 year11: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 year11: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 year11: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 year11: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 year11: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 year11.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 year11.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 year11.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 year11.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 year11.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 year11.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 year11.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 year11.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 year11.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 year11.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 year11.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 year11.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 year11.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 year11.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 year11.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 year11.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 year11.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 year11.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 year11.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 year11.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 year11 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 year11 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 year11 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 year11 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 year11 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 year11 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 year11 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 year11 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 year11 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 year11 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 year11 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 year11 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 year11 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 year11 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 year11 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 year11 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 year11 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 year11 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 year11 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 year11 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 year11012024 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 year11012024 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 year110124 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 year11012024 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 year110124 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 year11January2024 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 year11Jan2024 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 year11Jan2024 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 year11January2024 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 year11Jan2024 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 year11Jan2024 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 year11January24 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 year11Jan24 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 year11Jan24 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 year11January2024 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 year11Jan2024 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 year11Jan2024 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 year11January24 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 year11Jan24 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 year11Jan24 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 week11-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 week11-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 week11-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 week11-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 week11-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 week11-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 week11-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 week11-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 week11-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 week11-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 week11-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 week11-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 week11-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 week11-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 week11-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 week11-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 week11-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 week11-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 week11-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 week11-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 week11/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 week11/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 week11/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 week11/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 week11/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 week11/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 week11/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 week11/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 week11/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 week11/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 week11/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 week11/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 week11/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 week11/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 week11/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 week11/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 week11/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 week11/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 week11/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 week11/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 week11: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 week11: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 week11: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 week11: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 week11: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 week11: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 week11: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 week11: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 week11: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 week11: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 week11: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 week11: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 week11: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 week11: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 week11: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 week11: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 week11: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 week11: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 week11: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 week11: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 week11.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 week11.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 week11.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 week11.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 week11.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 week11.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 week11.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 week11.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 week11.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 week11.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 week11.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 week11.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 week11.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 week11.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 week11.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 week11.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 week11.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 week11.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 week11.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 week11.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 week11 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 week11 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 week11 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 week11 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 week11 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 week11 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 week11 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 week11 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 week11 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 week11 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 week11 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 week11 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 week11 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 week11 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 week11 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 week11 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 week11 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 week11 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 week11 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 week11 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 week11012024 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 week11012024 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 week110124 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 week11012024 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 week110124 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 week11January2024 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 week11Jan2024 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 week11Jan2024 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 week11January2024 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 week11Jan2024 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 week11Jan2024 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 week11January24 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 week11Jan24 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 week11Jan24 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 week11January2024 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 week11Jan2024 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 week11Jan2024 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 week11January24 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 week11Jan24 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 week11Jan24 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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11012024 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 abbreviated11012024 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 abbreviated110124 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 abbreviated11012024 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 abbreviated110124 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 abbreviated11January2024 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 abbreviated11Jan2024 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 abbreviated11Jan2024 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 abbreviated11January2024 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 abbreviated11Jan2024 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 abbreviated11Jan2024 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 abbreviated11January24 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 abbreviated11Jan24 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 abbreviated11Jan24 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 abbreviated11January2024 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 abbreviated11Jan2024 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 abbreviated11Jan2024 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 abbreviated11January24 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 abbreviated11Jan24 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 abbreviated11Jan24 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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11012024 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 quarter11012024 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 quarter110124 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 quarter11012024 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 quarter110124 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 quarter11January2024 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 quarter11Jan2024 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 quarter11Jan2024 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 quarter11January2024 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 quarter11Jan2024 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 quarter11Jan2024 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 quarter11January24 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 quarter11Jan24 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 quarter11Jan24 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 quarter11January2024 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 quarter11Jan2024 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 quarter11Jan2024 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 quarter11January24 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 quarter11Jan24 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 quarter11Jan24 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 year11-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 year11-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 year11-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 year11-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 year11-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 year11-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 year11-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 year11-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 year11-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 year11-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 year11-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 year11-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 year11-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 year11-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 year11-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 year11-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 year11-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 year11-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 year11-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 year11-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 year11/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 year11/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 year11/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 year11/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 year11/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 year11/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 year11/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 year11/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 year11/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 year11/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 year11/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 year11/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 year11/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 year11/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 year11/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 year11/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 year11/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 year11/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 year11/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 year11/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 year11: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 year11: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 year11: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 year11: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 year11: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 year11: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 year11: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 year11: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 year11: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 year11: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 year11: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 year11: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 year11: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 year11: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 year11: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 year11: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 year11: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 year11: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 year11: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 year11: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 year11.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 year11.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 year11.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 year11.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 year11.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 year11.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 year11.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 year11.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 year11.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 year11.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 year11.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 year11.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 year11.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 year11.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 year11.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 year11.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 year11.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 year11.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 year11.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 year11.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 year11 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 year11 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 year11 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 year11 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 year11 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 year11 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 year11 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 year11 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 year11 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 year11 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 year11 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 year11 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 year11 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 year11 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 year11 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 year11 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 year11 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 year11 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 year11 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 year11 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 year11012024 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 year11012024 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 year110124 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 year11012024 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 year110124 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 year11January2024 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 year11Jan2024 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 year11Jan2024 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 year11January2024 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 year11Jan2024 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 year11Jan2024 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 year11January24 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 year11Jan24 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 year11Jan24 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 year11January2024 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 year11Jan2024 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 year11Jan2024 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 year11January24 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 year11Jan24 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 year11Jan24 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 week11-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 week11-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 week11-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 week11-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 week11-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 week11-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 week11-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 week11-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 week11-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 week11-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 week11-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 week11-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 week11-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 week11-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 week11-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 week11-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 week11-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 week11-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 week11-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 week11-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 week11/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 week11/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 week11/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 week11/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 week11/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 week11/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 week11/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 week11/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 week11/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 week11/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 week11/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 week11/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 week11/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 week11/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 week11/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 week11/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 week11/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 week11/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 week11/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 week11/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 week11: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 week11: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 week11: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 week11: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 week11: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 week11: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 week11: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 week11: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 week11: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 week11: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 week11: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 week11: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 week11: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 week11: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 week11: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 week11: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 week11: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 week11: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 week11: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 week11: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 week11.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 week11.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 week11.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 week11.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 week11.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 week11.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 week11.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 week11.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 week11.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 week11.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 week11.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 week11.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 week11.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 week11.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 week11.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 week11.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 week11.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 week11.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 week11.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 week11.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 week11 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 week11 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 week11 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 week11 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 week11 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 week11 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 week11 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 week11 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 week11 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 week11 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 week11 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 week11 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 week11 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 week11 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 week11 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 week11 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 week11 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 week11 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 week11 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 week11 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 week11012024 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 week11012024 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 week110124 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 week11012024 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 week110124 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 week11January2024 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 week11Jan2024 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 week11Jan2024 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 week11January2024 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 week11Jan2024 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 week11Jan2024 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 week11January24 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 week11Jan24 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 week11Jan24 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 week11January2024 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 week11Jan2024 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 week11Jan2024 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 week11January24 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 week11Jan24 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 week11Jan24 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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11-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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11/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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11: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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11.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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11 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 abbreviated11012024 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 abbreviated11012024 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 abbreviated110124 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 abbreviated11012024 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 abbreviated110124 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 abbreviated11January2024 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 abbreviated11Jan2024 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 abbreviated11Jan2024 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 abbreviated11January2024 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 abbreviated11Jan2024 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 abbreviated11Jan2024 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 abbreviated11January24 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 abbreviated11Jan24 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 abbreviated11Jan24 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 abbreviated11January2024 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 abbreviated11Jan2024 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 abbreviated11Jan2024 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 abbreviated11January24 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 abbreviated11Jan24 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 abbreviated11Jan24 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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11-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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11/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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11: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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11.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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11 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 quarter11012024 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 quarter11012024 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 quarter110124 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 quarter11012024 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 quarter110124 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 quarter11January2024 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 quarter11Jan2024 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 quarter11Jan2024 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 quarter11January2024 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 quarter11Jan2024 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 quarter11Jan2024 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 quarter11January24 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 quarter11Jan24 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 quarter11Jan24 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 quarter11January2024 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 quarter11Jan2024 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 quarter11Jan2024 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 quarter11January24 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 quarter11Jan24 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 quarter11Jan24 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_DATE2024-12-31
FORMAT_DATE('%A', DATE '2024-12-31') AS FULL_WEEK_NAME -- The full weekday nameTuesday
FORMAT_DATE('%a', DATE '2024-12-31') AS ABB_WEEK_NAME -- The abbreviated weekday nameTue
FORMAT_DATE('%B', DATE '2024-12-31') AS FULL_MNTH_NAME -- The full month nameDecember
FORMAT_DATE('%b', DATE '2024-12-31') AS ABB_MNTH_NAME -- The abbreviated month nameDec
FORMAT_DATE('%h', DATE '2024-12-31') AS ABB_MNTH_NAME2 -- The abbreviated month nameDec
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/%y12/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 space31
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 number2025
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 format12/31/24
FORMAT_DATE('%Y', DATE '2024-12-31') AS YR_YYYY -- The year with century as a decimal number2024
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 PMpm
FORMAT_DATE('%Y-%m', DATE '2024-12-31') as YYYYMM2024-12
FORMAT_DATE('%E4Y-%m', DATE '2024-12-31') as YYYYMM22024-12
FORMAT_DATE('%y-%m', DATE '2024-12-31') as YYMM24-12
FORMAT_DATE('%G-%m', DATE '2024-12-31') as IYYYMM2025-12
FORMAT_DATE('%g-%m', DATE '2024-12-31') as IYMM25-12
FORMAT_DATE('%Y-%B', DATE '2024-12-31') as YYYYMONTH2024-December
FORMAT_DATE('%E4Y-%B', DATE '2024-12-31') as YYYYMONTH22024-December
FORMAT_DATE('%y-%B', DATE '2024-12-31') as YYMONTH24-December
FORMAT_DATE('%G-%B', DATE '2024-12-31') as IYYYMONTH2025-December
FORMAT_DATE('%g-%B', DATE '2024-12-31') as IYMONTH25-December
FORMAT_DATE('%Y-%b', DATE '2024-12-31') as YYYYMON2024-Dec
FORMAT_DATE('%E4Y-%b', DATE '2024-12-31') as YYYYMON22024-Dec
FORMAT_DATE('%y-%b', DATE '2024-12-31') as YYMON24-Dec
FORMAT_DATE('%G-%b', DATE '2024-12-31') as IYYYMON2025-Dec
FORMAT_DATE('%g-%b', DATE '2024-12-31') as IYMON25-Dec
FORMAT_DATE('%Y-%h', DATE '2024-12-31') as YYYYMON22024-Dec
FORMAT_DATE('%E4Y-%h', DATE '2024-12-31') as YYYYMON32024-Dec
FORMAT_DATE('%y-%h', DATE '2024-12-31') as YYMON224-Dec
FORMAT_DATE('%G-%h', DATE '2024-12-31') as IYYYMON22025-Dec
FORMAT_DATE('%g-%h', DATE '2024-12-31') as IYMON225-Dec
FORMAT_DATE('%m-%Y', DATE '2024-12-31') as MMYYYY12-2024
FORMAT_DATE('%m-%E4Y', DATE '2024-12-31') as MM2YYYY12-2024
FORMAT_DATE('%m-%y', DATE '2024-12-31') as MMYY12-24
FORMAT_DATE('%m-%G', DATE '2024-12-31') as MMIYYY12-2025
FORMAT_DATE('%m-%g', DATE '2024-12-31') as MMIY12-25
FORMAT_DATE('%B-%Y', DATE '2024-12-31') as MONTHYYYYDecember-2024
FORMAT_DATE('%B-%E4Y', DATE '2024-12-31') as MONTH2YYYYDecember-2024
FORMAT_DATE('%B%y', DATE '2024-12-31') as MONTHYYDecember24
FORMAT_DATE('%B-%G', DATE '2024-12-31') as MONTHIYYYDecember-2025
FORMAT_DATE('%B-%g', DATE '2024-12-31') as MONTHIYDecember-25
FORMAT_DATE('%b-%Y', DATE '2024-12-31') as MONYYYYDec-2024
FORMAT_DATE('%b-%E4Y', DATE '2024-12-31') as MON2YYYYDec-2024
FORMAT_DATE('%b-%y', DATE '2024-12-31') as MONYYDec-24
FORMAT_DATE('%b-%G', DATE '2024-12-31') as MONIYYYDec-2025
FORMAT_DATE('%b-%g', DATE '2024-12-31') as MONIYDec-25
FORMAT_DATE('%h-%Y', DATE '2024-12-31') as MON2YYYYDec-2024
FORMAT_DATE('%h-%E4Y', DATE '2024-12-31') as MON3YYYYDec-2024
FORMAT_DATE('%h-%y', DATE '2024-12-31') as MON2YYDec-24
FORMAT_DATE('%h-%G', DATE '2024-12-31') as MON2IYYYDec-2025
FORMAT_DATE('%h-%g', DATE '2024-12-31') as MON2IYDec-25
FORMAT_DATE('%m-%d', DATE '2024-12-31') as MM_DD_01_3112-31
FORMAT_DATE('%m-%e', DATE '2024-12-31') as MM_D_1_3112-31
FORMAT_DATE('%B-%d', DATE '2024-12-31') as MONTH_DD_01_31December-31
FORMAT_DATE('%B-%e', DATE '2024-12-31') as MONTH_D_1_31December-31
FORMAT_DATE('%b-%d', DATE '2024-12-31') as MON_DD_01_31Dec-31
FORMAT_DATE('%b-%e', DATE '2024-12-31') as MON_D_1_31Dec-31
FORMAT_DATE('%h-%d', DATE '2024-12-31') as MON2_DD_01_31Dec-31
FORMAT_DATE('%h-%e', DATE '2024-12-31') as MON2_D_1_31Dec-31
FORMAT_DATE('%d-%m', DATE '2024-12-31') as DD_01_31_MM31-12
FORMAT_DATE('%e-%m', DATE '2024-12-31') as D_1_31_MM31-12
FORMAT_DATE('%d-%B', DATE '2024-12-31') as DD_01_31_MONTH31-December
FORMAT_DATE('%e-%B', DATE '2024-12-31') as D_1_31_MONTH31-December
FORMAT_DATE('%d-%b', DATE '2024-12-31') as DD_01_31_MON31-Dec
FORMAT_DATE('%e-%b', DATE '2024-12-31') as D_1_31_MON31-Dec
FORMAT_DATE('%d-%h', DATE '2024-12-31') as DD_01_31_MON231-Dec
FORMAT_DATE('%e-%h', DATE '2024-12-31') as D_1_31_MON231-Dec
FORMAT_DATE('%Y/%m', DATE '2024-12-31') as YYYYMM_S2024/12
FORMAT_DATE('%E4Y/%m', DATE '2024-12-31') as YYYYMM2_S2024/12
FORMAT_DATE('%y/%m', DATE '2024-12-31') as YYMM_S24/12
FORMAT_DATE('%G/%m', DATE '2024-12-31') as IYYYMM_S2025/12
FORMAT_DATE('%g/%m', DATE '2024-12-31') as IYMM_S25/12
FORMAT_DATE('%Y/%B', DATE '2024-12-31') as YYYYMONTH_S2024/December
FORMAT_DATE('%E4Y/%B', DATE '2024-12-31') as YYYYMONTH2_S2024/December
FORMAT_DATE('%y/%B', DATE '2024-12-31') as YYMONTH_S24/December
FORMAT_DATE('%G/%B', DATE '2024-12-31') as IYYYMONTH_S2025/December
FORMAT_DATE('%g/%B', DATE '2024-12-31') as IYMONTH_S25/December
FORMAT_DATE('%Y/%b', DATE '2024-12-31') as YYYYMON_S2024/Dec
FORMAT_DATE('%E4Y/%b', DATE '2024-12-31') as YYYYMON2_S2024/Dec
FORMAT_DATE('%y/%b', DATE '2024-12-31') as YYMON_S24/Dec
FORMAT_DATE('%G/%b', DATE '2024-12-31') as IYYYMON_S2025/Dec
FORMAT_DATE('%g/%b', DATE '2024-12-31') as IYMON_S25/Dec
FORMAT_DATE('%Y/%h', DATE '2024-12-31') as YYYYMON2_S2024/Dec
FORMAT_DATE('%E4Y/%h', DATE '2024-12-31') as YYYYMON3_S2024/Dec
FORMAT_DATE('%y/%h', DATE '2024-12-31') as YYMON2_S24/Dec
FORMAT_DATE('%G/%h', DATE '2024-12-31') as IYYYMON2_S2025/Dec
FORMAT_DATE('%g/%h', DATE '2024-12-31') as IYMON2_S25/Dec
FORMAT_DATE('%m/%Y', DATE '2024-12-31') as MMYYYY_S12/2024
FORMAT_DATE('%m/%E4Y', DATE '2024-12-31') as MM2YYYY_S12/2024
FORMAT_DATE('%m/%y', DATE '2024-12-31') as MMYY_S12/24
FORMAT_DATE('%m/%G', DATE '2024-12-31') as MMIYYY_S12/2025
FORMAT_DATE('%m/%g', DATE '2024-12-31') as MMIY_S12/25
FORMAT_DATE('%B/%Y', DATE '2024-12-31') as MONTHYYYY_SDecember/2024
FORMAT_DATE('%B/%E4Y', DATE '2024-12-31') as MONTH2YYYY_SDecember/2024
FORMAT_DATE('%B%y', DATE '2024-12-31') as MONTHYY_SDecember24
FORMAT_DATE('%B/%G', DATE '2024-12-31') as MONTHIYYY_SDecember/2025
FORMAT_DATE('%B/%g', DATE '2024-12-31') as MONTHIY_SDecember/25
FORMAT_DATE('%b/%Y', DATE '2024-12-31') as MONYYYY_SDec/2024
FORMAT_DATE('%b/%E4Y', DATE '2024-12-31') as MON2YYYY_SDec/2024
FORMAT_DATE('%b/%y', DATE '2024-12-31') as MONYY_SDec/24
FORMAT_DATE('%b/%G', DATE '2024-12-31') as MONIYYY_SDec/2025
FORMAT_DATE('%b/%g', DATE '2024-12-31') as MONIY_SDec/25
FORMAT_DATE('%h/%Y', DATE '2024-12-31') as MON2YYYY_SDec/2024
FORMAT_DATE('%h/%E4Y', DATE '2024-12-31') as MON3YYYY_SDec/2024
FORMAT_DATE('%h/%y', DATE '2024-12-31') as MON2YY_SDec/24
FORMAT_DATE('%h/%G', DATE '2024-12-31') as MON2IYYY_SDec/2025
FORMAT_DATE('%h/%g', DATE '2024-12-31') as MON2IY_SDec/25
FORMAT_DATE('%m/%d', DATE '2024-12-31') as MM_DD_01_31_S12/31
FORMAT_DATE('%m/%e', DATE '2024-12-31') as MM_D_1_31_S12/31
FORMAT_DATE('%B/%d', DATE '2024-12-31') as MONTH_DD_01_31_SDecember/31
FORMAT_DATE('%B/%e', DATE '2024-12-31') as MONTH_D_1_31_SDecember/31
FORMAT_DATE('%b/%d', DATE '2024-12-31') as MON_DD_01_31_SDec/31
FORMAT_DATE('%b/%e', DATE '2024-12-31') as MON_D_1_31_SDec/31
FORMAT_DATE('%h/%d', DATE '2024-12-31') as MON2_DD_01_31_SDec/31
FORMAT_DATE('%h/%e', DATE '2024-12-31') as MON2_D_1_31_SDec/31
FORMAT_DATE('%d/%m', DATE '2024-12-31') as DD_01_31_MM_S31/12
FORMAT_DATE('%e/%m', DATE '2024-12-31') as D_1_31_MM_S31/12
FORMAT_DATE('%d/%B', DATE '2024-12-31') as DD_01_31_MONTH_S31/December
FORMAT_DATE('%e/%B', DATE '2024-12-31') as D_1_31_MONTH_S31/December
FORMAT_DATE('%d/%b', DATE '2024-12-31') as DD_01_31_MON_S31/Dec
FORMAT_DATE('%e/%b', DATE '2024-12-31') as D_1_31_MON_S31/Dec
FORMAT_DATE('%d/%h', DATE '2024-12-31') as DD_01_31_MON2_S31/Dec
FORMAT_DATE('%e/%h', DATE '2024-12-31') as D_1_31_MON2_S31/Dec
FORMAT_DATE('%Y:%m', DATE '2024-12-31') as YYYYMM_C2024:12
FORMAT_DATE('%E4Y:%m', DATE '2024-12-31') as YYYYMM2_C2024:12
FORMAT_DATE('%y:%m', DATE '2024-12-31') as YYMM_C24:12
FORMAT_DATE('%G:%m', DATE '2024-12-31') as IYYYMM_C2025:12
FORMAT_DATE('%g:%m', DATE '2024-12-31') as IYMM_C25:12
FORMAT_DATE('%Y:%B', DATE '2024-12-31') as YYYYMONTH_C2024:December
FORMAT_DATE('%E4Y:%B', DATE '2024-12-31') as YYYYMONTH2_C2024:December
FORMAT_DATE('%y:%B', DATE '2024-12-31') as YYMONTH_C24:December
FORMAT_DATE('%G:%B', DATE '2024-12-31') as IYYYMONTH_C2025:December
FORMAT_DATE('%g:%B', DATE '2024-12-31') as IYMONTH_C25:December
FORMAT_DATE('%Y:%b', DATE '2024-12-31') as YYYYMON_C2024:Dec
FORMAT_DATE('%E4Y:%b', DATE '2024-12-31') as YYYYMON2_C2024:Dec
FORMAT_DATE('%y:%b', DATE '2024-12-31') as YYMON_C24:Dec
FORMAT_DATE('%G:%b', DATE '2024-12-31') as IYYYMON_C2025:Dec
FORMAT_DATE('%g:%b', DATE '2024-12-31') as IYMON_C25:Dec
FORMAT_DATE('%Y:%h', DATE '2024-12-31') as YYYYMON2_C2024:Dec
FORMAT_DATE('%E4Y:%h', DATE '2024-12-31') as YYYYMON3_C2024:Dec
FORMAT_DATE('%y:%h', DATE '2024-12-31') as YYMON2_C24:Dec
FORMAT_DATE('%G:%h', DATE '2024-12-31') as IYYYMON2_C2025:Dec
FORMAT_DATE('%g:%h', DATE '2024-12-31') as IYMON2_C25:Dec
FORMAT_DATE('%m:%Y', DATE '2024-12-31') as MMYYYY_C12:2024
FORMAT_DATE('%m:%E4Y', DATE '2024-12-31') as MM2YYYY_C12:2024
FORMAT_DATE('%m:%y', DATE '2024-12-31') as MMYY_C12:24
FORMAT_DATE('%m:%G', DATE '2024-12-31') as MMIYYY_C12:2025
FORMAT_DATE('%m:%g', DATE '2024-12-31') as MMIY_C12:25
FORMAT_DATE('%B:%Y', DATE '2024-12-31') as MONTHYYYY_CDecember:2024
FORMAT_DATE('%B:%E4Y', DATE '2024-12-31') as MONTH2YYYY_CDecember:2024
FORMAT_DATE('%B%y', DATE '2024-12-31') as MONTHYY_CDecember24
FORMAT_DATE('%B:%G', DATE '2024-12-31') as MONTHIYYY_CDecember:2025
FORMAT_DATE('%B:%g', DATE '2024-12-31') as MONTHIY_CDecember:25
FORMAT_DATE('%b:%Y', DATE '2024-12-31') as MONYYYY_CDec:2024
FORMAT_DATE('%b:%E4Y', DATE '2024-12-31') as MON2YYYY_CDec:2024
FORMAT_DATE('%b:%y', DATE '2024-12-31') as MONYY_CDec:24
FORMAT_DATE('%b:%G', DATE '2024-12-31') as MONIYYY_CDec:2025
FORMAT_DATE('%b:%g', DATE '2024-12-31') as MONIY_CDec:25
FORMAT_DATE('%h:%Y', DATE '2024-12-31') as MON2YYYY_CDec:2024
FORMAT_DATE('%h:%E4Y', DATE '2024-12-31') as MON3YYYY_CDec:2024
FORMAT_DATE('%h:%y', DATE '2024-12-31') as MON2YY_CDec:24
FORMAT_DATE('%h:%G', DATE '2024-12-31') as MON2IYYY_CDec:2025
FORMAT_DATE('%h:%g', DATE '2024-12-31') as MON2IY_CDec:25
FORMAT_DATE('%m:%d', DATE '2024-12-31') as MM_DD_01_31_C12:31
FORMAT_DATE('%m:%e', DATE '2024-12-31') as MM_D_1_31_C12:31
FORMAT_DATE('%B:%d', DATE '2024-12-31') as MONTH_DD_01_31_CDecember:31
FORMAT_DATE('%B:%e', DATE '2024-12-31') as MONTH_D_1_31_CDecember:31
FORMAT_DATE('%b:%d', DATE '2024-12-31') as MON_DD_01_31_CDec:31
FORMAT_DATE('%b:%e', DATE '2024-12-31') as MON_D_1_31_CDec:31
FORMAT_DATE('%h:%d', DATE '2024-12-31') as MON2_DD_01_31_CDec:31
FORMAT_DATE('%h:%e', DATE '2024-12-31') as MON2_D_1_31_CDec:31
FORMAT_DATE('%d:%m', DATE '2024-12-31') as DD_01_31_MM_C31:12
FORMAT_DATE('%e:%m', DATE '2024-12-31') as D_1_31_MM_C31:12
FORMAT_DATE('%d:%B', DATE '2024-12-31') as DD_01_31_MONTH_C31:December
FORMAT_DATE('%e:%B', DATE '2024-12-31') as D_1_31_MONTH_C31:December
FORMAT_DATE('%d:%b', DATE '2024-12-31') as DD_01_31_MON_C31:Dec
FORMAT_DATE('%e:%b', DATE '2024-12-31') as D_1_31_MON_C31:Dec
FORMAT_DATE('%d:%h', DATE '2024-12-31') as DD_01_31_MON2_C31:Dec
FORMAT_DATE('%e:%h', DATE '2024-12-31') as D_1_31_MON2_C31:Dec
FORMAT_DATE('%Y.%m', DATE '2024-12-31') as YYYYMM_P2024.12
FORMAT_DATE('%E4Y.%m', DATE '2024-12-31') as YYYYMM2_P2024.12
FORMAT_DATE('%y.%m', DATE '2024-12-31') as YYMM_P24.12
FORMAT_DATE('%G.%m', DATE '2024-12-31') as IYYYMM_P2025.12
FORMAT_DATE('%g.%m', DATE '2024-12-31') as IYMM_P25.12
FORMAT_DATE('%Y.%B', DATE '2024-12-31') as YYYYMONTH_P2024.December
FORMAT_DATE('%E4Y.%B', DATE '2024-12-31') as YYYYMONTH2_P2024.December
FORMAT_DATE('%y.%B', DATE '2024-12-31') as YYMONTH_P24.December
FORMAT_DATE('%G.%B', DATE '2024-12-31') as IYYYMONTH_P2025.December
FORMAT_DATE('%g.%B', DATE '2024-12-31') as IYMONTH_P25.December
FORMAT_DATE('%Y.%b', DATE '2024-12-31') as YYYYMON_P2024.Dec
FORMAT_DATE('%E4Y.%b', DATE '2024-12-31') as YYYYMON2_P2024.Dec
FORMAT_DATE('%y.%b', DATE '2024-12-31') as YYMON_P24.Dec
FORMAT_DATE('%G.%b', DATE '2024-12-31') as IYYYMON_P2025.Dec
FORMAT_DATE('%g.%b', DATE '2024-12-31') as IYMON_P25.Dec
FORMAT_DATE('%Y.%h', DATE '2024-12-31') as YYYYMON2_P2024.Dec
FORMAT_DATE('%E4Y.%h', DATE '2024-12-31') as YYYYMON3_P2024.Dec
FORMAT_DATE('%y.%h', DATE '2024-12-31') as YYMON2_P24.Dec
FORMAT_DATE('%G.%h', DATE '2024-12-31') as IYYYMON2_P2025.Dec
FORMAT_DATE('%g.%h', DATE '2024-12-31') as IYMON2_P25.Dec
FORMAT_DATE('%m.%Y', DATE '2024-12-31') as MMYYYY_P12.2024
FORMAT_DATE('%m.%E4Y', DATE '2024-12-31') as MM2YYYY_P12.2024
FORMAT_DATE('%m.%y', DATE '2024-12-31') as MMYY_P12.24
FORMAT_DATE('%m.%G', DATE '2024-12-31') as MMIYYY_P12.2025
FORMAT_DATE('%m.%g', DATE '2024-12-31') as MMIY_P12.25
FORMAT_DATE('%B.%Y', DATE '2024-12-31') as MONTHYYYY_PDecember.2024
FORMAT_DATE('%B.%E4Y', DATE '2024-12-31') as MONTH2YYYY_PDecember.2024
FORMAT_DATE('%B%y', DATE '2024-12-31') as MONTHYY_PDecember24
FORMAT_DATE('%B.%G', DATE '2024-12-31') as MONTHIYYY_PDecember.2025
FORMAT_DATE('%B.%g', DATE '2024-12-31') as MONTHIY_PDecember.25
FORMAT_DATE('%b.%Y', DATE '2024-12-31') as MONYYYY_PDec.2024
FORMAT_DATE('%b.%E4Y', DATE '2024-12-31') as MON2YYYY_PDec.2024
FORMAT_DATE('%b.%y', DATE '2024-12-31') as MONYY_PDec.24
FORMAT_DATE('%b.%G', DATE '2024-12-31') as MONIYYY_PDec.2025
FORMAT_DATE('%b.%g', DATE '2024-12-31') as MONIY_PDec.25
FORMAT_DATE('%h.%Y', DATE '2024-12-31') as MON2YYYY_PDec.2024
FORMAT_DATE('%h.%E4Y', DATE '2024-12-31') as MON3YYYY_PDec.2024
FORMAT_DATE('%h.%y', DATE '2024-12-31') as MON2YY_PDec.24
FORMAT_DATE('%h.%G', DATE '2024-12-31') as MON2IYYY_PDec.2025
FORMAT_DATE('%h.%g', DATE '2024-12-31') as MON2IY_PDec.25
FORMAT_DATE('%m.%d', DATE '2024-12-31') as MM_DD_01_31_P12.31
FORMAT_DATE('%m.%e', DATE '2024-12-31') as MM_D_1_31_P12.31
FORMAT_DATE('%B.%d', DATE '2024-12-31') as MONTH_DD_01_31_PDecember.31
FORMAT_DATE('%B.%e', DATE '2024-12-31') as MONTH_D_1_31_PDecember.31
FORMAT_DATE('%b.%d', DATE '2024-12-31') as MON_DD_01_31_PDec.31
FORMAT_DATE('%b.%e', DATE '2024-12-31') as MON_D_1_31_PDec.31
FORMAT_DATE('%h.%d', DATE '2024-12-31') as MON2_DD_01_31_PDec.31
FORMAT_DATE('%h.%e', DATE '2024-12-31') as MON2_D_1_31_PDec.31
FORMAT_DATE('%d.%m', DATE '2024-12-31') as DD_01_31_MM_P31.12
FORMAT_DATE('%e.%m', DATE '2024-12-31') as D_1_31_MM_P31.12
FORMAT_DATE('%d.%B', DATE '2024-12-31') as DD_01_31_MONTH_P31.December
FORMAT_DATE('%e.%B', DATE '2024-12-31') as D_1_31_MONTH_P31.December
FORMAT_DATE('%d.%b', DATE '2024-12-31') as DD_01_31_MON_P31.Dec
FORMAT_DATE('%e.%b', DATE '2024-12-31') as D_1_31_MON_P31.Dec
FORMAT_DATE('%d.%h', DATE '2024-12-31') as DD_01_31_MON2_P31.Dec
FORMAT_DATE('%e.%h', DATE '2024-12-31') as D_1_31_MON2_P31.Dec
FORMAT_DATE('%Y %m', DATE '2024-12-31') as YYYYMM_SP2024 12
FORMAT_DATE('%E4Y %m', DATE '2024-12-31') as YYYYMM2_SP2024 12
FORMAT_DATE('%y %m', DATE '2024-12-31') as YYMM_SP24 12
FORMAT_DATE('%G %m', DATE '2024-12-31') as IYYYMM_SP2025 12
FORMAT_DATE('%g %m', DATE '2024-12-31') as IYMM_SP25 12
FORMAT_DATE('%Y %B', DATE '2024-12-31') as YYYYMONTH_SP2024 December
FORMAT_DATE('%E4Y %B', DATE '2024-12-31') as YYYYMONTH2_SP2024 December
FORMAT_DATE('%y %B', DATE '2024-12-31') as YYMONTH_SP24 December
FORMAT_DATE('%G %B', DATE '2024-12-31') as IYYYMONTH_SP2025 December
FORMAT_DATE('%g %B', DATE '2024-12-31') as IYMONTH_SP25 December
FORMAT_DATE('%Y %b', DATE '2024-12-31') as YYYYMON_SP2024 Dec
FORMAT_DATE('%E4Y %b', DATE '2024-12-31') as YYYYMON2_SP2024 Dec
FORMAT_DATE('%y %b', DATE '2024-12-31') as YYMON_SP24 Dec
FORMAT_DATE('%G %b', DATE '2024-12-31') as IYYYMON_SP2025 Dec
FORMAT_DATE('%g %b', DATE '2024-12-31') as IYMON_SP25 Dec
FORMAT_DATE('%Y %h', DATE '2024-12-31') as YYYYMON2_SP2024 Dec
FORMAT_DATE('%E4Y %h', DATE '2024-12-31') as YYYYMON3_SP2024 Dec
FORMAT_DATE('%y %h', DATE '2024-12-31') as YYMON2_SP24 Dec
FORMAT_DATE('%G %h', DATE '2024-12-31') as IYYYMON2_SP2025 Dec
FORMAT_DATE('%g %h', DATE '2024-12-31') as IYMON2_SP25 Dec
FORMAT_DATE('%m %Y', DATE '2024-12-31') as MMYYYY_SP12 2024
FORMAT_DATE('%m %E4Y', DATE '2024-12-31') as MM2YYYY_SP12 2024
FORMAT_DATE('%m %y', DATE '2024-12-31') as MMYY_SP12 24
FORMAT_DATE('%m %G', DATE '2024-12-31') as MMIYYY_SP12 2025
FORMAT_DATE('%m %g', DATE '2024-12-31') as MMIY_SP12 25
FORMAT_DATE('%B %Y', DATE '2024-12-31') as MONTHYYYY_SPDecember 2024
FORMAT_DATE('%B %E4Y', DATE '2024-12-31') as MONTH2YYYY_SPDecember 2024
FORMAT_DATE('%B %y', DATE '2024-12-31') as MONTHYY_SPDecember 24
FORMAT_DATE('%B %G', DATE '2024-12-31') as MONTHIYYY_SPDecember 2025
FORMAT_DATE('%B %g', DATE '2024-12-31') as MONTHIY_SPDecember 25
FORMAT_DATE('%b %Y', DATE '2024-12-31') as MONYYYY_SPDec 2024
FORMAT_DATE('%b %E4Y', DATE '2024-12-31') as MON2YYYY_SPDec 2024
FORMAT_DATE('%b %y', DATE '2024-12-31') as MONYY_SPDec 24
FORMAT_DATE('%b %G', DATE '2024-12-31') as MONIYYY_SPDec 2025
FORMAT_DATE('%b %g', DATE '2024-12-31') as MONIY_SPDec 25
FORMAT_DATE('%h %Y', DATE '2024-12-31') as MON2YYYY_SPDec 2024
FORMAT_DATE('%h %E4Y', DATE '2024-12-31') as MON3YYYY_SPDec 2024
FORMAT_DATE('%h %y', DATE '2024-12-31') as MON2YY_SPDec 24
FORMAT_DATE('%h %G', DATE '2024-12-31') as MON2IYYY_SPDec 2025
FORMAT_DATE('%h %g', DATE '2024-12-31') as MON2IY_SPDec 25
FORMAT_DATE('%m %d', DATE '2024-12-31') as MM_DD_01_31_SP12 31
FORMAT_DATE('%m %e', DATE '2024-12-31') as MM_D_1_31_SP12 31
FORMAT_DATE('%B %d', DATE '2024-12-31') as MONTH_DD_01_31_SPDecember 31
FORMAT_DATE('%B %e', DATE '2024-12-31') as MONTH_D_1_31_SPDecember 31
FORMAT_DATE('%b %d', DATE '2024-12-31') as MON_DD_01_31_SPDec 31
FORMAT_DATE('%b %e', DATE '2024-12-31') as MON_D_1_31_SPDec 31
FORMAT_DATE('%h %d', DATE '2024-12-31') as MON2_DD_01_31_SPDec 31
FORMAT_DATE('%h %e', DATE '2024-12-31') as MON2_D_1_31_SPDec 31
FORMAT_DATE('%d %m', DATE '2024-12-31') as DD_01_31_MM_SP31 12
FORMAT_DATE('%e %m', DATE '2024-12-31') as D_1_31_MM_SP31 12
FORMAT_DATE('%d %B', DATE '2024-12-31') as DD_01_31_MONTH_SP31 December
FORMAT_DATE('%e %B', DATE '2024-12-31') as D_1_31_MONTH_SP31 December
FORMAT_DATE('%d %b', DATE '2024-12-31') as DD_01_31_MON_SP31 Dec
FORMAT_DATE('%e %b', DATE '2024-12-31') as D_1_31_MON_SP31 Dec
FORMAT_DATE('%d %h', DATE '2024-12-31') as DD_01_31_MON2_SP31 Dec
FORMAT_DATE('%e %h', DATE '2024-12-31') as D_1_31_MON2_SP31 Dec
FORMAT_DATE('%Y%m', DATE '2024-12-31') as YYYYMM_NO_SP202412
FORMAT_DATE('%E4Y%m', DATE '2024-12-31') as YYYYMM2_NO_SP202412
FORMAT_DATE('%y%m', DATE '2024-12-31') as YYMM_NO_SP2412
FORMAT_DATE('%G%m', DATE '2024-12-31') as IYYYMM_NO_SP202512
FORMAT_DATE('%g%m', DATE '2024-12-31') as IYMM_NO_SP2512
FORMAT_DATE('%Y%B', DATE '2024-12-31') as YYYYMONTH_NO_SP2024December
FORMAT_DATE('%E4Y%B', DATE '2024-12-31') as YYYYMONTH2_NO_SP2024December
FORMAT_DATE('%y%B', DATE '2024-12-31') as YYMONTH_NO_SP24December
FORMAT_DATE('%G%B', DATE '2024-12-31') as IYYYMONTH_NO_SP2025December
FORMAT_DATE('%g%B', DATE '2024-12-31') as IYMONTH_NO_SP25December
FORMAT_DATE('%Y%b', DATE '2024-12-31') as YYYYMON_NO_SP2024Dec
FORMAT_DATE('%E4Y%b', DATE '2024-12-31') as YYYYMON2_NO_SP2024Dec
FORMAT_DATE('%y%b', DATE '2024-12-31') as YYMON_NO_SP24Dec
FORMAT_DATE('%G%b', DATE '2024-12-31') as IYYYMON_NO_SP2025Dec
FORMAT_DATE('%g%b', DATE '2024-12-31') as IYMON_NO_SP25Dec
FORMAT_DATE('%Y%h', DATE '2024-12-31') as YYYYMON2_NO_SP2024Dec
FORMAT_DATE('%E4Y%h', DATE '2024-12-31') as YYYYMON3_NO_SP2024Dec
FORMAT_DATE('%y%h', DATE '2024-12-31') as YYMON2_NO_SP24Dec
FORMAT_DATE('%G%h', DATE '2024-12-31') as IYYYMON2_NO_SP2025Dec
FORMAT_DATE('%g%h', DATE '2024-12-31') as IYMON2_NO_SP25Dec
FORMAT_DATE('%m%Y', DATE '2024-12-31') as MMYYYY_NO_SP122024
FORMAT_DATE('%m%E4Y', DATE '2024-12-31') as MM2YYYY_NO_SP122024
FORMAT_DATE('%m%y', DATE '2024-12-31') as MMYY_NO_SP1224
FORMAT_DATE('%m%G', DATE '2024-12-31') as MMIYYY_NO_SP122025
FORMAT_DATE('%m%g', DATE '2024-12-31') as MMIY_NO_SP1225
FORMAT_DATE('%B%Y', DATE '2024-12-31') as MONTHYYYY_NO_SPDecember2024
FORMAT_DATE('%B%E4Y', DATE '2024-12-31') as MONTH2YYYY_NO_SPDecember2024
FORMAT_DATE('%B%y', DATE '2024-12-31') as MONTHYY_NO_SPDecember24
FORMAT_DATE('%B%G', DATE '2024-12-31') as MONTHIYYY_NO_SPDecember2025
FORMAT_DATE('%B%g', DATE '2024-12-31') as MONTHIY_NO_SPDecember25
FORMAT_DATE('%b%Y', DATE '2024-12-31') as MONYYYY_NO_SPDec2024
FORMAT_DATE('%b%E4Y', DATE '2024-12-31') as MON2YYYY_NO_SPDec2024
FORMAT_DATE('%b%y', DATE '2024-12-31') as MONYY_NO_SPDec24
FORMAT_DATE('%b%G', DATE '2024-12-31') as MONIYYY_NO_SPDec2025
FORMAT_DATE('%b%g', DATE '2024-12-31') as MONIY_NO_SPDec25
FORMAT_DATE('%h%Y', DATE '2024-12-31') as MON2YYYY_NO_SPDec2024
FORMAT_DATE('%h%E4Y', DATE '2024-12-31') as MON3YYYY_NO_SPDec2024
FORMAT_DATE('%h%y', DATE '2024-12-31') as MON2YY_NO_SPDec24
FORMAT_DATE('%h%G', DATE '2024-12-31') as MON2IYYY_NO_SPDec2025
FORMAT_DATE('%h%g', DATE '2024-12-31') as MON2IY_NO_SPDec25
FORMAT_DATE('%m%d', DATE '2024-12-31') as MM_DD_01_31_NO_SP1231
FORMAT_DATE('%m%e', DATE '2024-12-31') as MM_D_1_31_NO_SP1231
FORMAT_DATE('%B%d', DATE '2024-12-31') as MONTH_DD_01_31_NO_SPDecember31
FORMAT_DATE('%B%e', DATE '2024-12-31') as MONTH_D_1_31_NO_SPDecember31
FORMAT_DATE('%b%d', DATE '2024-12-31') as MON_DD_01_31_NO_SPDec31
FORMAT_DATE('%b%e', DATE '2024-12-31') as MON_D_1_31_NO_SPDec31
FORMAT_DATE('%h%d', DATE '2024-12-31') as MON2_DD_01_31_NO_SPDec31
FORMAT_DATE('%h%e', DATE '2024-12-31') as MON2_D_1_31_NO_SPDec31
FORMAT_DATE('%d%m', DATE '2024-12-31') as DD_01_31_MM_NO_SP3112
FORMAT_DATE('%e%m', DATE '2024-12-31') as D_1_31_MM_NO_SP3112
FORMAT_DATE('%d%B', DATE '2024-12-31') as DD_01_31_MONTH_NO_SP31December
FORMAT_DATE('%e%B', DATE '2024-12-31') as D_1_31_MONTH_NO_SP31December
FORMAT_DATE('%d%b', DATE '2024-12-31') as DD_01_31_MON_NO_SP31Dec
FORMAT_DATE('%e%b', DATE '2024-12-31') as D_1_31_MON_NO_SP31Dec
FORMAT_DATE('%d%h', DATE '2024-12-31') as DD_01_31_MON2_NO_SP31Dec
FORMAT_DATE('%e%h', DATE '2024-12-31') as D_1_31_MON2_NO_SP31Dec
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 space2024-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 space2024-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 space24-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 space2025-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 space25-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 space2024-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 space2024-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 space2024-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 space2024-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 space2024-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 space2024-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 space24-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 space24-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 space24-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 space2025-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 space2025-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 space2025-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 space25-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 space25-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 space25-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 year2024-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 year2024-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 year2024-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 year2024-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 year24-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 year24-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 year2025-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 year2025-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 year25-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 year25-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 year2024-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 year2024-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 year2024-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 year2024-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 year2024-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 year2024-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 year2024-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 year2024-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 year2024-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 year2024-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 year2024-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 year2024-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 year24-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 year24-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 year24-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 year24-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 year24-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 year24-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 year2025-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 year2025-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 year2025-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 year2025-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 year2025-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 year2025-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 year25-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 year25-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 year25-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 year25-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 year25-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 year25-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 space2024/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 space2024/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 space24/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 space2025/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 space25/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 space2024/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 space2024/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 space2024/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 space2024/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 space2024/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 space2024/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 space24/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 space24/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 space24/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 space2025/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 space2025/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 space2025/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 space25/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 space25/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 space25/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 year2024/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 year2024/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 year2024/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 year2024/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 year24/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 year24/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 year2025/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 year2025/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 year25/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 year25/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 year2024/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 year2024/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 year2024/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 year2024/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 year2024/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 year2024/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 year2024/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 year2024/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 year2024/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 year2024/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 year2024/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 year2024/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 year24/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 year24/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 year24/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 year24/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 year24/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 year24/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 year2025/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 year2025/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 year2025/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 year2025/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 year2025/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 year2025/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 year25/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 year25/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 year25/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 year25/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 year25/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 year25/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 space2024: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 space2024: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 space24: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 space2025: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 space25: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 space2024: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 space2024: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 space2024: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 space2024: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 space2024: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 space2024: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 space24: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 space24: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 space24: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 space2025: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 space2025: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 space2025: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 space25: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 space25: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 space25: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 year2024: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 year2024: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 year2024: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 year2024: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 year24: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 year24: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 year2025: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 year2025: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 year25: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 year25: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 year2024: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 year2024: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 year2024: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 year2024: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 year2024: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 year2024: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 year2024: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 year2024: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 year2024: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 year2024: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 year2024: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 year2024: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 year24: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 year24: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 year24: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 year24: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 year24: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 year24: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 year2025: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 year2025: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 year2025: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 year2025: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 year2025: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 year2025: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 year25: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 year25: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 year25: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 year25: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 year25: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 year25: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 space2024.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 space2024.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 space24.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 space2025.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 space25.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 space2024.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 space2024.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 space2024.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 space2024.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 space2024.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 space2024.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 space24.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 space24.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 space24.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 space2025.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 space2025.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 space2025.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 space25.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 space25.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 space25.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 year2024.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 year2024.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 year2024.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 year2024.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 year24.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 year24.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 year2025.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 year2025.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 year25.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 year25.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 year2024.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 year2024.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 year2024.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 year2024.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 year2024.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 year2024.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 year2024.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 year2024.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 year2024.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 year2024.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 year2024.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 year2024.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 year24.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 year24.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 year24.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 year24.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 year24.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 year24.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 year2025.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 year2025.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 year2025.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 year2025.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 year2025.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 year2025.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 year25.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 year25.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 year25.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 year25.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 year25.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 year25.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 space2024 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 space2024 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 space24 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 space2025 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 space25 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 space2024 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 space2024 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 space2024 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 space2024 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 space2024 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 space2024 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 space24 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 space24 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 space24 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 space2025 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 space2025 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 space2025 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 space25 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 space25 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 space25 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 year2024 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 year2024 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 year2024 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 year2024 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 year24 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 year24 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 year2025 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 year2025 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 year25 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 year25 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 year2024 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 year2024 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 year2024 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 year2024 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 year2024 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 year2024 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 year2024 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 year2024 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 year2024 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 year2024 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 year2024 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 year2024 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 year24 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 year24 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 year24 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 year24 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 year24 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 year24 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 year2025 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 year2025 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 year2025 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 year2025 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 year2025 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 year2025 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 year25 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 year25 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 year25 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 year25 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 year25 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 year25 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 space20241231
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 space20241231
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 space241231
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 space20251231
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 space251231
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 space2024December31
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 space2024Dec31
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 space2024Dec31
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 space2024December31
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 space2024Dec31
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 space2024Dec31
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 space24December31
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 space24Dec31
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 space24Dec31
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 space2025December31
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 space2025Dec31
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 space2025Dec31
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 space25December31
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 space25Dec31
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 space25Dec31
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 year20241231 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 year20241231 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 year20241231 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 year20241231 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 year241231 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 year241231 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 year20251231 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 year20251231 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 year251231 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 year251231 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 year2024December31 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 year2024December31 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 year2024Dec31 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 year2024Dec31 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 year2024Dec31 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 year2024Dec31 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 year2024December31 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 year2024December31 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 year2024Dec31 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 year2024Dec31 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 year2024Dec31 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 year2024Dec31 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 year24December31 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 year24December31 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 year24Dec31 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 year24Dec31 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 year24Dec31 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 year24Dec31 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 year2025December31 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 year2025December31 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 year2025Dec31 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 year2025Dec31 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 year2025Dec31 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 year2025Dec31 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 year25December31 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 year25December31 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 year25Dec31 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 year25Dec31 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 year25Dec31 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 year25Dec31 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 week2024-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 week2024-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 week2024-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 week2024-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 week24-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 week24-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 week2025-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 week2025-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 week25-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 week25-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 week2024-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 week2024-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 week2024-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 week2024-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 week2024-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 week2024-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 week2024-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 week2024-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 week2024-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 week2024-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 week2024-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 week2024-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 week24-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 week24-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 week24-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 week24-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 week24-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 week24-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 week2025-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 week2025-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 week2025-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 week2025-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 week2025-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 week2025-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 week25-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 week25-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 week25-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 week25-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 week25-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 week25-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 week2024/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 week2024/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 week2024/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 week2024/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 week24/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 week24/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 week2025/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 week2025/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 week25/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 week25/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 week2024/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 week2024/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 week2024/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 week2024/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 week2024/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 week2024/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 week2024/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 week2024/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 week2024/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 week2024/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 week2024/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 week2024/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 week24/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 week24/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 week24/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 week24/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 week24/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 week24/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 week2025/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 week2025/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 week2025/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 week2025/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 week2025/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 week2025/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 week25/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 week25/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 week25/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 week25/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 week25/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 week25/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 week2024: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 week2024: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 week2024: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 week2024: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 week24: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 week24: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 week2025: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 week2025: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 week25: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 week25: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 week2024: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 week2024: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 week2024: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 week2024: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 week2024: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 week2024: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 week2024: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 week2024: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 week2024: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 week2024: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 week2024: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 week2024: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 week24: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 week24: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 week24: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 week24: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 week24: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 week24: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 week2025: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 week2025: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 week2025: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 week2025: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 week2025: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 week2025: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 week25: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 week25: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 week25: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 week25: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 week25: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 week25: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 week2024.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 week2024.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 week2024.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 week2024.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 week24.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 week24.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 week2025.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 week2025.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 week25.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 week25.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 week2024.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 week2024.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 week2024.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 week2024.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 week2024.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 week2024.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 week2024.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 week2024.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 week2024.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 week2024.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 week2024.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 week2024.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 week24.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 week24.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 week24.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 week24.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 week24.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 week24.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 week2025.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 week2025.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 week2025.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 week2025.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 week2025.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 week2025.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 week25.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 week25.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 week25.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 week25.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 week25.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 week25.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 week2024 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 week2024 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 week2024 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 week2024 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 week24 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 week24 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 week2025 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 week2025 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 week25 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 week25 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 week2024 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 week2024 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 week2024 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 week2024 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 week2024 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 week2024 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 week2024 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 week2024 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 week2024 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 week2024 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 week2024 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 week2024 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 week24 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 week24 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 week24 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 week24 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 week24 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 week24 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 week2025 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 week2025 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 week2025 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 week2025 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 week2025 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 week2025 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 week25 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 week25 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 week25 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 week25 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 week25 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 week25 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 week20241231 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 week20241231 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 week20241231 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 week20241231 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 week241231 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 week241231 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 week20251231 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 week20251231 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 week251231 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 week251231 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 week2024December31 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 week2024December31 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 week2024Dec31 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 week2024Dec31 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 week2024Dec31 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 week2024Dec31 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 week2024December31 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 week2024December31 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 week2024Dec31 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 week2024Dec31 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 week2024Dec31 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 week2024Dec31 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 week24December31 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 week24December31 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 week24Dec31 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 week24Dec31 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 week24Dec31 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 week24Dec31 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 week2025December31 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 week2025December31 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 week2025Dec31 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 week2025Dec31 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 week2025Dec31 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 week2025Dec31 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 week25December31 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 week25December31 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 week25Dec31 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 week25Dec31 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 week25Dec31 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 week25Dec31 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 abbreviated2024-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 abbreviated2024-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 abbreviated2024-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 abbreviated2024-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 abbreviated24-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 abbreviated24-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 abbreviated2025-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 abbreviated2025-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 abbreviated25-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 abbreviated25-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 abbreviated2024-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 abbreviated2024-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 abbreviated2024-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 abbreviated2024-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 abbreviated2024-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 abbreviated2024-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 abbreviated2024-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 abbreviated2024-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 abbreviated2024-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 abbreviated2024-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 abbreviated2024-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 abbreviated2024-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 abbreviated24-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 abbreviated24-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 abbreviated24-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 abbreviated24-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 abbreviated24-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 abbreviated24-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 abbreviated2025-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 abbreviated2025-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 abbreviated2025-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 abbreviated2025-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 abbreviated2025-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 abbreviated2025-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 abbreviated25-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 abbreviated25-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 abbreviated25-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 abbreviated25-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 abbreviated25-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 abbreviated25-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 abbreviated2024/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 abbreviated2024/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 abbreviated2024/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 abbreviated2024/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 abbreviated24/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 abbreviated24/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 abbreviated2025/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 abbreviated2025/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 abbreviated25/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 abbreviated25/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 abbreviated2024/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 abbreviated2024/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 abbreviated2024/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 abbreviated2024/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 abbreviated2024/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 abbreviated2024/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 abbreviated2024/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 abbreviated2024/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 abbreviated2024/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 abbreviated2024/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 abbreviated2024/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 abbreviated2024/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 abbreviated24/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 abbreviated24/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 abbreviated24/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 abbreviated24/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 abbreviated24/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 abbreviated24/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 abbreviated2025/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 abbreviated2025/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 abbreviated2025/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 abbreviated2025/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 abbreviated2025/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 abbreviated2025/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 abbreviated25/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 abbreviated25/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 abbreviated25/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 abbreviated25/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 abbreviated25/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 abbreviated25/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 abbreviated2024: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 abbreviated2024: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 abbreviated2024: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 abbreviated2024: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 abbreviated24: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 abbreviated24: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 abbreviated2025: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 abbreviated2025: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 abbreviated25: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 abbreviated25: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 abbreviated2024: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 abbreviated2024: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 abbreviated2024: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 abbreviated2024: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 abbreviated2024: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 abbreviated2024: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 abbreviated2024: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 abbreviated2024: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 abbreviated2024: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 abbreviated2024: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 abbreviated2024: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 abbreviated2024: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 abbreviated24: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 abbreviated24: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 abbreviated24: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 abbreviated24: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 abbreviated24: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 abbreviated24: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 abbreviated2025: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 abbreviated2025: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 abbreviated2025: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 abbreviated2025: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 abbreviated2025: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 abbreviated2025: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 abbreviated25: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 abbreviated25: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 abbreviated25: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 abbreviated25: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 abbreviated25: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 abbreviated25: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 abbreviated2024.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 abbreviated2024.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 abbreviated2024.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 abbreviated2024.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 abbreviated24.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 abbreviated24.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 abbreviated2025.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 abbreviated2025.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 abbreviated25.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 abbreviated25.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 abbreviated2024.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 abbreviated2024.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 abbreviated2024.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 abbreviated2024.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 abbreviated2024.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 abbreviated2024.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 abbreviated2024.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 abbreviated2024.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 abbreviated2024.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 abbreviated2024.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 abbreviated2024.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 abbreviated2024.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 abbreviated24.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 abbreviated24.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 abbreviated24.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 abbreviated24.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 abbreviated24.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 abbreviated24.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 abbreviated2025.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 abbreviated2025.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 abbreviated2025.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 abbreviated2025.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 abbreviated2025.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 abbreviated2025.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 abbreviated25.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 abbreviated25.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 abbreviated25.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 abbreviated25.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 abbreviated25.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 abbreviated25.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 abbreviated2024 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 abbreviated2024 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 abbreviated2024 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 abbreviated2024 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 abbreviated24 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 abbreviated24 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 abbreviated2025 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 abbreviated2025 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 abbreviated25 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 abbreviated25 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 abbreviated2024 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 abbreviated2024 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 abbreviated2024 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 abbreviated2024 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 abbreviated2024 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 abbreviated2024 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 abbreviated2024 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 abbreviated2024 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 abbreviated2024 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 abbreviated2024 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 abbreviated2024 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 abbreviated2024 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 abbreviated24 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 abbreviated24 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 abbreviated24 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 abbreviated24 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 abbreviated24 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 abbreviated24 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 abbreviated2025 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 abbreviated2025 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 abbreviated2025 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 abbreviated2025 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 abbreviated2025 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 abbreviated2025 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 abbreviated25 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 abbreviated25 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 abbreviated25 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 abbreviated25 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 abbreviated25 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 abbreviated25 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 abbreviated20241231 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 abbreviated20241231 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 abbreviated20241231 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 abbreviated20241231 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 abbreviated241231 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 abbreviated241231 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 abbreviated20251231 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 abbreviated20251231 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 abbreviated251231 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 abbreviated251231 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 abbreviated2024December31 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 abbreviated2024December31 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 abbreviated2024Dec31 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 abbreviated2024Dec31 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 abbreviated2024Dec31 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 abbreviated2024Dec31 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 abbreviated2024December31 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 abbreviated2024December31 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 abbreviated2024Dec31 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 abbreviated2024Dec31 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 abbreviated2024Dec31 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 abbreviated2024Dec31 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 abbreviated24December31 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 abbreviated24December31 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 abbreviated24Dec31 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 abbreviated24Dec31 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 abbreviated24Dec31 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 abbreviated24Dec31 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 abbreviated2025December31 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 abbreviated2025December31 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 abbreviated2025Dec31 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 abbreviated2025Dec31 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 abbreviated2025Dec31 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 abbreviated2025Dec31 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 abbreviated25December31 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 abbreviated25December31 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 abbreviated25Dec31 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 abbreviated25Dec31 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 abbreviated25Dec31 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 abbreviated25Dec31 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 quarter2024-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 quarter2024-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 quarter2024-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 quarter2024-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 quarter24-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 quarter24-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 quarter2025-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 quarter2025-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 quarter25-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 quarter25-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 quarter2024-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 quarter2024-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 quarter2024-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 quarter2024-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 quarter2024-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 quarter2024-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 quarter2024-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 quarter2024-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 quarter2024-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 quarter2024-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 quarter2024-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 quarter2024-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 quarter24-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 quarter24-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 quarter24-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 quarter24-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 quarter24-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 quarter24-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 quarter2025-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 quarter2025-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 quarter2025-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 quarter2025-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 quarter2025-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 quarter2025-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 quarter25-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 quarter25-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 quarter25-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 quarter25-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 quarter25-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 quarter25-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 quarter2024/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 quarter2024/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 quarter2024/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 quarter2024/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 quarter24/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 quarter24/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 quarter2025/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 quarter2025/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 quarter25/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 quarter25/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 quarter2024/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 quarter2024/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 quarter2024/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 quarter2024/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 quarter2024/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 quarter2024/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 quarter2024/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 quarter2024/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 quarter2024/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 quarter2024/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 quarter2024/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 quarter2024/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 quarter24/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 quarter24/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 quarter24/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 quarter24/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 quarter24/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 quarter24/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 quarter2025/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 quarter2025/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 quarter2025/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 quarter2025/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 quarter2025/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 quarter2025/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 quarter25/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 quarter25/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 quarter25/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 quarter25/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 quarter25/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 quarter25/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 quarter2024: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 quarter2024: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 quarter2024: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 quarter2024: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 quarter24: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 quarter24: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 quarter2025: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 quarter2025: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 quarter25: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 quarter25: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 quarter2024: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 quarter2024: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 quarter2024: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 quarter2024: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 quarter2024: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 quarter2024: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 quarter2024: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 quarter2024: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 quarter2024: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 quarter2024: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 quarter2024: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 quarter2024: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 quarter24: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 quarter24: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 quarter24: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 quarter24: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 quarter24: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 quarter24: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 quarter2025: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 quarter2025: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 quarter2025: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 quarter2025: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 quarter2025: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 quarter2025: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 quarter25: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 quarter25: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 quarter25: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 quarter25: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 quarter25: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 quarter25: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 quarter2024.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 quarter2024.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 quarter2024.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 quarter2024.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 quarter24.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 quarter24.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 quarter2025.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 quarter2025.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 quarter25.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 quarter25.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 quarter2024.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 quarter2024.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 quarter2024.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 quarter2024.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 quarter2024.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 quarter2024.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 quarter2024.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 quarter2024.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 quarter2024.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 quarter2024.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 quarter2024.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 quarter2024.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 quarter24.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 quarter24.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 quarter24.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 quarter24.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 quarter24.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 quarter24.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 quarter2025.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 quarter2025.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 quarter2025.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 quarter2025.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 quarter2025.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 quarter2025.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 quarter25.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 quarter25.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 quarter25.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 quarter25.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 quarter25.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 quarter25.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 quarter2024 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 quarter2024 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 quarter2024 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 quarter2024 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 quarter24 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 quarter24 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 quarter2025 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 quarter2025 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 quarter25 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 quarter25 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 quarter2024 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 quarter2024 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 quarter2024 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 quarter2024 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 quarter2024 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 quarter2024 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 quarter2024 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 quarter2024 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 quarter2024 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 quarter2024 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 quarter2024 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 quarter2024 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 quarter24 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 quarter24 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 quarter24 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 quarter24 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 quarter24 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 quarter24 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 quarter2025 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 quarter2025 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 quarter2025 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 quarter2025 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 quarter2025 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 quarter2025 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 quarter25 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 quarter25 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 quarter25 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 quarter25 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 quarter25 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 quarter25 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 quarter20241231 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 quarter20241231 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 quarter20241231 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 quarter20241231 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 quarter241231 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 quarter241231 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 quarter20251231 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 quarter20251231 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 quarter251231 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 quarter251231 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 quarter2024December31 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 quarter2024December31 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 quarter2024Dec31 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 quarter2024Dec31 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 quarter2024Dec31 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 quarter2024Dec31 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 quarter2024December31 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 quarter2024December31 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 quarter2024Dec31 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 quarter2024Dec31 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 quarter2024Dec31 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 quarter2024Dec31 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 quarter24December31 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 quarter24December31 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 quarter24Dec31 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 quarter24Dec31 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 quarter24Dec31 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 quarter24Dec31 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 quarter2025December31 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 quarter2025December31 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 quarter2025Dec31 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 quarter2025Dec31 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 quarter2025Dec31 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 quarter2025Dec31 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 quarter25December31 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 quarter25December31 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 quarter25Dec31 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 quarter25Dec31 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 quarter25Dec31 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 quarter25Dec31 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 year31-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 year31-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 year31-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 year31-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 year31-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 year31-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 year31-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 year31-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 year31-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 year31-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 year31-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 year31-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 year31-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 year31-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 year31-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 year31-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 year31-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 year31-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 year31-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 year31-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 year31/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 year31/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 year31/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 year31/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 year31/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 year31/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 year31/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 year31/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 year31/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 year31/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 year31/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 year31/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 year31/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 year31/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 year31/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 year31/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 year31/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 year31/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 year31/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 year31/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 year31: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 year31: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 year31: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 year31: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 year31: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 year31: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 year31: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 year31: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 year31: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 year31: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 year31: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 year31: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 year31: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 year31: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 year31: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 year31: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 year31: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 year31: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 year31: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 year31: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 year31.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 year31.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 year31.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 year31.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 year31.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 year31.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 year31.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 year31.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 year31.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 year31.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 year31.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 year31.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 year31.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 year31.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 year31.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 year31.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 year31.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 year31.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 year31.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 year31.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 year31 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 year31 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 year31 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 year31 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 year31 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 year31 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 year31 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 year31 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 year31 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 year31 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 year31 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 year31 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 year31 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 year31 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 year31 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 year31 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 year31 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 year31 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 year31 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 year31 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 year31122024 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 year31122024 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 year311224 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 year31122025 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 year311225 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 year31December2024 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 year31Dec2024 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 year31Dec2024 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 year31December2024 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 year31Dec2024 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 year31Dec2024 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 year31December24 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 year31Dec24 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 year31Dec24 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 year31December2025 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 year31Dec2025 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 year31Dec2025 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 year31December25 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 year31Dec25 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 year31Dec25 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 week31-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 week31-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 week31-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 week31-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 week31-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 week31-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 week31-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 week31-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 week31-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 week31-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 week31-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 week31-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 week31-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 week31-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 week31-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 week31-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 week31-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 week31-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 week31-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 week31-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 week31/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 week31/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 week31/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 week31/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 week31/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 week31/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 week31/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 week31/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 week31/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 week31/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 week31/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 week31/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 week31/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 week31/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 week31/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 week31/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 week31/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 week31/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 week31/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 week31/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 week31: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 week31: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 week31: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 week31: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 week31: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 week31: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 week31: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 week31: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 week31: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 week31: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 week31: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 week31: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 week31: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 week31: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 week31: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 week31: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 week31: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 week31: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 week31: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 week31: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 week31.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 week31.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 week31.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 week31.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 week31.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 week31.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 week31.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 week31.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 week31.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 week31.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 week31.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 week31.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 week31.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 week31.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 week31.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 week31.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 week31.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 week31.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 week31.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 week31.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 week31 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 week31 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 week31 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 week31 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 week31 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 week31 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 week31 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 week31 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 week31 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 week31 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 week31 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 week31 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 week31 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 week31 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 week31 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 week31 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 week31 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 week31 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 week31 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 week31 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 week31122024 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 week31122024 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 week311224 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 week31122025 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 week311225 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 week31December2024 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 week31Dec2024 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 week31Dec2024 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 week31December2024 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 week31Dec2024 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 week31Dec2024 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 week31December24 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 week31Dec24 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 week31Dec24 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 week31December2025 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 week31Dec2025 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 week31Dec2025 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 week31December25 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 week31Dec25 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 week31Dec25 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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31122024 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 abbreviated31122024 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 abbreviated311224 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 abbreviated31122025 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 abbreviated311225 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 abbreviated31December2024 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 abbreviated31Dec2024 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 abbreviated31Dec2024 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 abbreviated31December2024 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 abbreviated31Dec2024 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 abbreviated31Dec2024 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 abbreviated31December24 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 abbreviated31Dec24 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 abbreviated31Dec24 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 abbreviated31December2025 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 abbreviated31Dec2025 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 abbreviated31Dec2025 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 abbreviated31December25 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 abbreviated31Dec25 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 abbreviated31Dec25 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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31122024 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 quarter31122024 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 quarter311224 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 quarter31122025 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 quarter311225 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 quarter31December2024 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 quarter31Dec2024 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 quarter31Dec2024 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 quarter31December2024 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 quarter31Dec2024 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 quarter31Dec2024 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 quarter31December24 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 quarter31Dec24 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 quarter31Dec24 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 quarter31December2025 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 quarter31Dec2025 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 quarter31Dec2025 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 quarter31December25 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 quarter31Dec25 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 quarter31Dec25 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 year31-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 year31-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 year31-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 year31-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 year31-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 year31-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 year31-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 year31-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 year31-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 year31-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 year31-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 year31-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 year31-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 year31-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 year31-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 year31-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 year31-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 year31-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 year31-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 year31-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 year31/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 year31/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 year31/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 year31/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 year31/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 year31/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 year31/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 year31/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 year31/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 year31/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 year31/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 year31/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 year31/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 year31/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 year31/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 year31/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 year31/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 year31/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 year31/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 year31/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 year31: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 year31: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 year31: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 year31: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 year31: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 year31: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 year31: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 year31: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 year31: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 year31: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 year31: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 year31: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 year31: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 year31: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 year31: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 year31: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 year31: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 year31: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 year31: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 year31: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 year31.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 year31.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 year31.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 year31.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 year31.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 year31.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 year31.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 year31.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 year31.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 year31.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 year31.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 year31.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 year31.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 year31.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 year31.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 year31.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 year31.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 year31.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 year31.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 year31.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 year31 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 year31 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 year31 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 year31 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 year31 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 year31 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 year31 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 year31 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 year31 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 year31 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 year31 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 year31 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 year31 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 year31 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 year31 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 year31 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 year31 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 year31 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 year31 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 year31 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 year31122024 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 year31122024 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 year311224 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 year31122025 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 year311225 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 year31December2024 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 year31Dec2024 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 year31Dec2024 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 year31December2024 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 year31Dec2024 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 year31Dec2024 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 year31December24 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 year31Dec24 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 year31Dec24 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 year31December2025 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 year31Dec2025 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 year31Dec2025 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 year31December25 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 year31Dec25 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 year31Dec25 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 week31-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 week31-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 week31-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 week31-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 week31-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 week31-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 week31-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 week31-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 week31-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 week31-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 week31-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 week31-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 week31-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 week31-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 week31-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 week31-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 week31-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 week31-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 week31-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 week31-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 week31/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 week31/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 week31/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 week31/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 week31/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 week31/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 week31/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 week31/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 week31/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 week31/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 week31/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 week31/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 week31/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 week31/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 week31/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 week31/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 week31/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 week31/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 week31/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 week31/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 week31: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 week31: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 week31: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 week31: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 week31: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 week31: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 week31: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 week31: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 week31: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 week31: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 week31: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 week31: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 week31: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 week31: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 week31: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 week31: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 week31: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 week31: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 week31: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 week31: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 week31.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 week31.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 week31.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 week31.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 week31.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 week31.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 week31.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 week31.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 week31.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 week31.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 week31.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 week31.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 week31.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 week31.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 week31.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 week31.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 week31.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 week31.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 week31.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 week31.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 week31 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 week31 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 week31 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 week31 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 week31 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 week31 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 week31 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 week31 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 week31 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 week31 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 week31 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 week31 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 week31 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 week31 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 week31 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 week31 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 week31 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 week31 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 week31 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 week31 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 week31122024 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 week31122024 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 week311224 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 week31122025 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 week311225 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 week31December2024 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 week31Dec2024 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 week31Dec2024 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 week31December2024 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 week31Dec2024 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 week31Dec2024 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 week31December24 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 week31Dec24 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 week31Dec24 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 week31December2025 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 week31Dec2025 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 week31Dec2025 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 week31December25 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 week31Dec25 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 week31Dec25 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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31-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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31/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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31: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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31.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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31 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 abbreviated31122024 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 abbreviated31122024 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 abbreviated311224 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 abbreviated31122025 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 abbreviated311225 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 abbreviated31December2024 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 abbreviated31Dec2024 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 abbreviated31Dec2024 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 abbreviated31December2024 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 abbreviated31Dec2024 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 abbreviated31Dec2024 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 abbreviated31December24 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 abbreviated31Dec24 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 abbreviated31Dec24 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 abbreviated31December2025 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 abbreviated31Dec2025 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 abbreviated31Dec2025 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 abbreviated31December25 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 abbreviated31Dec25 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 abbreviated31Dec25 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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31-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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31/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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31: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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31.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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31 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 quarter31122024 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 quarter31122024 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 quarter311224 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 quarter31122025 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 quarter311225 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 quarter31December2024 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 quarter31Dec2024 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 quarter31Dec2024 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 quarter31December2024 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 quarter31Dec2024 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 quarter31Dec2024 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 quarter31December24 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 quarter31Dec24 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 quarter31Dec24 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 quarter31December2025 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 quarter31Dec2025 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 quarter31Dec2025 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 quarter31December25 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 quarter31Dec25 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 quarter31Dec25 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