Databricks – Formatting Dates with the date_format function

You will love this blog because date functions and formatting differ dramatically between databases, but I have covered that with brilliant examples and clear and concise explanations below.
All of these examples have come from my books and training classes. Please do me a favor and tell your training coordinator that you know the best technical trainer in the world. Ask them to hire me to train at your company, either on-site or with a virtual class. They can see our classes, outlines, and a sample of my teaching at this link on our website.
https://coffingdw.com/education/
Databricks uses the date_format command to transform raw date or timestamp data to format it as you want it presented.
For example, using date_format(current_date, ‘yyyy-MM-dd’) would format the current date as ‘YYYY-MM-DD’. You can tailor the output by including various format specifiers for years, months, days, hours, minutes, seconds, and more.
I will start with the basics, give you all the components, show you some top standards worldwide, and then show you 1,716 examples.
Below is a picture of two queries to see the syntax and how the date_format is implemented.
Here are a few basic components to format a Databricks date to get you a great start to understanding how to use the date_format command.
y: 4-digit year
yyyy: 4-digit year
yy: 2-digit year
MM: 2-digit month
M: 1 or 2-digit month
dd: 2-digit day of the month
d: 1 or 2-digit day of the month
MMMM: Full month name
MMM: Abbreviated month name
EEEE: Full day of the week
E: Abbreviated day of the week
D: Day of the year
q: Quarter of the year
G: Era (AD or BC)

Did you know you can use the date_format command to filter rows in the WHERE and the AND clauses on a Databricks system? The Databricks query example below uses the date_format function in the WHERE and AND clauses to only return rows where the customer hit the website where the day of the week is ‘Sat,’ the timestamp’s minutes = 54, and the month is December.

Below are the components to format dates and timestamps on a Databricks system.
current_date: Returns the current date in the default format (YYYY-MM-DD).
date_format(current_date, ‘yyyy’)
Returns the year component of the current date (four digits).
date_format(current_date, ‘yy’)
Returns the last two digits of the year component of the current date.
date_format(current_date, ‘M’)
Returns the month component of the current date (without leading zeros).
date_format(current_date, ‘MM’)
Returns the month component of the current date (with leading zeros).
date_format(current_date, ‘MMM’)
Returns the abbreviated month name (e.g., Jan, Feb).
date_format(current_date, ‘MMMM’)
Returns the full month’s name.
date_format(current_date, ‘d’)
Returns the day of the month (without leading zeros).
date_format(current_date, ‘dd’)
Returns the day of the month (with leading zeros).
date_format(current_date, ‘E’)
Returns the abbreviated day of the week (e.g., Mon, Tue).
date_format(current_date, ‘EEEE’)
Returns the full day of the week.
date_format(current_date, ‘h’)
Returns the hour component in 12-hour clock format (without leading zeros).
date_format(current_date, ‘hh’)
Returns the hour component in 12-hour clock format (with leading zeros).
date_format(current_date, ‘H’)
Returns the hour component in 24-hour clock format (without leading zeros).
date_format(current_date, ‘HH’)
Returns the hour component in 24-hour clock format (with leading zeros).
date_format(current_date, ‘m’)
Returns the minute component (without leading zeros).
date_format(current_date, ‘mm’)
Returns the minute component (with leading zeros).
date_format(current_date, ‘s’)
Returns the second component (without leading zeros).
date_format(current_date, ‘ss’)
Returns the second component (with leading zeros).
date_format(current_date, ‘a’)
Returns either ‘AM’ or ‘PM’ indicating the period of the day.
date_format(current_date, ‘S’)
Returns the fractional seconds without trailing zeros.
date_format(current_date, ‘SS’)
Returns the fractional seconds with one digit after the decimal point.
date_format(current_date, ‘SSS’)
Returns the fractional seconds with two digits after the decimal point.
date_format(current_date, ‘SSSS’)
Returns the fractional seconds with three digits after the decimal point.
date_format(current_date, ‘SSSSS’)
Returns the fractional seconds with four digits after the decimal point.
date_format(current_date, ‘SSSSSS’)
Returns the fractional seconds with six digits after the decimal point.
Here are the top 15 most common date format standards used around the world, along with explanations:
‘YYYY-MM-DD’ (ISO 8601): Example: 2024-01-13
ISO 8601 standard date format, widely adopted globally for its unambiguous representation.
‘DD/MM/YYYY’ (European): Example: 13/01/2024
Commonly used in European countries, featuring day, month, and year in the specified order.
‘MM/DD/YYYY’ (United States): Example: 01/13/2024
Standard date format in the United States, with month, day, and year in the specified order.
‘YYYY年MM月DD日’ (Japanese): Example: 2024年01月13日
Japanese date format using characters for year, month, and day.
‘DD.MM.YYYY’ (Russian): Example: 13.01.2024
Common in Russia, using dots as separators for day, month, and year.
‘YYYY/MM/DD’ (Chinese): Example: 2024/01/13
Standard date format in China, featuring year, month, and day in the specified order.
‘DD-MM-YYYY’ (India): Example: 13-01-2024
Common in India, using hyphens as separators for day, month, and year.
‘DD/MM/YYYY’ (Australian): Example: 13/01/2024
Similar to the European format, widely used in Australia.
‘YYYY년 MM월 DD일’ (South Korean): Example: 2024년 01월 13일
Korean date format using characters for year, month, and day.
‘YYYY-MM-DD’ (Global): Example: 2024-01-13
A concise global format uses hyphens as year, month, and day separators.
‘DD/MM/YYYY’ (Middle East): Example: 13/01/2024
Common in Middle Eastern countries, featuring day, month, and year.
‘MM/DD/YYYY’ (Canada): Example: 01/13/2024
Similar to the U.S. format, it is widely used in Canada.
‘YYYY.MM.DD’ (Global): Example: 2024.01.13
A concise global format using dots as separators for year, month, and day.
‘DD-MM-YYYY’ (South African): Example: 13-01-2024
Common in South Africa, hyphens are used as separators for day, month, and year.
‘YYYY/MM/DD’ (Taiwanese): Example: 2024/01/13
Taiwanese date format featuring year, month, and day in the specified order.
Here is a table with 1,716 examples of Databricks date_format examples.
Ordinal | Syntax | Desired_Output |
---|---|---|
1 | current_date | 2024-01-12 |
2 | date_format(current_date, 'yyyy') | 2024 |
3 | date_format(current_date, 'yy') | 24 |
4 | date_format(current_date, 'M') | 1 |
5 | date_format(current_date, 'MM') | 01 |
6 | date_format(current_date, 'MMM') | Jan |
7 | date_format(current_date, 'MMMM') | January |
8 | date_format(current_date, 'd') | 12 |
9 | date_format(current_date, 'dd') | 12 |
10 | date_format(current_date, 'E') | Fri |
11 | date_format(current_date, 'EEEE') | Friday |
12 | date_format(current_date, 'h') | 12 |
13 | date_format(current_date, 'hh') | 12 |
14 | date_format(current_date, 'H') | 0 |
15 | date_format(current_date, 'HH') | 00 |
16 | date_format(current_date, 'm') | 0 |
17 | date_format(current_date, 'mm') | 00 |
18 | date_format(current_date, 's') | 0 |
19 | date_format(current_date, 'ss') | 00 |
20 | date_format(current_date, 'a') | AM |
21 | date_format(current_date, 'S') | 0 |
22 | date_format(current_date, 'SS') | 00 |
23 | date_format(current_date, 'SSS') | 000 |
24 | date_format(current_date, 'SSSS') | 0000 |
25 | date_format(current_date, 'SSSSS') | 00000 |
26 | date_format(current_date, 'SSSSSS') | 000000 |
27 | date_format(current_date, 'yyyy-MM') | 2024-01 |
28 | date_format(current_date, 'yy-MM') | 24-01 |
29 | date_format(current_date, 'yyyy/MM') | 2024/01 |
30 | date_format(current_date, 'yy/MM') | 24/01 |
31 | date_format(current_date, 'yyyy:MM') | 2024:01 |
32 | date_format(current_date, 'yy:MM') | 24:01 |
33 | date_format(current_date, 'yyyy.MM') | 2024.01 |
34 | date_format(current_date, 'yy.MM') | 24.01 |
35 | date_format(current_date, 'yyyy MM') | 2024 01 |
36 | date_format(current_date, 'yy MM') | 24 01 |
37 | date_format(current_date, 'yyyyMM') | 202401 |
38 | date_format(current_date, 'yyMM') | 2401 |
39 | date_format(current_date, 'yyyy-MM-dd') | 2024-01-12 |
40 | date_format(current_date, 'yy-MM-dd') | 24-01-12 |
41 | date_format(current_date, 'yyyy/MM/dd') | 2024/01/12 |
42 | date_format(current_date, 'yy/MM/dd') | 24/01/12 |
43 | date_format(current_date, 'yyyy:MM:dd') | 2024:01:12 |
44 | date_format(current_date, 'yy:MM:dd') | 24:01:12 |
45 | date_format(current_date, 'yyyy.MM.dd') | 2024.01.12 |
46 | date_format(current_date, 'yy.MM.dd') | 24.01.12 |
47 | date_format(current_date, 'yyyy MM dd') | 2024 01 12 |
48 | date_format(current_date, 'yy MM dd') | 24 01 12 |
49 | date_format(current_date, 'yyyyMMdd') | 20240112 |
50 | date_format(current_date, 'yyMMdd') | 240112 |
51 | date_format(current_date, 'yyyy-M-dd') | 2024-1-12 |
52 | date_format(current_date, 'yy-M-dd') | 24-1-12 |
53 | date_format(current_date, 'yyyy/M/dd') | 2024/1/12 |
54 | date_format(current_date, 'yy/M/dd') | 24/1/12 |
55 | date_format(current_date, 'yyyy:M:dd') | 2024:1:12 |
56 | date_format(current_date, 'yy:M:dd') | 24:1:12 |
57 | date_format(current_date, 'yyyy.M.dd') | 2024.1.12 |
58 | date_format(current_date, 'yy.M.dd') | 24.1.12 |
59 | date_format(current_date, 'yyyy M dd') | 2024 1 12 |
60 | date_format(current_date, 'yy M dd') | 24 1 12 |
61 | date_format(current_date, 'yyyyMdd') | 2024112 |
62 | date_format(current_date, 'yyMdd') | 24112 |
63 | date_format(current_date, 'yyyy-MMM-dd') | 2024-Jan-12 |
64 | date_format(current_date, 'yy-MMM-dd') | 24-Jan-12 |
65 | date_format(current_date, 'yyyy/MMM/dd') | 2024/Jan/12 |
66 | date_format(current_date, 'yy/MMM/dd') | 24/Jan/12 |
67 | date_format(current_date, 'yyyy:MMM:dd') | 2024:Jan:12 |
68 | date_format(current_date, 'yy:MMM:dd') | 24:Jan:12 |
69 | date_format(current_date, 'yyyy.MMM.dd') | 2024.Jan.12 |
70 | date_format(current_date, 'yy.MMM.dd') | 24.Jan.12 |
71 | date_format(current_date, 'yyyy MMM dd') | 2024 Jan 12 |
72 | date_format(current_date, 'yy MMM dd') | 24 Jan 12 |
73 | date_format(current_date, 'yyyyMMMdd') | 2024Jan12 |
74 | date_format(current_date, 'yyMMMdd') | 24Jan12 |
75 | date_format(current_date, 'yyyy-MMMM-dd') | 2024-January-12 |
76 | date_format(current_date, 'yy-MMMM-dd') | 24-January-12 |
77 | date_format(current_date, 'yyyy/MMMM/dd') | 2024/January/12 |
78 | date_format(current_date, 'yy/MMMM/dd') | 24/January/12 |
79 | date_format(current_date, 'yyyy:MMMM:dd') | 2024:January:12 |
80 | date_format(current_date, 'yy:MMMM:dd') | 24:January:12 |
81 | date_format(current_date, 'yyyy.MMMM.dd') | 2024.January.12 |
82 | date_format(current_date, 'yy.MMMM.dd') | 24.January.12 |
83 | date_format(current_date, 'yyyy MMMM dd') | 2024 January 12 |
84 | date_format(current_date, 'yy MMMM dd') | 24 January 12 |
85 | date_format(current_date, 'yyyyMMMMdd') | 2024January12 |
86 | date_format(current_date, 'yyMMMMdd') | 24January12 |
87 | date_format(current_date, 'yyyy-MM-d') | 2024-01-12 |
88 | date_format(current_date, 'yy-MM-d') | 24-01-12 |
89 | date_format(current_date, 'yyyy/MM/d') | 2024/01/12 |
90 | date_format(current_date, 'yy/MM/d') | 24/01/12 |
91 | date_format(current_date, 'yyyy:MM:d') | 2024:01:12 |
92 | date_format(current_date, 'yy:MM:d') | 24:01:12 |
93 | date_format(current_date, 'yyyy.MM.d') | 2024.01.12 |
94 | date_format(current_date, 'yy.MM.d') | 24.01.12 |
95 | date_format(current_date, 'yyyy MM d') | 2024 01 12 |
96 | date_format(current_date, 'yy MM d') | 24 01 12 |
97 | date_format(current_date, 'yyyyMMd') | 20240112 |
98 | date_format(current_date, 'yyMMd') | 240112 |
99 | date_format(current_date, 'yyyy-M-d') | 2024-1-12 |
100 | date_format(current_date, 'yy-M-d') | 24-1-12 |
101 | date_format(current_date, 'yyyy/M/d') | 2024/1/12 |
102 | date_format(current_date, 'yy/M/d') | 24/1/12 |
103 | date_format(current_date, 'yyyy:M:d') | 2024:1:12 |
104 | date_format(current_date, 'yy:M:d') | 24:1:12 |
105 | date_format(current_date, 'yyyy.M.d') | 2024.1.12 |
106 | date_format(current_date, 'yy.M.d') | 24.1.12 |
107 | date_format(current_date, 'yyyy M d') | 2024 1 12 |
108 | date_format(current_date, 'yy M d') | 24 1 12 |
109 | date_format(current_date, 'yyyyMd') | 2024112 |
110 | date_format(current_date, 'yyMd') | 24112 |
111 | date_format(current_date, 'yyyy-MMM-d') | 2024-Jan-12 |
112 | date_format(current_date, 'yy-MMM-d') | 24-Jan-12 |
113 | date_format(current_date, 'yyyy/MMM/d') | 2024/Jan/12 |
114 | date_format(current_date, 'yy/MMM/d') | 24/Jan/12 |
115 | date_format(current_date, 'yyyy:MMM:d') | 2024:Jan:12 |
116 | date_format(current_date, 'yy:MMM:d') | 24:Jan:12 |
117 | date_format(current_date, 'yyyy.MMM.d') | 2024.Jan.12 |
118 | date_format(current_date, 'yy.MMM.d') | 24.Jan.12 |
119 | date_format(current_date, 'yyyy MMM d') | 2024 Jan 12 |
120 | date_format(current_date, 'yy MMM d') | 24 Jan 12 |
121 | date_format(current_date, 'yyyyMMMd') | 2024Jan12 |
122 | date_format(current_date, 'yyMMMd') | 24Jan12 |
123 | date_format(current_date, 'yyyy-MMMM-d') | 2024-January-12 |
124 | date_format(current_date, 'yy-MMMM-d') | 24-January-12 |
125 | date_format(current_date, 'yyyy/MMMM/d') | 2024/January/12 |
126 | date_format(current_date, 'yy/MMMM/d') | 24/January/12 |
127 | date_format(current_date, 'yyyy:MMMM:d') | 2024:January:12 |
128 | date_format(current_date, 'yy:MMMM:d') | 24:January:12 |
129 | date_format(current_date, 'yyyy.MMMM.d') | 2024.January.12 |
130 | date_format(current_date, 'yy.MMMM.d') | 24.January.12 |
131 | date_format(current_date, 'yyyy MMMM d') | 2024 January 12 |
132 | date_format(current_date, 'yy MMMM d') | 24 January 12 |
133 | date_format(current_date, 'yyyyMMMMd') | 2024January12 |
134 | date_format(current_date, 'yyMMMMd') | 24January12 |
135 | date_format(current_date, 'yyyy-MM-E') | 2024-01-Fri |
136 | date_format(current_date, 'yy-MM-E') | 24-01-Fri |
137 | date_format(current_date, 'yyyy/MM/E') | 2024/01/Fri |
138 | date_format(current_date, 'yy/MM/E') | 24/01/Fri |
139 | date_format(current_date, 'yyyy:MM:E') | 2024:01:Fri |
140 | date_format(current_date, 'yy:MM:E') | 24:01:Fri |
141 | date_format(current_date, 'yyyy.MM.E') | 2024.01.Fri |
142 | date_format(current_date, 'yy.MM.E') | 24.01.Fri |
143 | date_format(current_date, 'yyyy MM E') | 2024 01 Fri |
144 | date_format(current_date, 'yy MM E') | 24 01 Fri |
145 | date_format(current_date, 'yyyyMME') | 202401Fri |
146 | date_format(current_date, 'yyMME') | 2401Fri |
147 | date_format(current_date, 'yyyy-M-E') | 2024-1-Fri |
148 | date_format(current_date, 'yy-M-E') | 24-1-Fri |
149 | date_format(current_date, 'yyyy/M/E') | 2024/1/Fri |
150 | date_format(current_date, 'yy/M/E') | 24/1/Fri |
151 | date_format(current_date, 'yyyy:M:E') | 2024:1:Fri |
152 | date_format(current_date, 'yy:M:E') | 24:1:Fri |
153 | date_format(current_date, 'yyyy.M.E') | 2024.1.Fri |
154 | date_format(current_date, 'yy.M.E') | 24.1.Fri |
155 | date_format(current_date, 'yyyy M E') | 2024 1 Fri |
156 | date_format(current_date, 'yy M E') | 24 1 Fri |
157 | date_format(current_date, 'yyyyME') | 20241Fri |
158 | date_format(current_date, 'yyME') | 241Fri |
159 | date_format(current_date, 'yyyy-MMM-E') | 2024-Jan-Fri |
160 | date_format(current_date, 'yy-MMM-E') | 24-Jan-Fri |
161 | date_format(current_date, 'yyyy/MMM/E') | 2024/Jan/Fri |
162 | date_format(current_date, 'yy/MMM/E') | 24/Jan/Fri |
163 | date_format(current_date, 'yyyy:MMM:E') | 2024:Jan:Fri |
164 | date_format(current_date, 'yy:MMM:E') | 24:Jan:Fri |
165 | date_format(current_date, 'yyyy.MMM.E') | 2024.Jan.Fri |
166 | date_format(current_date, 'yy.MMM.E') | 24.Jan.Fri |
167 | date_format(current_date, 'yyyy MMM E') | 2024 Jan Fri |
168 | date_format(current_date, 'yy MMM E') | 24 Jan Fri |
169 | date_format(current_date, 'yyyyMMME') | 2024JanFri |
170 | date_format(current_date, 'yyMMME') | 24JanFri |
171 | date_format(current_date, 'yyyy-MMMM-E') | 2024-January-Fri |
172 | date_format(current_date, 'yy-MMMM-E') | 24-January-Fri |
173 | date_format(current_date, 'yyyy/MMMM/E') | 2024/January/Fri |
174 | date_format(current_date, 'yy/MMMM/E') | 24/January/Fri |
175 | date_format(current_date, 'yyyy:MMMM:E') | 2024:January:Fri |
176 | date_format(current_date, 'yy:MMMM:E') | 24:January:Fri |
177 | date_format(current_date, 'yyyy.MMMM.E') | 2024.January.Fri |
178 | date_format(current_date, 'yy.MMMM.E') | 24.January.Fri |
179 | date_format(current_date, 'yyyy MMMM E') | 2024 January Fri |
180 | date_format(current_date, 'yy MMMM E') | 24 January Fri |
181 | date_format(current_date, 'yyyyMMMME') | 2024JanuaryFri |
182 | date_format(current_date, 'yyMMMME') | 24JanuaryFri |
183 | date_format(current_date, 'yyyy-MM-EEEE') | 2024-01-Friday |
184 | date_format(current_date, 'yy-MM-EEEE') | 24-01-Friday |
185 | date_format(current_date, 'yyyy/MM/EEEE') | 2024/01/Friday |
186 | date_format(current_date, 'yy/MM/EEEE') | 24/01/Friday |
187 | date_format(current_date, 'yyyy:MM:EEEE') | 2024:01:Friday |
188 | date_format(current_date, 'yy:MM:EEEE') | 24:01:Friday |
189 | date_format(current_date, 'yyyy.MM.EEEE') | 2024.01.Friday |
190 | date_format(current_date, 'yy.MM.EEEE') | 24.01.Friday |
191 | date_format(current_date, 'yyyy MM EEEE') | 2024 01 Friday |
192 | date_format(current_date, 'yy MM EEEE') | 24 01 Friday |
193 | date_format(current_date, 'yyyyMMEEEE') | 202401Friday |
194 | date_format(current_date, 'yyMMEEEE') | 2401Friday |
195 | date_format(current_date, 'yyyy-M-EEEE') | 2024-1-Friday |
196 | date_format(current_date, 'yy-M-EEEE') | 24-1-Friday |
197 | date_format(current_date, 'yyyy/M/EEEE') | 2024/1/Friday |
198 | date_format(current_date, 'yy/M/EEEE') | 24/1/Friday |
199 | date_format(current_date, 'yyyy:M:EEEE') | 2024:1:Friday |
200 | date_format(current_date, 'yy:M:EEEE') | 24:1:Friday |
201 | date_format(current_date, 'yyyy.M.EEEE') | 2024.1.Friday |
202 | date_format(current_date, 'yy.M.EEEE') | 24.1.Friday |
203 | date_format(current_date, 'yyyy M EEEE') | 2024 1 Friday |
204 | date_format(current_date, 'yy M EEEE') | 24 1 Friday |
205 | date_format(current_date, 'yyyyMEEEE') | 20241Friday |
206 | date_format(current_date, 'yyMEEEE') | 241Friday |
207 | date_format(current_date, 'yyyy-MMM-EEEE') | 2024-Jan-Friday |
208 | date_format(current_date, 'yy-MMM-EEEE') | 24-Jan-Friday |
209 | date_format(current_date, 'yyyy/MMM/EEEE') | 2024/Jan/Friday |
210 | date_format(current_date, 'yy/MMM/EEEE') | 24/Jan/Friday |
211 | date_format(current_date, 'yyyy:MMM:EEEE') | 2024:Jan:Friday |
212 | date_format(current_date, 'yy:MMM:EEEE') | 24:Jan:Friday |
213 | date_format(current_date, 'yyyy.MMM.EEEE') | 2024.Jan.Friday |
214 | date_format(current_date, 'yy.MMM.EEEE') | 24.Jan.Friday |
215 | date_format(current_date, 'yyyy MMM EEEE') | 2024 Jan Friday |
216 | date_format(current_date, 'yy MMM EEEE') | 24 Jan Friday |
217 | date_format(current_date, 'yyyyMMMEEEE') | 2024JanFriday |
218 | date_format(current_date, 'yyMMMEEEE') | 24JanFriday |
219 | date_format(current_date, 'yyyy-MMMM-EEEE') | 2024-January-Friday |
220 | date_format(current_date, 'yy-MMMM-EEEE') | 24-January-Friday |
221 | date_format(current_date, 'yyyy/MMMM/EEEE') | 2024/January/Friday |
222 | date_format(current_date, 'yy/MMMM/EEEE') | 24/January/Friday |
223 | date_format(current_date, 'yyyy:MMMM:EEEE') | 2024:January:Friday |
224 | date_format(current_date, 'yy:MMMM:EEEE') | 24:January:Friday |
225 | date_format(current_date, 'yyyy.MMMM.EEEE') | 2024.January.Friday |
226 | date_format(current_date, 'yy.MMMM.EEEE') | 24.January.Friday |
227 | date_format(current_date, 'yyyy MMMM EEEE') | 2024 January Friday |
228 | date_format(current_date, 'yy MMMM EEEE') | 24 January Friday |
229 | date_format(current_date, 'yyyyMMMMEEEE') | 2024JanuaryFriday |
230 | date_format(current_date, 'yyMMMMEEEE') | 24JanuaryFriday |
231 | date_format(current_date, 'MM-dd') | 01-12 |
232 | date_format(current_date, 'MM-d') | 01-12 |
233 | date_format(current_date, 'MM-E') | 01-Fri |
234 | date_format(current_date, 'MM-EEEE') | 01-Friday |
235 | date_format(current_date, 'M-d') | 1-12 |
236 | date_format(current_date, 'M-dd') | 1-12 |
237 | date_format(current_date, 'M-E') | 1-Fri |
238 | date_format(current_date, 'M-EEEE') | 1-Friday |
239 | date_format(current_date, 'MMM-d') | Jan-12 |
240 | date_format(current_date, 'MMM-dd') | Jan-12 |
241 | date_format(current_date, 'MMM-E') | Jan-Fri |
242 | date_format(current_date, 'MMM-EEEE') | Jan-Friday |
243 | date_format(current_date, 'MMMM-d') | January-12 |
244 | date_format(current_date, 'MMMM-dd') | January-12 |
245 | date_format(current_date, 'MMMM-E') | January-Fri |
246 | date_format(current_date, 'MMMM-EEEE') | January-Friday |
247 | date_format(current_date, 'MM-yyyy') | 01-2024 |
248 | date_format(current_date, 'MM-yy') | 01-24 |
249 | date_format(current_date, 'M-yyyy') | 1-2024 |
250 | date_format(current_date, 'M-yy') | 1-24 |
251 | date_format(current_date, 'MMM-yyyy') | Jan-2024 |
252 | date_format(current_date, 'MMM-yy') | Jan-24 |
253 | date_format(current_date, 'MMMM-yyyy') | January-2024 |
254 | date_format(current_date, 'MMMM-yy') | January-24 |
255 | date_format(current_date, 'MM/dd') | 01/12 |
256 | date_format(current_date, 'MM/d') | 01/12 |
257 | date_format(current_date, 'MM/E') | 01/Fri |
258 | date_format(current_date, 'MM/EEEE') | 01/Friday |
259 | date_format(current_date, 'M/d') | 1/12 |
260 | date_format(current_date, 'M/dd') | 1/12 |
261 | date_format(current_date, 'M/E') | 1/Fri |
262 | date_format(current_date, 'M/EEEE') | 1/Friday |
263 | date_format(current_date, 'MMM/d') | Jan/12 |
264 | date_format(current_date, 'MMM/dd') | Jan/12 |
265 | date_format(current_date, 'MMM/E') | Jan/Fri |
266 | date_format(current_date, 'MMM/EEEE') | Jan/Friday |
267 | date_format(current_date, 'MMMM/d') | January/12 |
268 | date_format(current_date, 'MMMM/dd') | January/12 |
269 | date_format(current_date, 'MMMM/E') | January/Fri |
270 | date_format(current_date, 'MMMM/EEEE') | January/Friday |
271 | date_format(current_date, 'MM/yyyy') | 01/2024 |
272 | date_format(current_date, 'MM/yy') | 01/24 |
273 | date_format(current_date, 'M/yyyy') | 1/2024 |
274 | date_format(current_date, 'M/yy') | 1/24 |
275 | date_format(current_date, 'MMM/yyyy') | Jan/2024 |
276 | date_format(current_date, 'MMM/yy') | Jan/24 |
277 | date_format(current_date, 'MMMM/yyyy') | January/2024 |
278 | date_format(current_date, 'MMMM/yy') | January/24 |
279 | date_format(current_date, 'MM:dd') | 01:12 |
280 | date_format(current_date, 'MM:d') | 01:12 |
281 | date_format(current_date, 'MM:E') | 01:Fri |
282 | date_format(current_date, 'MM:EEEE') | 01:Friday |
283 | date_format(current_date, 'M:d') | 1:12 |
284 | date_format(current_date, 'M:dd') | 1:12 |
285 | date_format(current_date, 'M:E') | 1:Fri |
286 | date_format(current_date, 'M:EEEE') | 1:Friday |
287 | date_format(current_date, 'MMM:d') | Jan:12 |
288 | date_format(current_date, 'MMM:dd') | Jan:12 |
289 | date_format(current_date, 'MMM:E') | Jan:Fri |
290 | date_format(current_date, 'MMM:EEEE') | Jan:Friday |
291 | date_format(current_date, 'MMMM:d') | January:12 |
292 | date_format(current_date, 'MMMM:dd') | January:12 |
293 | date_format(current_date, 'MMMM:E') | January:Fri |
294 | date_format(current_date, 'MMMM:EEEE') | January:Friday |
295 | date_format(current_date, 'MM:yyyy') | 01:2024 |
296 | date_format(current_date, 'MM:yy') | 01:24 |
297 | date_format(current_date, 'M:yyyy') | 1:2024 |
298 | date_format(current_date, 'M:yy') | 1:24 |
299 | date_format(current_date, 'MMM:yyyy') | Jan:2024 |
300 | date_format(current_date, 'MMM:yy') | Jan:24 |
301 | date_format(current_date, 'MMMM:yyyy') | January:2024 |
302 | date_format(current_date, 'MMMM:yy') | January:24 |
303 | date_format(current_date, 'MM.dd') | 01.12 |
304 | date_format(current_date, 'MM.d') | 01.12 |
305 | date_format(current_date, 'MM.E') | 01.Fri |
306 | date_format(current_date, 'MM.EEEE') | 01.Friday |
307 | date_format(current_date, 'M.d') | 1.12 |
308 | date_format(current_date, 'M.dd') | 1.12 |
309 | date_format(current_date, 'M.E') | 1.Fri |
310 | date_format(current_date, 'M.EEEE') | 1.Friday |
311 | date_format(current_date, 'MMM.d') | Jan.12 |
312 | date_format(current_date, 'MMM.dd') | Jan.12 |
313 | date_format(current_date, 'MMM.E') | Jan.Fri |
314 | date_format(current_date, 'MMM.EEEE') | Jan.Friday |
315 | date_format(current_date, 'MMMM.d') | January.12 |
316 | date_format(current_date, 'MMMM.dd') | January.12 |
317 | date_format(current_date, 'MMMM.E') | January.Fri |
318 | date_format(current_date, 'MMMM.EEEE') | January.Friday |
319 | date_format(current_date, 'MM.yyyy') | 01.2024 |
320 | date_format(current_date, 'MM.yy') | 01.24 |
321 | date_format(current_date, 'M.yyyy') | 1.2024 |
322 | date_format(current_date, 'M.yy') | 1.24 |
323 | date_format(current_date, 'MMM.yyyy') | Jan.2024 |
324 | date_format(current_date, 'MMM.yy') | Jan.24 |
325 | date_format(current_date, 'MMMM.yyyy') | January.2024 |
326 | date_format(current_date, 'MMMM.yy') | January.24 |
327 | date_format(current_date, 'MM dd') | 01 12 |
328 | date_format(current_date, 'MM d') | 01 12 |
329 | date_format(current_date, 'MM E') | 01 Fri |
330 | date_format(current_date, 'MM EEEE') | 01 Friday |
331 | date_format(current_date, 'M d') | 1 12 |
332 | date_format(current_date, 'M dd') | 1 12 |
333 | date_format(current_date, 'M E') | 1 Fri |
334 | date_format(current_date, 'M EEEE') | 1 Friday |
335 | date_format(current_date, 'MMM d') | Jan 12 |
336 | date_format(current_date, 'MMM dd') | Jan 12 |
337 | date_format(current_date, 'MMM E') | Jan Fri |
338 | date_format(current_date, 'MMM EEEE') | Jan Friday |
339 | date_format(current_date, 'MMMM d') | January 12 |
340 | date_format(current_date, 'MMMM dd') | January 12 |
341 | date_format(current_date, 'MMMM E') | January Fri |
342 | date_format(current_date, 'MMMM EEEE') | January Friday |
343 | date_format(current_date, 'MM yyyy') | 01 2024 |
344 | date_format(current_date, 'MM yy') | 01 24 |
345 | date_format(current_date, 'M yyyy') | 1 2024 |
346 | date_format(current_date, 'M yy') | 1 24 |
347 | date_format(current_date, 'MMM yyyy') | Jan 2024 |
348 | date_format(current_date, 'MMM yy') | Jan 24 |
349 | date_format(current_date, 'MMMM yyyy') | January 2024 |
350 | date_format(current_date, 'MMMM yy') | January 24 |
351 | date_format(current_date, 'MMdd') | 0112 |
352 | date_format(current_date, 'MMd') | 0112 |
353 | date_format(current_date, 'MME') | 01Fri |
354 | date_format(current_date, 'MMEEEE') | 01Friday |
355 | date_format(current_date, 'Md') | 112 |
356 | date_format(current_date, 'Mdd') | 112 |
357 | date_format(current_date, 'ME') | 1Fri |
358 | date_format(current_date, 'MEEEE') | 1Friday |
359 | date_format(current_date, 'MMMd') | Jan12 |
360 | date_format(current_date, 'MMMdd') | Jan12 |
361 | date_format(current_date, 'MMME') | JanFri |
362 | date_format(current_date, 'MMMEEEE') | JanFriday |
363 | date_format(current_date, 'MMMMd') | January12 |
364 | date_format(current_date, 'MMMMdd') | January12 |
365 | date_format(current_date, 'MMMME') | JanuaryFri |
366 | date_format(current_date, 'MMMMEEEE') | JanuaryFriday |
367 | date_format(current_date, 'MMyyyy') | 012024 |
368 | date_format(current_date, 'MMyy') | 0124 |
369 | date_format(current_date, 'Myyyy') | 12024 |
370 | date_format(current_date, 'Myy') | 124 |
371 | date_format(current_date, 'MMMyyyy') | Jan2024 |
372 | date_format(current_date, 'MMMyy') | Jan24 |
373 | date_format(current_date, 'MMMMyyyy') | January2024 |
374 | date_format(current_date, 'MMMMyy') | January24 |
375 | date_format(current_date, 'MM-dd-yyyy') | 01-12-2024 |
376 | date_format(current_date, 'MM-dd-yy') | 01-12-24 |
377 | date_format(current_date, 'MM/dd/yyyy') | 01/12/2024 |
378 | date_format(current_date, 'MM/dd/yy') | 01/12/24 |
379 | date_format(current_date, 'MM:dd:yyyy') | 01:12:2024 |
380 | date_format(current_date, 'MM:dd:yy') | 01:12:24 |
381 | date_format(current_date, 'MM.dd.yyyy') | 01.12.2024 |
382 | date_format(current_date, 'MM.dd.yy') | 01.12.24 |
383 | date_format(current_date, 'MM dd yyyy') | 01 12 2024 |
384 | date_format(current_date, 'MM dd yy') | 01 12 24 |
385 | date_format(current_date, 'MMddyyyy') | 01122024 |
386 | date_format(current_date, 'MMddyy') | 011224 |
387 | date_format(current_date, 'M-dd-yyyy') | 1-12-2024 |
388 | date_format(current_date, 'M-dd-yy') | 1-12-24 |
389 | date_format(current_date, 'M/dd/yyyy') | 1/12/2024 |
390 | date_format(current_date, 'M/dd/yy') | 1/12/24 |
391 | date_format(current_date, 'M:dd:yyyy') | 1:12:2024 |
392 | date_format(current_date, 'M:dd:yy') | 1:12:24 |
393 | date_format(current_date, 'M.dd.yyyy') | 1.12.2024 |
394 | date_format(current_date, 'M.dd.yy') | 1.12.24 |
395 | date_format(current_date, 'M dd yyyy') | 1 12 2024 |
396 | date_format(current_date, 'M dd yy') | 1 12 24 |
397 | date_format(current_date, 'Mddyyyy') | 1122024 |
398 | date_format(current_date, 'Mddyy') | 11224 |
399 | date_format(current_date, 'MMM-dd-yyyy') | Jan-12-2024 |
400 | date_format(current_date, 'MMM-dd-yy') | Jan-12-24 |
401 | date_format(current_date, 'MMM/dd/yyyy') | Jan/12/2024 |
402 | date_format(current_date, 'MMM/dd/yy') | Jan/12/24 |
403 | date_format(current_date, 'MMM:dd:yyyy') | Jan:12:2024 |
404 | date_format(current_date, 'MMM:dd:yy') | Jan:12:24 |
405 | date_format(current_date, 'MMM.dd.yyyy') | Jan.12.2024 |
406 | date_format(current_date, 'MMM.dd.yy') | Jan.12.24 |
407 | date_format(current_date, 'MMM dd yyyy') | Jan 12 2024 |
408 | date_format(current_date, 'MMM dd yy') | Jan 12 24 |
409 | date_format(current_date, 'MMMddyyyy') | Jan122024 |
410 | date_format(current_date, 'MMMddyy') | Jan1224 |
411 | date_format(current_date, 'MMMM-dd-yyyy') | January-12-2024 |
412 | date_format(current_date, 'MMMM-dd-yy') | January-12-24 |
413 | date_format(current_date, 'MMMM/dd/yyyy') | January/12/2024 |
414 | date_format(current_date, 'MMMM/dd/yy') | January/12/24 |
415 | date_format(current_date, 'MMMM:dd:yyyy') | January:12:2024 |
416 | date_format(current_date, 'MMMM:dd:yy') | January:12:24 |
417 | date_format(current_date, 'MMMM.dd.yyyy') | January.12.2024 |
418 | date_format(current_date, 'MMMM.dd.yy') | January.12.24 |
419 | date_format(current_date, 'MMMM dd yyyy') | January 12 2024 |
420 | date_format(current_date, 'MMMM dd yy') | January 12 24 |
421 | date_format(current_date, 'MMMMddyyyy') | January122024 |
422 | date_format(current_date, 'MMMMddyy') | January1224 |
423 | date_format(current_date, 'MM-d-yyyy') | 01-12-2024 |
424 | date_format(current_date, 'MM-d-yy') | 01-12-24 |
425 | date_format(current_date, 'MM/d/yyyy') | 01/12/2024 |
426 | date_format(current_date, 'MM/d/yy') | 01/12/24 |
427 | date_format(current_date, 'MM:d:yyyy') | 01:12:2024 |
428 | date_format(current_date, 'MM:d:yy') | 01:12:24 |
429 | date_format(current_date, 'MM.d.yyyy') | 01.12.2024 |
430 | date_format(current_date, 'MM.d.yy') | 01.12.24 |
431 | date_format(current_date, 'MM d yyyy') | 01 12 2024 |
432 | date_format(current_date, 'MM d yy') | 01 12 24 |
433 | date_format(current_date, 'MMdyyyy') | 01122024 |
434 | date_format(current_date, 'MMdyy') | 011224 |
435 | date_format(current_date, 'M-d-yyyy') | 1-12-2024 |
436 | date_format(current_date, 'M-d-yy') | 1-12-24 |
437 | date_format(current_date, 'M/d/yyyy') | 1/12/2024 |
438 | date_format(current_date, 'M/d/yy') | 1/12/24 |
439 | date_format(current_date, 'M:d:yyyy') | 1:12:2024 |
440 | date_format(current_date, 'M:d:yy') | 1:12:24 |
441 | date_format(current_date, 'M.d.yyyy') | 1.12.2024 |
442 | date_format(current_date, 'M.d.yy') | 1.12.24 |
443 | date_format(current_date, 'M d yyyy') | 1 12 2024 |
444 | date_format(current_date, 'M d yy') | 1 12 24 |
445 | date_format(current_date, 'Mdyyyy') | 1122024 |
446 | date_format(current_date, 'Mdyy') | 11224 |
447 | date_format(current_date, 'MMM-d-yyyy') | Jan-12-2024 |
448 | date_format(current_date, 'MMM-d-yy') | Jan-12-24 |
449 | date_format(current_date, 'MMM/d/yyyy') | Jan/12/2024 |
450 | date_format(current_date, 'MMM/d/yy') | Jan/12/24 |
451 | date_format(current_date, 'MMM:d:yyyy') | Jan:12:2024 |
452 | date_format(current_date, 'MMM:d:yy') | Jan:12:24 |
453 | date_format(current_date, 'MMM.d.yyyy') | Jan.12.2024 |
454 | date_format(current_date, 'MMM.d.yy') | Jan.12.24 |
455 | date_format(current_date, 'MMM d yyyy') | Jan 12 2024 |
456 | date_format(current_date, 'MMM d yy') | Jan 12 24 |
457 | date_format(current_date, 'MMMdyyyy') | Jan122024 |
458 | date_format(current_date, 'MMMdyy') | Jan1224 |
459 | date_format(current_date, 'MMMM-d-yyyy') | January-12-2024 |
460 | date_format(current_date, 'MMMM-d-yy') | January-12-24 |
461 | date_format(current_date, 'MMMM/d/yyyy') | January/12/2024 |
462 | date_format(current_date, 'MMMM/d/yy') | January/12/24 |
463 | date_format(current_date, 'MMMM:d:yyyy') | January:12:2024 |
464 | date_format(current_date, 'MMMM:d:yy') | January:12:24 |
465 | date_format(current_date, 'MMMM.d.yyyy') | January.12.2024 |
466 | date_format(current_date, 'MMMM.d.yy') | January.12.24 |
467 | date_format(current_date, 'MMMM d yyyy') | January 12 2024 |
468 | date_format(current_date, 'MMMM d yy') | January 12 24 |
469 | date_format(current_date, 'MMMMdyyyy') | January122024 |
470 | date_format(current_date, 'MMMMdyy') | January1224 |
471 | date_format(current_date, 'MM-E-yyyy') | 01-Fri-2024 |
472 | date_format(current_date, 'MM-E-yy') | 01-Fri-24 |
473 | date_format(current_date, 'MM/E/yyyy') | 01/Fri/2024 |
474 | date_format(current_date, 'MM/E/yy') | 01/Fri/24 |
475 | date_format(current_date, 'MM:E:yyyy') | 01:Fri:2024 |
476 | date_format(current_date, 'MM:E:yy') | 01:Fri:24 |
477 | date_format(current_date, 'MM.E.yyyy') | 01.Fri.2024 |
478 | date_format(current_date, 'MM.E.yy') | 01.Fri.24 |
479 | date_format(current_date, 'MM E yyyy') | 01 Fri 2024 |
480 | date_format(current_date, 'MM E yy') | 01 Fri 24 |
481 | date_format(current_date, 'MMEyyyy') | 01Fri2024 |
482 | date_format(current_date, 'MMEyy') | 01Fri24 |
483 | date_format(current_date, 'M-E-yyyy') | 1-Fri-2024 |
484 | date_format(current_date, 'M-E-yy') | 1-Fri-24 |
485 | date_format(current_date, 'M/E/yyyy') | 1/Fri/2024 |
486 | date_format(current_date, 'M/E/yy') | 1/Fri/24 |
487 | date_format(current_date, 'M:E:yyyy') | 1:Fri:2024 |
488 | date_format(current_date, 'M:E:yy') | 1:Fri:24 |
489 | date_format(current_date, 'M.E.yyyy') | 1.Fri.2024 |
490 | date_format(current_date, 'M.E.yy') | 1.Fri.24 |
491 | date_format(current_date, 'M E yyyy') | 1 Fri 2024 |
492 | date_format(current_date, 'M E yy') | 1 Fri 24 |
493 | date_format(current_date, 'MEyyyy') | 1Fri2024 |
494 | date_format(current_date, 'MEyy') | 1Fri24 |
495 | date_format(current_date, 'MMM-E-yyyy') | Jan-Fri-2024 |
496 | date_format(current_date, 'MMM-E-yy') | Jan-Fri-24 |
497 | date_format(current_date, 'MMM/E/yyyy') | Jan/Fri/2024 |
498 | date_format(current_date, 'MMM/E/yy') | Jan/Fri/24 |
499 | date_format(current_date, 'MMM:E:yyyy') | Jan:Fri:2024 |
500 | date_format(current_date, 'MMM:E:yy') | Jan:Fri:24 |
501 | date_format(current_date, 'MMM.E.yyyy') | Jan.Fri.2024 |
502 | date_format(current_date, 'MMM.E.yy') | Jan.Fri.24 |
503 | date_format(current_date, 'MMM E yyyy') | Jan Fri 2024 |
504 | date_format(current_date, 'MMM E yy') | Jan Fri 24 |
505 | date_format(current_date, 'MMMEyyyy') | JanFri2024 |
506 | date_format(current_date, 'MMMEyy') | JanFri24 |
507 | date_format(current_date, 'MMMM-E-yyyy') | January-Fri-2024 |
508 | date_format(current_date, 'MMMM-E-yy') | January-Fri-24 |
509 | date_format(current_date, 'MMMM/E/yyyy') | January/Fri/2024 |
510 | date_format(current_date, 'MMMM/E/yy') | January/Fri/24 |
511 | date_format(current_date, 'MMMM:E:yyyy') | January:Fri:2024 |
512 | date_format(current_date, 'MMMM:E:yy') | January:Fri:24 |
513 | date_format(current_date, 'MMMM.E.yyyy') | January.Fri.2024 |
514 | date_format(current_date, 'MMMM.E.yy') | January.Fri.24 |
515 | date_format(current_date, 'MMMM E yyyy') | January Fri 2024 |
516 | date_format(current_date, 'MMMM E yy') | January Fri 24 |
517 | date_format(current_date, 'MMMMEyyyy') | JanuaryFri2024 |
518 | date_format(current_date, 'MMMMEyy') | JanuaryFri24 |
519 | date_format(current_date, 'MM-EEEE-yyyy') | 01-Friday-2024 |
520 | date_format(current_date, 'MM-EEEE-yy') | 01-Friday-24 |
521 | date_format(current_date, 'MM/EEEE/yyyy') | 01/Friday/2024 |
522 | date_format(current_date, 'MM/EEEE/yy') | 01/Friday/24 |
523 | date_format(current_date, 'MM:EEEE:yyyy') | 01:Friday:2024 |
524 | date_format(current_date, 'MM:EEEE:yy') | 01:Friday:24 |
525 | date_format(current_date, 'MM.EEEE.yyyy') | 01.Friday.2024 |
526 | date_format(current_date, 'MM.EEEE.yy') | 01.Friday.24 |
527 | date_format(current_date, 'MM EEEE yyyy') | 01 Friday 2024 |
528 | date_format(current_date, 'MM EEEE yy') | 01 Friday 24 |
529 | date_format(current_date, 'MMEEEEyyyy') | 01Friday2024 |
530 | date_format(current_date, 'MMEEEEyy') | 01Friday24 |
531 | date_format(current_date, 'M-EEEE-yyyy') | 1-Friday-2024 |
532 | date_format(current_date, 'M-EEEE-yy') | 1-Friday-24 |
533 | date_format(current_date, 'M/EEEE/yyyy') | 1/Friday/2024 |
534 | date_format(current_date, 'M/EEEE/yy') | 1/Friday/24 |
535 | date_format(current_date, 'M:EEEE:yyyy') | 1:Friday:2024 |
536 | date_format(current_date, 'M:EEEE:yy') | 1:Friday:24 |
537 | date_format(current_date, 'M.EEEE.yyyy') | 1.Friday.2024 |
538 | date_format(current_date, 'M.EEEE.yy') | 1.Friday.24 |
539 | date_format(current_date, 'M EEEE yyyy') | 1 Friday 2024 |
540 | date_format(current_date, 'M EEEE yy') | 1 Friday 24 |
541 | date_format(current_date, 'MEEEEyyyy') | 1Friday2024 |
542 | date_format(current_date, 'MEEEEyy') | 1Friday24 |
543 | date_format(current_date, 'MMM-EEEE-yyyy') | Jan-Friday-2024 |
544 | date_format(current_date, 'MMM-EEEE-yy') | Jan-Friday-24 |
545 | date_format(current_date, 'MMM/EEEE/yyyy') | Jan/Friday/2024 |
546 | date_format(current_date, 'MMM/EEEE/yy') | Jan/Friday/24 |
547 | date_format(current_date, 'MMM:EEEE:yyyy') | Jan:Friday:2024 |
548 | date_format(current_date, 'MMM:EEEE:yy') | Jan:Friday:24 |
549 | date_format(current_date, 'MMM.EEEE.yyyy') | Jan.Friday.2024 |
550 | date_format(current_date, 'MMM.EEEE.yy') | Jan.Friday.24 |
551 | date_format(current_date, 'MMM EEEE yyyy') | Jan Friday 2024 |
552 | date_format(current_date, 'MMM EEEE yy') | Jan Friday 24 |
553 | date_format(current_date, 'MMMEEEEyyyy') | JanFriday2024 |
554 | date_format(current_date, 'MMMEEEEyy') | JanFriday24 |
555 | date_format(current_date, 'MMMM-EEEE-yyyy') | January-Friday-2024 |
556 | date_format(current_date, 'MMMM-EEEE-yy') | January-Friday-24 |
557 | date_format(current_date, 'MMMM/EEEE/yyyy') | January/Friday/2024 |
558 | date_format(current_date, 'MMMM/EEEE/yy') | January/Friday/24 |
559 | date_format(current_date, 'MMMM:EEEE:yyyy') | January:Friday:2024 |
560 | date_format(current_date, 'MMMM:EEEE:yy') | January:Friday:24 |
561 | date_format(current_date, 'MMMM.EEEE.yyyy') | January.Friday.2024 |
562 | date_format(current_date, 'MMMM.EEEE.yy') | January.Friday.24 |
563 | date_format(current_date, 'MMMM EEEE yyyy') | January Friday 2024 |
564 | date_format(current_date, 'MMMM EEEE yy') | January Friday 24 |
565 | date_format(current_date, 'MMMMEEEEyyyy') | JanuaryFriday2024 |
566 | date_format(current_date, 'MMMMEEEEyy') | JanuaryFriday24 |
567 | date_format(current_date, 'dd-MM') | 12-01 |
568 | date_format(current_date, 'dd-M') | 12-1 |
569 | date_format(current_date, 'dd-MMM') | 12-Jan |
570 | date_format(current_date, 'dd-MMMM') | 12-January |
571 | date_format(current_date, 'd-MM') | 12-01 |
572 | date_format(current_date, 'd-M') | 12-1 |
573 | date_format(current_date, 'd-MMM') | 12-Jan |
574 | date_format(current_date, 'd-MMMM') | 12-January |
575 | date_format(current_date, 'E-MM') | Fri-01 |
576 | date_format(current_date, 'E-M') | Fri-1 |
577 | date_format(current_date, 'E-MMM') | Fri-Jan |
578 | date_format(current_date, 'E-MMMM') | Fri-January |
579 | date_format(current_date, 'EEEE-MM') | Friday-01 |
580 | date_format(current_date, 'EEEE-M') | Friday-1 |
581 | date_format(current_date, 'EEEE-MMM') | Friday-Jan |
582 | date_format(current_date, 'EEEE-MMMM') | Friday-January |
583 | date_format(current_date, 'dd/MM') | 12/01 |
584 | date_format(current_date, 'dd/M') | 12/1 |
585 | date_format(current_date, 'dd/MMM') | 12/Jan |
586 | date_format(current_date, 'dd/MMMM') | 12/January |
587 | date_format(current_date, 'd/MM') | 12/01 |
588 | date_format(current_date, 'd/M') | 12/1 |
589 | date_format(current_date, 'd/MMM') | 12/Jan |
590 | date_format(current_date, 'd/MMMM') | 12/January |
591 | date_format(current_date, 'E/MM') | Fri/01 |
592 | date_format(current_date, 'E/M') | Fri/1 |
593 | date_format(current_date, 'E/MMM') | Fri/Jan |
594 | date_format(current_date, 'E/MMMM') | Fri/January |
595 | date_format(current_date, 'EEEE/MM') | Friday/01 |
596 | date_format(current_date, 'EEEE/M') | Friday/1 |
597 | date_format(current_date, 'EEEE/MMM') | Friday/Jan |
598 | date_format(current_date, 'EEEE/MMMM') | Friday/January |
599 | date_format(current_date, 'dd:MM') | 12:01 |
600 | date_format(current_date, 'dd:M') | 12:1 |
601 | date_format(current_date, 'dd:MMM') | 12:Jan |
602 | date_format(current_date, 'dd:MMMM') | 12:January |
603 | date_format(current_date, 'd:MM') | 12:01 |
604 | date_format(current_date, 'd:M') | 12:1 |
605 | date_format(current_date, 'd:MMM') | 12:Jan |
606 | date_format(current_date, 'd:MMMM') | 12:January |
607 | date_format(current_date, 'E:MM') | Fri:01 |
608 | date_format(current_date, 'E:M') | Fri:1 |
609 | date_format(current_date, 'E:MMM') | Fri:Jan |
610 | date_format(current_date, 'E:MMMM') | Fri:January |
611 | date_format(current_date, 'EEEE:MM') | Friday:01 |
612 | date_format(current_date, 'EEEE:M') | Friday:1 |
613 | date_format(current_date, 'EEEE:MMM') | Friday:Jan |
614 | date_format(current_date, 'EEEE:MMMM') | Friday:January |
615 | date_format(current_date, 'dd.MM') | 12.01 |
616 | date_format(current_date, 'dd.M') | 12.1 |
617 | date_format(current_date, 'dd.MMM') | 12.Jan |
618 | date_format(current_date, 'dd.MMMM') | 12.January |
619 | date_format(current_date, 'd.MM') | 12.01 |
620 | date_format(current_date, 'd.M') | 12.1 |
621 | date_format(current_date, 'd.MMM') | 12.Jan |
622 | date_format(current_date, 'd.MMMM') | 12.January |
623 | date_format(current_date, 'E.MM') | Fri.01 |
624 | date_format(current_date, 'E.M') | Fri.1 |
625 | date_format(current_date, 'E.MMM') | Fri.Jan |
626 | date_format(current_date, 'E.MMMM') | Fri.January |
627 | date_format(current_date, 'EEEE.MM') | Friday.01 |
628 | date_format(current_date, 'EEEE.M') | Friday.1 |
629 | date_format(current_date, 'EEEE.MMM') | Friday.Jan |
630 | date_format(current_date, 'EEEE.MMMM') | Friday.January |
631 | date_format(current_date, 'dd MM') | 12 01 |
632 | date_format(current_date, 'dd M') | 12 1 |
633 | date_format(current_date, 'dd MMM') | 12 Jan |
634 | date_format(current_date, 'dd MMMM') | 12 January |
635 | date_format(current_date, 'd MM') | 12 01 |
636 | date_format(current_date, 'd M') | 12 1 |
637 | date_format(current_date, 'd MMM') | 12 Jan |
638 | date_format(current_date, 'd MMMM') | 12 January |
639 | date_format(current_date, 'E MM') | Fri 01 |
640 | date_format(current_date, 'E M') | Fri 1 |
641 | date_format(current_date, 'E MMM') | Fri Jan |
642 | date_format(current_date, 'E MMMM') | Fri January |
643 | date_format(current_date, 'EEEE MM') | Friday 01 |
644 | date_format(current_date, 'EEEE M') | Friday 1 |
645 | date_format(current_date, 'EEEE MMM') | Friday Jan |
646 | date_format(current_date, 'EEEE MMMM') | Friday January |
647 | date_format(current_date, 'ddMM') | 1201 |
648 | date_format(current_date, 'ddM') | 121 |
649 | date_format(current_date, 'ddMMM') | 12Jan |
650 | date_format(current_date, 'ddMMMM') | 12January |
651 | date_format(current_date, 'dMM') | 1201 |
652 | date_format(current_date, 'dM') | 121 |
653 | date_format(current_date, 'dMMM') | 12Jan |
654 | date_format(current_date, 'dMMMM') | 12January |
655 | date_format(current_date, 'EMM') | Fri01 |
656 | date_format(current_date, 'EM') | Fri1 |
657 | date_format(current_date, 'EMMM') | FriJan |
658 | date_format(current_date, 'EMMMM') | FriJanuary |
659 | date_format(current_date, 'EEEEMM') | Friday01 |
660 | date_format(current_date, 'EEEEM') | Friday1 |
661 | date_format(current_date, 'EEEEMMM') | FridayJan |
662 | date_format(current_date, 'EEEEMMMM') | FridayJanuary |
663 | date_format(current_date, 'dd-MM-yyyy') | 12-01-2024 |
664 | date_format(current_date, 'dd-MM-yy') | 12-01-24 |
665 | date_format(current_date, 'd-MM-yyyy') | 12-01-2024 |
666 | date_format(current_date, 'd-MM-yy') | 12-01-24 |
667 | date_format(current_date, 'E-MM-yyyy') | Fri-01-2024 |
668 | date_format(current_date, 'E-MM-yy') | Fri-01-24 |
669 | date_format(current_date, 'EEEE-MM-yyyy') | Friday-01-2024 |
670 | date_format(current_date, 'EEEE-MM-yy') | Friday-01-24 |
671 | date_format(current_date, 'dd-M-yyyy') | 12-1-2024 |
672 | date_format(current_date, 'dd-M-yy') | 12-1-24 |
673 | date_format(current_date, 'd-M-yyyy') | 12-1-2024 |
674 | date_format(current_date, 'd-M-yy') | 12-1-24 |
675 | date_format(current_date, 'E-M-yyyy') | Fri-1-2024 |
676 | date_format(current_date, 'E-M-yy') | Fri-1-24 |
677 | date_format(current_date, 'EEEE-M-yyyy') | Friday-1-2024 |
678 | date_format(current_date, 'EEEE-M-yy') | Friday-1-24 |
679 | date_format(current_date, 'dd-MMM-yyyy') | 12-Jan-2024 |
680 | date_format(current_date, 'dd-MMM-yy') | 12-Jan-24 |
681 | date_format(current_date, 'd-MMM-yyyy') | 12-Jan-2024 |
682 | date_format(current_date, 'd-MMM-yy') | 12-Jan-24 |
683 | date_format(current_date, 'E-MMM-yyyy') | Fri-Jan-2024 |
684 | date_format(current_date, 'E-MMM-yy') | Fri-Jan-24 |
685 | date_format(current_date, 'EEEE-MMM-yyyy') | Friday-Jan-2024 |
686 | date_format(current_date, 'EEEE-MMM-yy') | Friday-Jan-24 |
687 | date_format(current_date, 'dd-MMMM-yyyy') | 12-January-2024 |
688 | date_format(current_date, 'dd-MMMM-yy') | 12-January-24 |
689 | date_format(current_date, 'd-MMMM-yyyy') | 12-January-2024 |
690 | date_format(current_date, 'd-MMMM-yy') | 12-January-24 |
691 | date_format(current_date, 'E-MMMM-yyyy') | Fri-January-2024 |
692 | date_format(current_date, 'E-MMMM-yy') | Fri-January-24 |
693 | date_format(current_date, 'EEEE-MMMM-yyyy') | Friday-January-2024 |
694 | date_format(current_date, 'EEEE-MMMM-yy') | Friday-January-24 |
695 | date_format(current_date, 'dd/MM/yyyy') | 12/01/2024 |
696 | date_format(current_date, 'dd/MM/yy') | 12/01/24 |
697 | date_format(current_date, 'd/MM/yyyy') | 12/01/2024 |
698 | date_format(current_date, 'd/MM/yy') | 12/01/24 |
699 | date_format(current_date, 'E/MM/yyyy') | Fri/01/2024 |
700 | date_format(current_date, 'E/MM/yy') | Fri/01/24 |
701 | date_format(current_date, 'EEEE/MM/yyyy') | Friday/01/2024 |
702 | date_format(current_date, 'EEEE/MM/yy') | Friday/01/24 |
703 | date_format(current_date, 'dd/M/yyyy') | 12/1/2024 |
704 | date_format(current_date, 'dd/M/yy') | 12/1/24 |
705 | date_format(current_date, 'd/M/yyyy') | 12/1/2024 |
706 | date_format(current_date, 'd/M/yy') | 12/1/24 |
707 | date_format(current_date, 'E/M/yyyy') | Fri/1/2024 |
708 | date_format(current_date, 'E/M/yy') | Fri/1/24 |
709 | date_format(current_date, 'EEEE/M/yyyy') | Friday/1/2024 |
710 | date_format(current_date, 'EEEE/M/yy') | Friday/1/24 |
711 | date_format(current_date, 'dd/MMM/yyyy') | 12/Jan/2024 |
712 | date_format(current_date, 'dd/MMM/yy') | 12/Jan/24 |
713 | date_format(current_date, 'd/MMM/yyyy') | 12/Jan/2024 |
714 | date_format(current_date, 'd/MMM/yy') | 12/Jan/24 |
715 | date_format(current_date, 'E/MMM/yyyy') | Fri/Jan/2024 |
716 | date_format(current_date, 'E/MMM/yy') | Fri/Jan/24 |
717 | date_format(current_date, 'EEEE/MMM/yyyy') | Friday/Jan/2024 |
718 | date_format(current_date, 'EEEE/MMM/yy') | Friday/Jan/24 |
719 | date_format(current_date, 'dd/MMMM/yyyy') | 12/January/2024 |
720 | date_format(current_date, 'dd/MMMM/yy') | 12/January/24 |
721 | date_format(current_date, 'd/MMMM/yyyy') | 12/January/2024 |
722 | date_format(current_date, 'd/MMMM/yy') | 12/January/24 |
723 | date_format(current_date, 'E/MMMM/yyyy') | Fri/January/2024 |
724 | date_format(current_date, 'E/MMMM/yy') | Fri/January/24 |
725 | date_format(current_date, 'EEEE/MMMM/yyyy') | Friday/January/2024 |
726 | date_format(current_date, 'EEEE/MMMM/yy') | Friday/January/24 |
727 | date_format(current_date, 'dd:MM:yyyy') | 12:01:2024 |
728 | date_format(current_date, 'dd:MM:yy') | 12:01:24 |
729 | date_format(current_date, 'd:MM:yyyy') | 12:01:2024 |
730 | date_format(current_date, 'd:MM:yy') | 12:01:24 |
731 | date_format(current_date, 'E:MM:yyyy') | Fri:01:2024 |
732 | date_format(current_date, 'E:MM:yy') | Fri:01:24 |
733 | date_format(current_date, 'EEEE:MM:yyyy') | Friday:01:2024 |
734 | date_format(current_date, 'EEEE:MM:yy') | Friday:01:24 |
735 | date_format(current_date, 'dd:M:yyyy') | 12:1:2024 |
736 | date_format(current_date, 'dd:M:yy') | 12:1:24 |
737 | date_format(current_date, 'd:M:yyyy') | 12:1:2024 |
738 | date_format(current_date, 'd:M:yy') | 12:1:24 |
739 | date_format(current_date, 'E:M:yyyy') | Fri:1:2024 |
740 | date_format(current_date, 'E:M:yy') | Fri:1:24 |
741 | date_format(current_date, 'EEEE:M:yyyy') | Friday:1:2024 |
742 | date_format(current_date, 'EEEE:M:yy') | Friday:1:24 |
743 | date_format(current_date, 'dd:MMM:yyyy') | 12:Jan:2024 |
744 | date_format(current_date, 'dd:MMM:yy') | 12:Jan:24 |
745 | date_format(current_date, 'd:MMM:yyyy') | 12:Jan:2024 |
746 | date_format(current_date, 'd:MMM:yy') | 12:Jan:24 |
747 | date_format(current_date, 'E:MMM:yyyy') | Fri:Jan:2024 |
748 | date_format(current_date, 'E:MMM:yy') | Fri:Jan:24 |
749 | date_format(current_date, 'EEEE:MMM:yyyy') | Friday:Jan:2024 |
750 | date_format(current_date, 'EEEE:MMM:yy') | Friday:Jan:24 |
751 | date_format(current_date, 'dd:MMMM:yyyy') | 12:January:2024 |
752 | date_format(current_date, 'dd:MMMM:yy') | 12:January:24 |
753 | date_format(current_date, 'd:MMMM:yyyy') | 12:January:2024 |
754 | date_format(current_date, 'd:MMMM:yy') | 12:January:24 |
755 | date_format(current_date, 'E:MMMM:yyyy') | Fri:January:2024 |
756 | date_format(current_date, 'E:MMMM:yy') | Fri:January:24 |
757 | date_format(current_date, 'EEEE:MMMM:yyyy') | Friday:January:2024 |
758 | date_format(current_date, 'EEEE:MMMM:yy') | Friday:January:24 |
759 | date_format(current_date, 'dd.MM.yyyy') | 12.01.2024 |
760 | date_format(current_date, 'dd.MM.yy') | 12.01.24 |
761 | date_format(current_date, 'd.MM.yyyy') | 12.01.2024 |
762 | date_format(current_date, 'd.MM.yy') | 12.01.24 |
763 | date_format(current_date, 'E.MM.yyyy') | Fri.01.2024 |
764 | date_format(current_date, 'E.MM.yy') | Fri.01.24 |
765 | date_format(current_date, 'EEEE.MM.yyyy') | Friday.01.2024 |
766 | date_format(current_date, 'EEEE.MM.yy') | Friday.01.24 |
767 | date_format(current_date, 'dd.M.yyyy') | 12.1.2024 |
768 | date_format(current_date, 'dd.M.yy') | 12.1.24 |
769 | date_format(current_date, 'd.M.yyyy') | 12.1.2024 |
770 | date_format(current_date, 'd.M.yy') | 12.1.24 |
771 | date_format(current_date, 'E.M.yyyy') | Fri.1.2024 |
772 | date_format(current_date, 'E.M.yy') | Fri.1.24 |
773 | date_format(current_date, 'EEEE.M.yyyy') | Friday.1.2024 |
774 | date_format(current_date, 'EEEE.M.yy') | Friday.1.24 |
775 | date_format(current_date, 'dd.MMM.yyyy') | 12.Jan.2024 |
776 | date_format(current_date, 'dd.MMM.yy') | 12.Jan.24 |
777 | date_format(current_date, 'd.MMM.yyyy') | 12.Jan.2024 |
778 | date_format(current_date, 'd.MMM.yy') | 12.Jan.24 |
779 | date_format(current_date, 'E.MMM.yyyy') | Fri.Jan.2024 |
780 | date_format(current_date, 'E.MMM.yy') | Fri.Jan.24 |
781 | date_format(current_date, 'EEEE.MMM.yyyy') | Friday.Jan.2024 |
782 | date_format(current_date, 'EEEE.MMM.yy') | Friday.Jan.24 |
783 | date_format(current_date, 'dd.MMMM.yyyy') | 12.January.2024 |
784 | date_format(current_date, 'dd.MMMM.yy') | 12.January.24 |
785 | date_format(current_date, 'd.MMMM.yyyy') | 12.January.2024 |
786 | date_format(current_date, 'd.MMMM.yy') | 12.January.24 |
787 | date_format(current_date, 'E.MMMM.yyyy') | Fri.January.2024 |
788 | date_format(current_date, 'E.MMMM.yy') | Fri.January.24 |
789 | date_format(current_date, 'EEEE.MMMM.yyyy') | Friday.January.2024 |
790 | date_format(current_date, 'EEEE.MMMM.yy') | Friday.January.24 |
791 | date_format(current_date, 'dd MM yyyy') | 12 01 2024 |
792 | date_format(current_date, 'dd MM yy') | 12 01 24 |
793 | date_format(current_date, 'd MM yyyy') | 12 01 2024 |
794 | date_format(current_date, 'd MM yy') | 12 01 24 |
795 | date_format(current_date, 'E MM yyyy') | Fri 01 2024 |
796 | date_format(current_date, 'E MM yy') | Fri 01 24 |
797 | date_format(current_date, 'EEEE MM yyyy') | Friday 01 2024 |
798 | date_format(current_date, 'EEEE MM yy') | Friday 01 24 |
799 | date_format(current_date, 'dd M yyyy') | 12 1 2024 |
800 | date_format(current_date, 'dd M yy') | 12 1 24 |
801 | date_format(current_date, 'd M yyyy') | 12 1 2024 |
802 | date_format(current_date, 'd M yy') | 12 1 24 |
803 | date_format(current_date, 'E M yyyy') | Fri 1 2024 |
804 | date_format(current_date, 'E M yy') | Fri 1 24 |
805 | date_format(current_date, 'EEEE M yyyy') | Friday 1 2024 |
806 | date_format(current_date, 'EEEE M yy') | Friday 1 24 |
807 | date_format(current_date, 'dd MMM yyyy') | 12 Jan 2024 |
808 | date_format(current_date, 'dd MMM yy') | 12 Jan 24 |
809 | date_format(current_date, 'd MMM yyyy') | 12 Jan 2024 |
810 | date_format(current_date, 'd MMM yy') | 12 Jan 24 |
811 | date_format(current_date, 'E MMM yyyy') | Fri Jan 2024 |
812 | date_format(current_date, 'E MMM yy') | Fri Jan 24 |
813 | date_format(current_date, 'EEEE MMM yyyy') | Friday Jan 2024 |
814 | date_format(current_date, 'EEEE MMM yy') | Friday Jan 24 |
815 | date_format(current_date, 'dd MMMM yyyy') | 12 January 2024 |
816 | date_format(current_date, 'dd MMMM yy') | 12 January 24 |
817 | date_format(current_date, 'd MMMM yyyy') | 12 January 2024 |
818 | date_format(current_date, 'd MMMM yy') | 12 January 24 |
819 | date_format(current_date, 'E MMMM yyyy') | Fri January 2024 |
820 | date_format(current_date, 'E MMMM yy') | Fri January 24 |
821 | date_format(current_date, 'EEEE MMMM yyyy') | Friday January 2024 |
822 | date_format(current_date, 'EEEE MMMM yy') | Friday January 24 |
823 | date_format(current_date, 'ddMMyyyy') | 12012024 |
824 | date_format(current_date, 'ddMMyy') | 120124 |
825 | date_format(current_date, 'dMMyyyy') | 12012024 |
826 | date_format(current_date, 'dMMyy') | 120124 |
827 | date_format(current_date, 'EMMyyyy') | Fri012024 |
828 | date_format(current_date, 'EMMyy') | Fri0124 |
829 | date_format(current_date, 'EEEEMMyyyy') | Friday012024 |
830 | date_format(current_date, 'EEEEMMyy') | Friday0124 |
831 | date_format(current_date, 'ddMyyyy') | 1212024 |
832 | date_format(current_date, 'ddMyy') | 12124 |
833 | date_format(current_date, 'dMyyyy') | 1212024 |
834 | date_format(current_date, 'dMyy') | 12124 |
835 | date_format(current_date, 'EMyyyy') | Fri12024 |
836 | date_format(current_date, 'EMyy') | Fri124 |
837 | date_format(current_date, 'EEEEMyyyy') | Friday12024 |
838 | date_format(current_date, 'EEEEMyy') | Friday124 |
839 | date_format(current_date, 'ddMMMyyyy') | 12Jan2024 |
840 | date_format(current_date, 'ddMMMyy') | 12Jan24 |
841 | date_format(current_date, 'dMMMyyyy') | 12Jan2024 |
842 | date_format(current_date, 'dMMMyy') | 12Jan24 |
843 | date_format(current_date, 'EMMMyyyy') | FriJan2024 |
844 | date_format(current_date, 'EMMMyy') | FriJan24 |
845 | date_format(current_date, 'EEEEMMMyyyy') | FridayJan2024 |
846 | date_format(current_date, 'EEEEMMMyy') | FridayJan24 |
847 | date_format(current_date, 'ddMMMMyyyy') | 12January2024 |
848 | date_format(current_date, 'ddMMMMyy') | 12January24 |
849 | date_format(current_date, 'dMMMMyyyy') | 12January2024 |
850 | date_format(current_date, 'dMMMMyy') | 12January24 |
851 | date_format(current_date, 'EMMMMyyyy') | FriJanuary2024 |
852 | date_format(current_date, 'EMMMMyy') | FriJanuary24 |
853 | date_format(current_date, 'EEEEMMMMyyyy') | FridayJanuary2024 |
854 | date_format(current_date, 'EEEEMMMMyy') | FridayJanuary24 |
855 | date_format(current_date, 'E MMM dd, yyyy') | Fri Jan 12, 2024 |
856 | date_format(current_date, 'EEEE MMM dd, yyyy') | Friday Jan 12, 2024 |
857 | date_format(current_date, 'E MMMM dd, yyyy') | Fri January 12, 2024 |
858 | date_format(current_date, 'EEEE MMMM dd, yyyy') | Friday January 12, 2024 |
1 | date '2024-12-31' | 2024-12-31 |
2 | date_format(date '2024-12-31', 'yyyy') | 2024 |
3 | date_format(date '2024-12-31', 'yy') | 24 |
4 | date_format(date '2024-12-31', 'M') | 12 |
5 | date_format(date '2024-12-31', 'MM') | 12 |
6 | date_format(date '2024-12-31', 'MMM') | Dec |
7 | date_format(date '2024-12-31', 'MMMM') | December |
8 | date_format(date '2024-12-31', 'd') | 31 |
9 | date_format(date '2024-12-31', 'dd') | 31 |
10 | date_format(date '2024-12-31', 'E') | Tue |
11 | date_format(date '2024-12-31', 'EEEE') | Tuesday |
12 | date_format(date '2024-12-31', 'h') | 12 |
13 | date_format(date '2024-12-31', 'hh') | 12 |
14 | date_format(date '2024-12-31', 'H') | 0 |
15 | date_format(date '2024-12-31', 'HH') | 00 |
16 | date_format(date '2024-12-31', 'm') | 0 |
17 | date_format(date '2024-12-31', 'mm') | 00 |
18 | date_format(date '2024-12-31', 's') | 0 |
19 | date_format(date '2024-12-31', 'ss') | 00 |
20 | date_format(date '2024-12-31', 'a') | AM |
21 | date_format(date '2024-12-31', 'S') | 0 |
22 | date_format(date '2024-12-31', 'SS') | 00 |
23 | date_format(date '2024-12-31', 'SSS') | 000 |
24 | date_format(date '2024-12-31', 'SSSS') | 0000 |
25 | date_format(date '2024-12-31', 'SSSSS') | 00000 |
26 | date_format(date '2024-12-31', 'SSSSSS') | 000000 |
27 | date_format(date '2024-12-31', 'yyyy-MM') | 2024-12 |
28 | date_format(date '2024-12-31', 'yy-MM') | 24-12 |
29 | date_format(date '2024-12-31', 'yyyy/MM') | 2024/12 |
30 | date_format(date '2024-12-31', 'yy/MM') | 24/12 |
31 | date_format(date '2024-12-31', 'yyyy:MM') | 2024:12 |
32 | date_format(date '2024-12-31', 'yy:MM') | 24:12 |
33 | date_format(date '2024-12-31', 'yyyy.MM') | 2024.12 |
34 | date_format(date '2024-12-31', 'yy.MM') | 24.12 |
35 | date_format(date '2024-12-31', 'yyyy MM') | 2024 12 |
36 | date_format(date '2024-12-31', 'yy MM') | 24 12 |
37 | date_format(date '2024-12-31', 'yyyyMM') | 202412 |
38 | date_format(date '2024-12-31', 'yyMM') | 2412 |
39 | date_format(date '2024-12-31', 'yyyy-MM-dd') | 2024-12-31 |
40 | date_format(date '2024-12-31', 'yy-MM-dd') | 24-12-31 |
41 | date_format(date '2024-12-31', 'yyyy/MM/dd') | 2024/12/31 |
42 | date_format(date '2024-12-31', 'yy/MM/dd') | 24/12/31 |
43 | date_format(date '2024-12-31', 'yyyy:MM:dd') | 2024:12:31 |
44 | date_format(date '2024-12-31', 'yy:MM:dd') | 24:12:31 |
45 | date_format(date '2024-12-31', 'yyyy.MM.dd') | 2024.12.31 |
46 | date_format(date '2024-12-31', 'yy.MM.dd') | 24.12.31 |
47 | date_format(date '2024-12-31', 'yyyy MM dd') | 2024 12 31 |
48 | date_format(date '2024-12-31', 'yy MM dd') | 24 12 31 |
49 | date_format(date '2024-12-31', 'yyyyMMdd') | 20241231 |
50 | date_format(date '2024-12-31', 'yyMMdd') | 241231 |
51 | date_format(date '2024-12-31', 'yyyy-M-dd') | 2024-12-31 |
52 | date_format(date '2024-12-31', 'yy-M-dd') | 24-12-31 |
53 | date_format(date '2024-12-31', 'yyyy/M/dd') | 2024/12/31 |
54 | date_format(date '2024-12-31', 'yy/M/dd') | 24/12/31 |
55 | date_format(date '2024-12-31', 'yyyy:M:dd') | 2024:12:31 |
56 | date_format(date '2024-12-31', 'yy:M:dd') | 24:12:31 |
57 | date_format(date '2024-12-31', 'yyyy.M.dd') | 2024.12.31 |
58 | date_format(date '2024-12-31', 'yy.M.dd') | 24.12.31 |
59 | date_format(date '2024-12-31', 'yyyy M dd') | 2024 12 31 |
60 | date_format(date '2024-12-31', 'yy M dd') | 24 12 31 |
61 | date_format(date '2024-12-31', 'yyyyMdd') | 20241231 |
62 | date_format(date '2024-12-31', 'yyMdd') | 241231 |
63 | date_format(date '2024-12-31', 'yyyy-MMM-dd') | 2024-Dec-31 |
64 | date_format(date '2024-12-31', 'yy-MMM-dd') | 24-Dec-31 |
65 | date_format(date '2024-12-31', 'yyyy/MMM/dd') | 2024/Dec/31 |
66 | date_format(date '2024-12-31', 'yy/MMM/dd') | 24/Dec/31 |
67 | date_format(date '2024-12-31', 'yyyy:MMM:dd') | 2024:Dec:31 |
68 | date_format(date '2024-12-31', 'yy:MMM:dd') | 24:Dec:31 |
69 | date_format(date '2024-12-31', 'yyyy.MMM.dd') | 2024.Dec.31 |
70 | date_format(date '2024-12-31', 'yy.MMM.dd') | 24.Dec.31 |
71 | date_format(date '2024-12-31', 'yyyy MMM dd') | 2024 Dec 31 |
72 | date_format(date '2024-12-31', 'yy MMM dd') | 24 Dec 31 |
73 | date_format(date '2024-12-31', 'yyyyMMMdd') | 2024Dec31 |
74 | date_format(date '2024-12-31', 'yyMMMdd') | 24Dec31 |
75 | date_format(date '2024-12-31', 'yyyy-MMMM-dd') | 2024-December-31 |
76 | date_format(date '2024-12-31', 'yy-MMMM-dd') | 24-December-31 |
77 | date_format(date '2024-12-31', 'yyyy/MMMM/dd') | 2024/December/31 |
78 | date_format(date '2024-12-31', 'yy/MMMM/dd') | 24/December/31 |
79 | date_format(date '2024-12-31', 'yyyy:MMMM:dd') | 2024:December:31 |
80 | date_format(date '2024-12-31', 'yy:MMMM:dd') | 24:December:31 |
81 | date_format(date '2024-12-31', 'yyyy.MMMM.dd') | 2024.December.31 |
82 | date_format(date '2024-12-31', 'yy.MMMM.dd') | 24.December.31 |
83 | date_format(date '2024-12-31', 'yyyy MMMM dd') | 2024 December 31 |
84 | date_format(date '2024-12-31', 'yy MMMM dd') | 24 December 31 |
85 | date_format(date '2024-12-31', 'yyyyMMMMdd') | 2024December31 |
86 | date_format(date '2024-12-31', 'yyMMMMdd') | 24December31 |
87 | date_format(date '2024-12-31', 'yyyy-MM-d') | 2024-12-31 |
88 | date_format(date '2024-12-31', 'yy-MM-d') | 24-12-31 |
89 | date_format(date '2024-12-31', 'yyyy/MM/d') | 2024/12/31 |
90 | date_format(date '2024-12-31', 'yy/MM/d') | 24/12/31 |
91 | date_format(date '2024-12-31', 'yyyy:MM:d') | 2024:12:31 |
92 | date_format(date '2024-12-31', 'yy:MM:d') | 24:12:31 |
93 | date_format(date '2024-12-31', 'yyyy.MM.d') | 2024.12.31 |
94 | date_format(date '2024-12-31', 'yy.MM.d') | 24.12.31 |
95 | date_format(date '2024-12-31', 'yyyy MM d') | 2024 12 31 |
96 | date_format(date '2024-12-31', 'yy MM d') | 24 12 31 |
97 | date_format(date '2024-12-31', 'yyyyMMd') | 20241231 |
98 | date_format(date '2024-12-31', 'yyMMd') | 241231 |
99 | date_format(date '2024-12-31', 'yyyy-M-d') | 2024-12-31 |
100 | date_format(date '2024-12-31', 'yy-M-d') | 24-12-31 |
101 | date_format(date '2024-12-31', 'yyyy/M/d') | 2024/12/31 |
102 | date_format(date '2024-12-31', 'yy/M/d') | 24/12/31 |
103 | date_format(date '2024-12-31', 'yyyy:M:d') | 2024:12:31 |
104 | date_format(date '2024-12-31', 'yy:M:d') | 24:12:31 |
105 | date_format(date '2024-12-31', 'yyyy.M.d') | 2024.12.31 |
106 | date_format(date '2024-12-31', 'yy.M.d') | 24.12.31 |
107 | date_format(date '2024-12-31', 'yyyy M d') | 2024 12 31 |
108 | date_format(date '2024-12-31', 'yy M d') | 24 12 31 |
109 | date_format(date '2024-12-31', 'yyyyMd') | 20241231 |
110 | date_format(date '2024-12-31', 'yyMd') | 241231 |
111 | date_format(date '2024-12-31', 'yyyy-MMM-d') | 2024-Dec-31 |
112 | date_format(date '2024-12-31', 'yy-MMM-d') | 24-Dec-31 |
113 | date_format(date '2024-12-31', 'yyyy/MMM/d') | 2024/Dec/31 |
114 | date_format(date '2024-12-31', 'yy/MMM/d') | 24/Dec/31 |
115 | date_format(date '2024-12-31', 'yyyy:MMM:d') | 2024:Dec:31 |
116 | date_format(date '2024-12-31', 'yy:MMM:d') | 24:Dec:31 |
117 | date_format(date '2024-12-31', 'yyyy.MMM.d') | 2024.Dec.31 |
118 | date_format(date '2024-12-31', 'yy.MMM.d') | 24.Dec.31 |
119 | date_format(date '2024-12-31', 'yyyy MMM d') | 2024 Dec 31 |
120 | date_format(date '2024-12-31', 'yy MMM d') | 24 Dec 31 |
121 | date_format(date '2024-12-31', 'yyyyMMMd') | 2024Dec31 |
122 | date_format(date '2024-12-31', 'yyMMMd') | 24Dec31 |
123 | date_format(date '2024-12-31', 'yyyy-MMMM-d') | 2024-December-31 |
124 | date_format(date '2024-12-31', 'yy-MMMM-d') | 24-December-31 |
125 | date_format(date '2024-12-31', 'yyyy/MMMM/d') | 2024/December/31 |
126 | date_format(date '2024-12-31', 'yy/MMMM/d') | 24/December/31 |
127 | date_format(date '2024-12-31', 'yyyy:MMMM:d') | 2024:December:31 |
128 | date_format(date '2024-12-31', 'yy:MMMM:d') | 24:December:31 |
129 | date_format(date '2024-12-31', 'yyyy.MMMM.d') | 2024.December.31 |
130 | date_format(date '2024-12-31', 'yy.MMMM.d') | 24.December.31 |
131 | date_format(date '2024-12-31', 'yyyy MMMM d') | 2024 December 31 |
132 | date_format(date '2024-12-31', 'yy MMMM d') | 24 December 31 |
133 | date_format(date '2024-12-31', 'yyyyMMMMd') | 2024December31 |
134 | date_format(date '2024-12-31', 'yyMMMMd') | 24December31 |
135 | date_format(date '2024-12-31', 'yyyy-MM-E') | 2024-12-Tue |
136 | date_format(date '2024-12-31', 'yy-MM-E') | 24-12-Tue |
137 | date_format(date '2024-12-31', 'yyyy/MM/E') | 2024/12/Tue |
138 | date_format(date '2024-12-31', 'yy/MM/E') | 24/12/Tue |
139 | date_format(date '2024-12-31', 'yyyy:MM:E') | 2024:12:Tue |
140 | date_format(date '2024-12-31', 'yy:MM:E') | 24:12:Tue |
141 | date_format(date '2024-12-31', 'yyyy.MM.E') | 2024.12.Tue |
142 | date_format(date '2024-12-31', 'yy.MM.E') | 24.12.Tue |
143 | date_format(date '2024-12-31', 'yyyy MM E') | 2024 12 Tue |
144 | date_format(date '2024-12-31', 'yy MM E') | 24 12 Tue |
145 | date_format(date '2024-12-31', 'yyyyMME') | 202412Tue |
146 | date_format(date '2024-12-31', 'yyMME') | 2412Tue |
147 | date_format(date '2024-12-31', 'yyyy-M-E') | 2024-12-Tue |
148 | date_format(date '2024-12-31', 'yy-M-E') | 24-12-Tue |
149 | date_format(date '2024-12-31', 'yyyy/M/E') | 2024/12/Tue |
150 | date_format(date '2024-12-31', 'yy/M/E') | 24/12/Tue |
151 | date_format(date '2024-12-31', 'yyyy:M:E') | 2024:12:Tue |
152 | date_format(date '2024-12-31', 'yy:M:E') | 24:12:Tue |
153 | date_format(date '2024-12-31', 'yyyy.M.E') | 2024.12.Tue |
154 | date_format(date '2024-12-31', 'yy.M.E') | 24.12.Tue |
155 | date_format(date '2024-12-31', 'yyyy M E') | 2024 12 Tue |
156 | date_format(date '2024-12-31', 'yy M E') | 24 12 Tue |
157 | date_format(date '2024-12-31', 'yyyyME') | 202412Tue |
158 | date_format(date '2024-12-31', 'yyME') | 2412Tue |
159 | date_format(date '2024-12-31', 'yyyy-MMM-E') | 2024-Dec-Tue |
160 | date_format(date '2024-12-31', 'yy-MMM-E') | 24-Dec-Tue |
161 | date_format(date '2024-12-31', 'yyyy/MMM/E') | 2024/Dec/Tue |
162 | date_format(date '2024-12-31', 'yy/MMM/E') | 24/Dec/Tue |
163 | date_format(date '2024-12-31', 'yyyy:MMM:E') | 2024:Dec:Tue |
164 | date_format(date '2024-12-31', 'yy:MMM:E') | 24:Dec:Tue |
165 | date_format(date '2024-12-31', 'yyyy.MMM.E') | 2024.Dec.Tue |
166 | date_format(date '2024-12-31', 'yy.MMM.E') | 24.Dec.Tue |
167 | date_format(date '2024-12-31', 'yyyy MMM E') | 2024 Dec Tue |
168 | date_format(date '2024-12-31', 'yy MMM E') | 24 Dec Tue |
169 | date_format(date '2024-12-31', 'yyyyMMME') | 2024DecTue |
170 | date_format(date '2024-12-31', 'yyMMME') | 24DecTue |
171 | date_format(date '2024-12-31', 'yyyy-MMMM-E') | 2024-December-Tue |
172 | date_format(date '2024-12-31', 'yy-MMMM-E') | 24-December-Tue |
173 | date_format(date '2024-12-31', 'yyyy/MMMM/E') | 2024/December/Tue |
174 | date_format(date '2024-12-31', 'yy/MMMM/E') | 24/December/Tue |
175 | date_format(date '2024-12-31', 'yyyy:MMMM:E') | 2024:December:Tue |
176 | date_format(date '2024-12-31', 'yy:MMMM:E') | 24:December:Tue |
177 | date_format(date '2024-12-31', 'yyyy.MMMM.E') | 2024.December.Tue |
178 | date_format(date '2024-12-31', 'yy.MMMM.E') | 24.December.Tue |
179 | date_format(date '2024-12-31', 'yyyy MMMM E') | 2024 December Tue |
180 | date_format(date '2024-12-31', 'yy MMMM E') | 24 December Tue |
181 | date_format(date '2024-12-31', 'yyyyMMMME') | 2024DecemberTue |
182 | date_format(date '2024-12-31', 'yyMMMME') | 24DecemberTue |
183 | date_format(date '2024-12-31', 'yyyy-MM-EEEE') | 2024-12-Tuesday |
184 | date_format(date '2024-12-31', 'yy-MM-EEEE') | 24-12-Tuesday |
185 | date_format(date '2024-12-31', 'yyyy/MM/EEEE') | 2024/12/Tuesday |
186 | date_format(date '2024-12-31', 'yy/MM/EEEE') | 24/12/Tuesday |
187 | date_format(date '2024-12-31', 'yyyy:MM:EEEE') | 2024:12:Tuesday |
188 | date_format(date '2024-12-31', 'yy:MM:EEEE') | 24:12:Tuesday |
189 | date_format(date '2024-12-31', 'yyyy.MM.EEEE') | 2024.12.Tuesday |
190 | date_format(date '2024-12-31', 'yy.MM.EEEE') | 24.12.Tuesday |
191 | date_format(date '2024-12-31', 'yyyy MM EEEE') | 2024 12 Tuesday |
192 | date_format(date '2024-12-31', 'yy MM EEEE') | 24 12 Tuesday |
193 | date_format(date '2024-12-31', 'yyyyMMEEEE') | 202412Tuesday |
194 | date_format(date '2024-12-31', 'yyMMEEEE') | 2412Tuesday |
195 | date_format(date '2024-12-31', 'yyyy-M-EEEE') | 2024-12-Tuesday |
196 | date_format(date '2024-12-31', 'yy-M-EEEE') | 24-12-Tuesday |
197 | date_format(date '2024-12-31', 'yyyy/M/EEEE') | 2024/12/Tuesday |
198 | date_format(date '2024-12-31', 'yy/M/EEEE') | 24/12/Tuesday |
199 | date_format(date '2024-12-31', 'yyyy:M:EEEE') | 2024:12:Tuesday |
200 | date_format(date '2024-12-31', 'yy:M:EEEE') | 24:12:Tuesday |
201 | date_format(date '2024-12-31', 'yyyy.M.EEEE') | 2024.12.Tuesday |
202 | date_format(date '2024-12-31', 'yy.M.EEEE') | 24.12.Tuesday |
203 | date_format(date '2024-12-31', 'yyyy M EEEE') | 2024 12 Tuesday |
204 | date_format(date '2024-12-31', 'yy M EEEE') | 24 12 Tuesday |
205 | date_format(date '2024-12-31', 'yyyyMEEEE') | 202412Tuesday |
206 | date_format(date '2024-12-31', 'yyMEEEE') | 2412Tuesday |
207 | date_format(date '2024-12-31', 'yyyy-MMM-EEEE') | 2024-Dec-Tuesday |
208 | date_format(date '2024-12-31', 'yy-MMM-EEEE') | 24-Dec-Tuesday |
209 | date_format(date '2024-12-31', 'yyyy/MMM/EEEE') | 2024/Dec/Tuesday |
210 | date_format(date '2024-12-31', 'yy/MMM/EEEE') | 24/Dec/Tuesday |
211 | date_format(date '2024-12-31', 'yyyy:MMM:EEEE') | 2024:Dec:Tuesday |
212 | date_format(date '2024-12-31', 'yy:MMM:EEEE') | 24:Dec:Tuesday |
213 | date_format(date '2024-12-31', 'yyyy.MMM.EEEE') | 2024.Dec.Tuesday |
214 | date_format(date '2024-12-31', 'yy.MMM.EEEE') | 24.Dec.Tuesday |
215 | date_format(date '2024-12-31', 'yyyy MMM EEEE') | 2024 Dec Tuesday |
216 | date_format(date '2024-12-31', 'yy MMM EEEE') | 24 Dec Tuesday |
217 | date_format(date '2024-12-31', 'yyyyMMMEEEE') | 2024DecTuesday |
218 | date_format(date '2024-12-31', 'yyMMMEEEE') | 24DecTuesday |
219 | date_format(date '2024-12-31', 'yyyy-MMMM-EEEE') | 2024-December-Tuesday |
220 | date_format(date '2024-12-31', 'yy-MMMM-EEEE') | 24-December-Tuesday |
221 | date_format(date '2024-12-31', 'yyyy/MMMM/EEEE') | 2024/December/Tuesday |
222 | date_format(date '2024-12-31', 'yy/MMMM/EEEE') | 24/December/Tuesday |
223 | date_format(date '2024-12-31', 'yyyy:MMMM:EEEE') | 2024:December:Tuesday |
224 | date_format(date '2024-12-31', 'yy:MMMM:EEEE') | 24:December:Tuesday |
225 | date_format(date '2024-12-31', 'yyyy.MMMM.EEEE') | 2024.December.Tuesday |
226 | date_format(date '2024-12-31', 'yy.MMMM.EEEE') | 24.December.Tuesday |
227 | date_format(date '2024-12-31', 'yyyy MMMM EEEE') | 2024 December Tuesday |
228 | date_format(date '2024-12-31', 'yy MMMM EEEE') | 24 December Tuesday |
229 | date_format(date '2024-12-31', 'yyyyMMMMEEEE') | 2024DecemberTuesday |
230 | date_format(date '2024-12-31', 'yyMMMMEEEE') | 24DecemberTuesday |
231 | date_format(date '2024-12-31', 'MM-dd') | 12-31 |
232 | date_format(date '2024-12-31', 'MM-d') | 12-31 |
233 | date_format(date '2024-12-31', 'MM-E') | 12-Tue |
234 | date_format(date '2024-12-31', 'MM-EEEE') | 12-Tuesday |
235 | date_format(date '2024-12-31', 'M-d') | 12-31 |
236 | date_format(date '2024-12-31', 'M-dd') | 12-31 |
237 | date_format(date '2024-12-31', 'M-E') | 12-Tue |
238 | date_format(date '2024-12-31', 'M-EEEE') | 12-Tuesday |
239 | date_format(date '2024-12-31', 'MMM-d') | Dec-31 |
240 | date_format(date '2024-12-31', 'MMM-dd') | Dec-31 |
241 | date_format(date '2024-12-31', 'MMM-E') | Dec-Tue |
242 | date_format(date '2024-12-31', 'MMM-EEEE') | Dec-Tuesday |
243 | date_format(date '2024-12-31', 'MMMM-d') | December-31 |
244 | date_format(date '2024-12-31', 'MMMM-dd') | December-31 |
245 | date_format(date '2024-12-31', 'MMMM-E') | December-Tue |
246 | date_format(date '2024-12-31', 'MMMM-EEEE') | December-Tuesday |
247 | date_format(date '2024-12-31', 'MM-yyyy') | 12-2024 |
248 | date_format(date '2024-12-31', 'MM-yy') | 12-24 |
249 | date_format(date '2024-12-31', 'M-yyyy') | 12-2024 |
250 | date_format(date '2024-12-31', 'M-yy') | 12-24 |
251 | date_format(date '2024-12-31', 'MMM-yyyy') | Dec-2024 |
252 | date_format(date '2024-12-31', 'MMM-yy') | Dec-24 |
253 | date_format(date '2024-12-31', 'MMMM-yyyy') | December-2024 |
254 | date_format(date '2024-12-31', 'MMMM-yy') | December-24 |
255 | date_format(date '2024-12-31', 'MM/dd') | 12/31 |
256 | date_format(date '2024-12-31', 'MM/d') | 12/31 |
257 | date_format(date '2024-12-31', 'MM/E') | 12/Tue |
258 | date_format(date '2024-12-31', 'MM/EEEE') | 12/Tuesday |
259 | date_format(date '2024-12-31', 'M/d') | 12/31 |
260 | date_format(date '2024-12-31', 'M/dd') | 12/31 |
261 | date_format(date '2024-12-31', 'M/E') | 12/Tue |
262 | date_format(date '2024-12-31', 'M/EEEE') | 12/Tuesday |
263 | date_format(date '2024-12-31', 'MMM/d') | Dec/31 |
264 | date_format(date '2024-12-31', 'MMM/dd') | Dec/31 |
265 | date_format(date '2024-12-31', 'MMM/E') | Dec/Tue |
266 | date_format(date '2024-12-31', 'MMM/EEEE') | Dec/Tuesday |
267 | date_format(date '2024-12-31', 'MMMM/d') | December/31 |
268 | date_format(date '2024-12-31', 'MMMM/dd') | December/31 |
269 | date_format(date '2024-12-31', 'MMMM/E') | December/Tue |
270 | date_format(date '2024-12-31', 'MMMM/EEEE') | December/Tuesday |
271 | date_format(date '2024-12-31', 'MM/yyyy') | 12/2024 |
272 | date_format(date '2024-12-31', 'MM/yy') | 12/24 |
273 | date_format(date '2024-12-31', 'M/yyyy') | 12/2024 |
274 | date_format(date '2024-12-31', 'M/yy') | 12/24 |
275 | date_format(date '2024-12-31', 'MMM/yyyy') | Dec/2024 |
276 | date_format(date '2024-12-31', 'MMM/yy') | Dec/24 |
277 | date_format(date '2024-12-31', 'MMMM/yyyy') | December/2024 |
278 | date_format(date '2024-12-31', 'MMMM/yy') | December/24 |
279 | date_format(date '2024-12-31', 'MM:dd') | 12:31 |
280 | date_format(date '2024-12-31', 'MM:d') | 12:31 |
281 | date_format(date '2024-12-31', 'MM:E') | 12:Tue |
282 | date_format(date '2024-12-31', 'MM:EEEE') | 12:Tuesday |
283 | date_format(date '2024-12-31', 'M:d') | 12:31 |
284 | date_format(date '2024-12-31', 'M:dd') | 12:31 |
285 | date_format(date '2024-12-31', 'M:E') | 12:Tue |
286 | date_format(date '2024-12-31', 'M:EEEE') | 12:Tuesday |
287 | date_format(date '2024-12-31', 'MMM:d') | Dec:31 |
288 | date_format(date '2024-12-31', 'MMM:dd') | Dec:31 |
289 | date_format(date '2024-12-31', 'MMM:E') | Dec:Tue |
290 | date_format(date '2024-12-31', 'MMM:EEEE') | Dec:Tuesday |
291 | date_format(date '2024-12-31', 'MMMM:d') | December:31 |
292 | date_format(date '2024-12-31', 'MMMM:dd') | December:31 |
293 | date_format(date '2024-12-31', 'MMMM:E') | December:Tue |
294 | date_format(date '2024-12-31', 'MMMM:EEEE') | December:Tuesday |
295 | date_format(date '2024-12-31', 'MM:yyyy') | 12:2024 |
296 | date_format(date '2024-12-31', 'MM:yy') | 12:24 |
297 | date_format(date '2024-12-31', 'M:yyyy') | 12:2024 |
298 | date_format(date '2024-12-31', 'M:yy') | 12:24 |
299 | date_format(date '2024-12-31', 'MMM:yyyy') | Dec:2024 |
300 | date_format(date '2024-12-31', 'MMM:yy') | Dec:24 |
301 | date_format(date '2024-12-31', 'MMMM:yyyy') | December:2024 |
302 | date_format(date '2024-12-31', 'MMMM:yy') | December:24 |
303 | date_format(date '2024-12-31', 'MM.dd') | 12.31 |
304 | date_format(date '2024-12-31', 'MM.d') | 12.31 |
305 | date_format(date '2024-12-31', 'MM.E') | 12.Tue |
306 | date_format(date '2024-12-31', 'MM.EEEE') | 12.Tuesday |
307 | date_format(date '2024-12-31', 'M.d') | 12.31 |
308 | date_format(date '2024-12-31', 'M.dd') | 12.31 |
309 | date_format(date '2024-12-31', 'M.E') | 12.Tue |
310 | date_format(date '2024-12-31', 'M.EEEE') | 12.Tuesday |
311 | date_format(date '2024-12-31', 'MMM.d') | Dec.31 |
312 | date_format(date '2024-12-31', 'MMM.dd') | Dec.31 |
313 | date_format(date '2024-12-31', 'MMM.E') | Dec.Tue |
314 | date_format(date '2024-12-31', 'MMM.EEEE') | Dec.Tuesday |
315 | date_format(date '2024-12-31', 'MMMM.d') | December.31 |
316 | date_format(date '2024-12-31', 'MMMM.dd') | December.31 |
317 | date_format(date '2024-12-31', 'MMMM.E') | December.Tue |
318 | date_format(date '2024-12-31', 'MMMM.EEEE') | December.Tuesday |
319 | date_format(date '2024-12-31', 'MM.yyyy') | 12.2024 |
320 | date_format(date '2024-12-31', 'MM.yy') | 12.24 |
321 | date_format(date '2024-12-31', 'M.yyyy') | 12.2024 |
322 | date_format(date '2024-12-31', 'M.yy') | 12.24 |
323 | date_format(date '2024-12-31', 'MMM.yyyy') | Dec.2024 |
324 | date_format(date '2024-12-31', 'MMM.yy') | Dec.24 |
325 | date_format(date '2024-12-31', 'MMMM.yyyy') | December.2024 |
326 | date_format(date '2024-12-31', 'MMMM.yy') | December.24 |
327 | date_format(date '2024-12-31', 'MM dd') | 12 31 |
328 | date_format(date '2024-12-31', 'MM d') | 12 31 |
329 | date_format(date '2024-12-31', 'MM E') | 12 Tue |
330 | date_format(date '2024-12-31', 'MM EEEE') | 12 Tuesday |
331 | date_format(date '2024-12-31', 'M d') | 12 31 |
332 | date_format(date '2024-12-31', 'M dd') | 12 31 |
333 | date_format(date '2024-12-31', 'M E') | 12 Tue |
334 | date_format(date '2024-12-31', 'M EEEE') | 12 Tuesday |
335 | date_format(date '2024-12-31', 'MMM d') | Dec 31 |
336 | date_format(date '2024-12-31', 'MMM dd') | Dec 31 |
337 | date_format(date '2024-12-31', 'MMM E') | Dec Tue |
338 | date_format(date '2024-12-31', 'MMM EEEE') | Dec Tuesday |
339 | date_format(date '2024-12-31', 'MMMM d') | December 31 |
340 | date_format(date '2024-12-31', 'MMMM dd') | December 31 |
341 | date_format(date '2024-12-31', 'MMMM E') | December Tue |
342 | date_format(date '2024-12-31', 'MMMM EEEE') | December Tuesday |
343 | date_format(date '2024-12-31', 'MM yyyy') | 12 2024 |
344 | date_format(date '2024-12-31', 'MM yy') | 12 24 |
345 | date_format(date '2024-12-31', 'M yyyy') | 12 2024 |
346 | date_format(date '2024-12-31', 'M yy') | 12 24 |
347 | date_format(date '2024-12-31', 'MMM yyyy') | Dec 2024 |
348 | date_format(date '2024-12-31', 'MMM yy') | Dec 24 |
349 | date_format(date '2024-12-31', 'MMMM yyyy') | December 2024 |
350 | date_format(date '2024-12-31', 'MMMM yy') | December 24 |
351 | date_format(date '2024-12-31', 'MMdd') | 1231 |
352 | date_format(date '2024-12-31', 'MMd') | 1231 |
353 | date_format(date '2024-12-31', 'MME') | 12Tue |
354 | date_format(date '2024-12-31', 'MMEEEE') | 12Tuesday |
355 | date_format(date '2024-12-31', 'Md') | 1231 |
356 | date_format(date '2024-12-31', 'Mdd') | 1231 |
357 | date_format(date '2024-12-31', 'ME') | 12Tue |
358 | date_format(date '2024-12-31', 'MEEEE') | 12Tuesday |
359 | date_format(date '2024-12-31', 'MMMd') | Dec31 |
360 | date_format(date '2024-12-31', 'MMMdd') | Dec31 |
361 | date_format(date '2024-12-31', 'MMME') | DecTue |
362 | date_format(date '2024-12-31', 'MMMEEEE') | DecTuesday |
363 | date_format(date '2024-12-31', 'MMMMd') | December31 |
364 | date_format(date '2024-12-31', 'MMMMdd') | December31 |
365 | date_format(date '2024-12-31', 'MMMME') | DecemberTue |
366 | date_format(date '2024-12-31', 'MMMMEEEE') | DecemberTuesday |
367 | date_format(date '2024-12-31', 'MMyyyy') | 122024 |
368 | date_format(date '2024-12-31', 'MMyy') | 1224 |
369 | date_format(date '2024-12-31', 'Myyyy') | 122024 |
370 | date_format(date '2024-12-31', 'Myy') | 1224 |
371 | date_format(date '2024-12-31', 'MMMyyyy') | Dec2024 |
372 | date_format(date '2024-12-31', 'MMMyy') | Dec24 |
373 | date_format(date '2024-12-31', 'MMMMyyyy') | December2024 |
374 | date_format(date '2024-12-31', 'MMMMyy') | December24 |
375 | date_format(date '2024-12-31', 'MM-dd-yyyy') | 12-31-2024 |
376 | date_format(date '2024-12-31', 'MM-dd-yy') | 12-31-24 |
377 | date_format(date '2024-12-31', 'MM/dd/yyyy') | 12/31/2024 |
378 | date_format(date '2024-12-31', 'MM/dd/yy') | 12/31/24 |
379 | date_format(date '2024-12-31', 'MM:dd:yyyy') | 12:31:2024 |
380 | date_format(date '2024-12-31', 'MM:dd:yy') | 12:31:24 |
381 | date_format(date '2024-12-31', 'MM.dd.yyyy') | 12.31.2024 |
382 | date_format(date '2024-12-31', 'MM.dd.yy') | 12.31.24 |
383 | date_format(date '2024-12-31', 'MM dd yyyy') | 12 31 2024 |
384 | date_format(date '2024-12-31', 'MM dd yy') | 12 31 24 |
385 | date_format(date '2024-12-31', 'MMddyyyy') | 12312024 |
386 | date_format(date '2024-12-31', 'MMddyy') | 123124 |
387 | date_format(date '2024-12-31', 'M-dd-yyyy') | 12-31-2024 |
388 | date_format(date '2024-12-31', 'M-dd-yy') | 12-31-24 |
389 | date_format(date '2024-12-31', 'M/dd/yyyy') | 12/31/2024 |
390 | date_format(date '2024-12-31', 'M/dd/yy') | 12/31/24 |
391 | date_format(date '2024-12-31', 'M:dd:yyyy') | 12:31:2024 |
392 | date_format(date '2024-12-31', 'M:dd:yy') | 12:31:24 |
393 | date_format(date '2024-12-31', 'M.dd.yyyy') | 12.31.2024 |
394 | date_format(date '2024-12-31', 'M.dd.yy') | 12.31.24 |
395 | date_format(date '2024-12-31', 'M dd yyyy') | 12 31 2024 |
396 | date_format(date '2024-12-31', 'M dd yy') | 12 31 24 |
397 | date_format(date '2024-12-31', 'Mddyyyy') | 12312024 |
398 | date_format(date '2024-12-31', 'Mddyy') | 123124 |
399 | date_format(date '2024-12-31', 'MMM-dd-yyyy') | Dec-31-2024 |
400 | date_format(date '2024-12-31', 'MMM-dd-yy') | Dec-31-24 |
401 | date_format(date '2024-12-31', 'MMM/dd/yyyy') | Dec/31/2024 |
402 | date_format(date '2024-12-31', 'MMM/dd/yy') | Dec/31/24 |
403 | date_format(date '2024-12-31', 'MMM:dd:yyyy') | Dec:31:2024 |
404 | date_format(date '2024-12-31', 'MMM:dd:yy') | Dec:31:24 |
405 | date_format(date '2024-12-31', 'MMM.dd.yyyy') | Dec.31.2024 |
406 | date_format(date '2024-12-31', 'MMM.dd.yy') | Dec.31.24 |
407 | date_format(date '2024-12-31', 'MMM dd yyyy') | Dec 31 2024 |
408 | date_format(date '2024-12-31', 'MMM dd yy') | Dec 31 24 |
409 | date_format(date '2024-12-31', 'MMMddyyyy') | Dec312024 |
410 | date_format(date '2024-12-31', 'MMMddyy') | Dec3124 |
411 | date_format(date '2024-12-31', 'MMMM-dd-yyyy') | December-31-2024 |
412 | date_format(date '2024-12-31', 'MMMM-dd-yy') | December-31-24 |
413 | date_format(date '2024-12-31', 'MMMM/dd/yyyy') | December/31/2024 |
414 | date_format(date '2024-12-31', 'MMMM/dd/yy') | December/31/24 |
415 | date_format(date '2024-12-31', 'MMMM:dd:yyyy') | December:31:2024 |
416 | date_format(date '2024-12-31', 'MMMM:dd:yy') | December:31:24 |
417 | date_format(date '2024-12-31', 'MMMM.dd.yyyy') | December.31.2024 |
418 | date_format(date '2024-12-31', 'MMMM.dd.yy') | December.31.24 |
419 | date_format(date '2024-12-31', 'MMMM dd yyyy') | December 31 2024 |
420 | date_format(date '2024-12-31', 'MMMM dd yy') | December 31 24 |
421 | date_format(date '2024-12-31', 'MMMMddyyyy') | December312024 |
422 | date_format(date '2024-12-31', 'MMMMddyy') | December3124 |
423 | date_format(date '2024-12-31', 'MM-d-yyyy') | 12-31-2024 |
424 | date_format(date '2024-12-31', 'MM-d-yy') | 12-31-24 |
425 | date_format(date '2024-12-31', 'MM/d/yyyy') | 12/31/2024 |
426 | date_format(date '2024-12-31', 'MM/d/yy') | 12/31/24 |
427 | date_format(date '2024-12-31', 'MM:d:yyyy') | 12:31:2024 |
428 | date_format(date '2024-12-31', 'MM:d:yy') | 12:31:24 |
429 | date_format(date '2024-12-31', 'MM.d.yyyy') | 12.31.2024 |
430 | date_format(date '2024-12-31', 'MM.d.yy') | 12.31.24 |
431 | date_format(date '2024-12-31', 'MM d yyyy') | 12 31 2024 |
432 | date_format(date '2024-12-31', 'MM d yy') | 12 31 24 |
433 | date_format(date '2024-12-31', 'MMdyyyy') | 12312024 |
434 | date_format(date '2024-12-31', 'MMdyy') | 123124 |
435 | date_format(date '2024-12-31', 'M-d-yyyy') | 12-31-2024 |
436 | date_format(date '2024-12-31', 'M-d-yy') | 12-31-24 |
437 | date_format(date '2024-12-31', 'M/d/yyyy') | 12/31/2024 |
438 | date_format(date '2024-12-31', 'M/d/yy') | 12/31/24 |
439 | date_format(date '2024-12-31', 'M:d:yyyy') | 12:31:2024 |
440 | date_format(date '2024-12-31', 'M:d:yy') | 12:31:24 |
441 | date_format(date '2024-12-31', 'M.d.yyyy') | 12.31.2024 |
442 | date_format(date '2024-12-31', 'M.d.yy') | 12.31.24 |
443 | date_format(date '2024-12-31', 'M d yyyy') | 12 31 2024 |
444 | date_format(date '2024-12-31', 'M d yy') | 12 31 24 |
445 | date_format(date '2024-12-31', 'Mdyyyy') | 12312024 |
446 | date_format(date '2024-12-31', 'Mdyy') | 123124 |
447 | date_format(date '2024-12-31', 'MMM-d-yyyy') | Dec-31-2024 |
448 | date_format(date '2024-12-31', 'MMM-d-yy') | Dec-31-24 |
449 | date_format(date '2024-12-31', 'MMM/d/yyyy') | Dec/31/2024 |
450 | date_format(date '2024-12-31', 'MMM/d/yy') | Dec/31/24 |
451 | date_format(date '2024-12-31', 'MMM:d:yyyy') | Dec:31:2024 |
452 | date_format(date '2024-12-31', 'MMM:d:yy') | Dec:31:24 |
453 | date_format(date '2024-12-31', 'MMM.d.yyyy') | Dec.31.2024 |
454 | date_format(date '2024-12-31', 'MMM.d.yy') | Dec.31.24 |
455 | date_format(date '2024-12-31', 'MMM d yyyy') | Dec 31 2024 |
456 | date_format(date '2024-12-31', 'MMM d yy') | Dec 31 24 |
457 | date_format(date '2024-12-31', 'MMMdyyyy') | Dec312024 |
458 | date_format(date '2024-12-31', 'MMMdyy') | Dec3124 |
459 | date_format(date '2024-12-31', 'MMMM-d-yyyy') | December-31-2024 |
460 | date_format(date '2024-12-31', 'MMMM-d-yy') | December-31-24 |
461 | date_format(date '2024-12-31', 'MMMM/d/yyyy') | December/31/2024 |
462 | date_format(date '2024-12-31', 'MMMM/d/yy') | December/31/24 |
463 | date_format(date '2024-12-31', 'MMMM:d:yyyy') | December:31:2024 |
464 | date_format(date '2024-12-31', 'MMMM:d:yy') | December:31:24 |
465 | date_format(date '2024-12-31', 'MMMM.d.yyyy') | December.31.2024 |
466 | date_format(date '2024-12-31', 'MMMM.d.yy') | December.31.24 |
467 | date_format(date '2024-12-31', 'MMMM d yyyy') | December 31 2024 |
468 | date_format(date '2024-12-31', 'MMMM d yy') | December 31 24 |
469 | date_format(date '2024-12-31', 'MMMMdyyyy') | December312024 |
470 | date_format(date '2024-12-31', 'MMMMdyy') | December3124 |
471 | date_format(date '2024-12-31', 'MM-E-yyyy') | 12-Tue-2024 |
472 | date_format(date '2024-12-31', 'MM-E-yy') | 12-Tue-24 |
473 | date_format(date '2024-12-31', 'MM/E/yyyy') | 12/Tue/2024 |
474 | date_format(date '2024-12-31', 'MM/E/yy') | 12/Tue/24 |
475 | date_format(date '2024-12-31', 'MM:E:yyyy') | 12:Tue:2024 |
476 | date_format(date '2024-12-31', 'MM:E:yy') | 12:Tue:24 |
477 | date_format(date '2024-12-31', 'MM.E.yyyy') | 12.Tue.2024 |
478 | date_format(date '2024-12-31', 'MM.E.yy') | 12.Tue.24 |
479 | date_format(date '2024-12-31', 'MM E yyyy') | 12 Tue 2024 |
480 | date_format(date '2024-12-31', 'MM E yy') | 12 Tue 24 |
481 | date_format(date '2024-12-31', 'MMEyyyy') | 12Tue2024 |
482 | date_format(date '2024-12-31', 'MMEyy') | 12Tue24 |
483 | date_format(date '2024-12-31', 'M-E-yyyy') | 12-Tue-2024 |
484 | date_format(date '2024-12-31', 'M-E-yy') | 12-Tue-24 |
485 | date_format(date '2024-12-31', 'M/E/yyyy') | 12/Tue/2024 |
486 | date_format(date '2024-12-31', 'M/E/yy') | 12/Tue/24 |
487 | date_format(date '2024-12-31', 'M:E:yyyy') | 12:Tue:2024 |
488 | date_format(date '2024-12-31', 'M:E:yy') | 12:Tue:24 |
489 | date_format(date '2024-12-31', 'M.E.yyyy') | 12.Tue.2024 |
490 | date_format(date '2024-12-31', 'M.E.yy') | 12.Tue.24 |
491 | date_format(date '2024-12-31', 'M E yyyy') | 12 Tue 2024 |
492 | date_format(date '2024-12-31', 'M E yy') | 12 Tue 24 |
493 | date_format(date '2024-12-31', 'MEyyyy') | 12Tue2024 |
494 | date_format(date '2024-12-31', 'MEyy') | 12Tue24 |
495 | date_format(date '2024-12-31', 'MMM-E-yyyy') | Dec-Tue-2024 |
496 | date_format(date '2024-12-31', 'MMM-E-yy') | Dec-Tue-24 |
497 | date_format(date '2024-12-31', 'MMM/E/yyyy') | Dec/Tue/2024 |
498 | date_format(date '2024-12-31', 'MMM/E/yy') | Dec/Tue/24 |
499 | date_format(date '2024-12-31', 'MMM:E:yyyy') | Dec:Tue:2024 |
500 | date_format(date '2024-12-31', 'MMM:E:yy') | Dec:Tue:24 |
501 | date_format(date '2024-12-31', 'MMM.E.yyyy') | Dec.Tue.2024 |
502 | date_format(date '2024-12-31', 'MMM.E.yy') | Dec.Tue.24 |
503 | date_format(date '2024-12-31', 'MMM E yyyy') | Dec Tue 2024 |
504 | date_format(date '2024-12-31', 'MMM E yy') | Dec Tue 24 |
505 | date_format(date '2024-12-31', 'MMMEyyyy') | DecTue2024 |
506 | date_format(date '2024-12-31', 'MMMEyy') | DecTue24 |
507 | date_format(date '2024-12-31', 'MMMM-E-yyyy') | December-Tue-2024 |
508 | date_format(date '2024-12-31', 'MMMM-E-yy') | December-Tue-24 |
509 | date_format(date '2024-12-31', 'MMMM/E/yyyy') | December/Tue/2024 |
510 | date_format(date '2024-12-31', 'MMMM/E/yy') | December/Tue/24 |
511 | date_format(date '2024-12-31', 'MMMM:E:yyyy') | December:Tue:2024 |
512 | date_format(date '2024-12-31', 'MMMM:E:yy') | December:Tue:24 |
513 | date_format(date '2024-12-31', 'MMMM.E.yyyy') | December.Tue.2024 |
514 | date_format(date '2024-12-31', 'MMMM.E.yy') | December.Tue.24 |
515 | date_format(date '2024-12-31', 'MMMM E yyyy') | December Tue 2024 |
516 | date_format(date '2024-12-31', 'MMMM E yy') | December Tue 24 |
517 | date_format(date '2024-12-31', 'MMMMEyyyy') | DecemberTue2024 |
518 | date_format(date '2024-12-31', 'MMMMEyy') | DecemberTue24 |
519 | date_format(date '2024-12-31', 'MM-EEEE-yyyy') | 12-Tuesday-2024 |
520 | date_format(date '2024-12-31', 'MM-EEEE-yy') | 12-Tuesday-24 |
521 | date_format(date '2024-12-31', 'MM/EEEE/yyyy') | 12/Tuesday/2024 |
522 | date_format(date '2024-12-31', 'MM/EEEE/yy') | 12/Tuesday/24 |
523 | date_format(date '2024-12-31', 'MM:EEEE:yyyy') | 12:Tuesday:2024 |
524 | date_format(date '2024-12-31', 'MM:EEEE:yy') | 12:Tuesday:24 |
525 | date_format(date '2024-12-31', 'MM.EEEE.yyyy') | 12.Tuesday.2024 |
526 | date_format(date '2024-12-31', 'MM.EEEE.yy') | 12.Tuesday.24 |
527 | date_format(date '2024-12-31', 'MM EEEE yyyy') | 12 Tuesday 2024 |
528 | date_format(date '2024-12-31', 'MM EEEE yy') | 12 Tuesday 24 |
529 | date_format(date '2024-12-31', 'MMEEEEyyyy') | 12Tuesday2024 |
530 | date_format(date '2024-12-31', 'MMEEEEyy') | 12Tuesday24 |
531 | date_format(date '2024-12-31', 'M-EEEE-yyyy') | 12-Tuesday-2024 |
532 | date_format(date '2024-12-31', 'M-EEEE-yy') | 12-Tuesday-24 |
533 | date_format(date '2024-12-31', 'M/EEEE/yyyy') | 12/Tuesday/2024 |
534 | date_format(date '2024-12-31', 'M/EEEE/yy') | 12/Tuesday/24 |
535 | date_format(date '2024-12-31', 'M:EEEE:yyyy') | 12:Tuesday:2024 |
536 | date_format(date '2024-12-31', 'M:EEEE:yy') | 12:Tuesday:24 |
537 | date_format(date '2024-12-31', 'M.EEEE.yyyy') | 12.Tuesday.2024 |
538 | date_format(date '2024-12-31', 'M.EEEE.yy') | 12.Tuesday.24 |
539 | date_format(date '2024-12-31', 'M EEEE yyyy') | 12 Tuesday 2024 |
540 | date_format(date '2024-12-31', 'M EEEE yy') | 12 Tuesday 24 |
541 | date_format(date '2024-12-31', 'MEEEEyyyy') | 12Tuesday2024 |
542 | date_format(date '2024-12-31', 'MEEEEyy') | 12Tuesday24 |
543 | date_format(date '2024-12-31', 'MMM-EEEE-yyyy') | Dec-Tuesday-2024 |
544 | date_format(date '2024-12-31', 'MMM-EEEE-yy') | Dec-Tuesday-24 |
545 | date_format(date '2024-12-31', 'MMM/EEEE/yyyy') | Dec/Tuesday/2024 |
546 | date_format(date '2024-12-31', 'MMM/EEEE/yy') | Dec/Tuesday/24 |
547 | date_format(date '2024-12-31', 'MMM:EEEE:yyyy') | Dec:Tuesday:2024 |
548 | date_format(date '2024-12-31', 'MMM:EEEE:yy') | Dec:Tuesday:24 |
549 | date_format(date '2024-12-31', 'MMM.EEEE.yyyy') | Dec.Tuesday.2024 |
550 | date_format(date '2024-12-31', 'MMM.EEEE.yy') | Dec.Tuesday.24 |
551 | date_format(date '2024-12-31', 'MMM EEEE yyyy') | Dec Tuesday 2024 |
552 | date_format(date '2024-12-31', 'MMM EEEE yy') | Dec Tuesday 24 |
553 | date_format(date '2024-12-31', 'MMMEEEEyyyy') | DecTuesday2024 |
554 | date_format(date '2024-12-31', 'MMMEEEEyy') | DecTuesday24 |
555 | date_format(date '2024-12-31', 'MMMM-EEEE-yyyy') | December-Tuesday-2024 |
556 | date_format(date '2024-12-31', 'MMMM-EEEE-yy') | December-Tuesday-24 |
557 | date_format(date '2024-12-31', 'MMMM/EEEE/yyyy') | December/Tuesday/2024 |
558 | date_format(date '2024-12-31', 'MMMM/EEEE/yy') | December/Tuesday/24 |
559 | date_format(date '2024-12-31', 'MMMM:EEEE:yyyy') | December:Tuesday:2024 |
560 | date_format(date '2024-12-31', 'MMMM:EEEE:yy') | December:Tuesday:24 |
561 | date_format(date '2024-12-31', 'MMMM.EEEE.yyyy') | December.Tuesday.2024 |
562 | date_format(date '2024-12-31', 'MMMM.EEEE.yy') | December.Tuesday.24 |
563 | date_format(date '2024-12-31', 'MMMM EEEE yyyy') | December Tuesday 2024 |
564 | date_format(date '2024-12-31', 'MMMM EEEE yy') | December Tuesday 24 |
565 | date_format(date '2024-12-31', 'MMMMEEEEyyyy') | DecemberTuesday2024 |
566 | date_format(date '2024-12-31', 'MMMMEEEEyy') | DecemberTuesday24 |
567 | date_format(date '2024-12-31', 'dd-MM') | 31-12 |
568 | date_format(date '2024-12-31', 'dd-M') | 31-12 |
569 | date_format(date '2024-12-31', 'dd-MMM') | 31-Dec |
570 | date_format(date '2024-12-31', 'dd-MMMM') | 31-December |
571 | date_format(date '2024-12-31', 'd-MM') | 31-12 |
572 | date_format(date '2024-12-31', 'd-M') | 31-12 |
573 | date_format(date '2024-12-31', 'd-MMM') | 31-Dec |
574 | date_format(date '2024-12-31', 'd-MMMM') | 31-December |
575 | date_format(date '2024-12-31', 'E-MM') | Tue-12 |
576 | date_format(date '2024-12-31', 'E-M') | Tue-12 |
577 | date_format(date '2024-12-31', 'E-MMM') | Tue-Dec |
578 | date_format(date '2024-12-31', 'E-MMMM') | Tue-December |
579 | date_format(date '2024-12-31', 'EEEE-MM') | Tuesday-12 |
580 | date_format(date '2024-12-31', 'EEEE-M') | Tuesday-12 |
581 | date_format(date '2024-12-31', 'EEEE-MMM') | Tuesday-Dec |
582 | date_format(date '2024-12-31', 'EEEE-MMMM') | Tuesday-December |
583 | date_format(date '2024-12-31', 'dd/MM') | 31/12 |
584 | date_format(date '2024-12-31', 'dd/M') | 31/12 |
585 | date_format(date '2024-12-31', 'dd/MMM') | 31/Dec |
586 | date_format(date '2024-12-31', 'dd/MMMM') | 31/December |
587 | date_format(date '2024-12-31', 'd/MM') | 31/12 |
588 | date_format(date '2024-12-31', 'd/M') | 31/12 |
589 | date_format(date '2024-12-31', 'd/MMM') | 31/Dec |
590 | date_format(date '2024-12-31', 'd/MMMM') | 31/December |
591 | date_format(date '2024-12-31', 'E/MM') | Tue/12 |
592 | date_format(date '2024-12-31', 'E/M') | Tue/12 |
593 | date_format(date '2024-12-31', 'E/MMM') | Tue/Dec |
594 | date_format(date '2024-12-31', 'E/MMMM') | Tue/December |
595 | date_format(date '2024-12-31', 'EEEE/MM') | Tuesday/12 |
596 | date_format(date '2024-12-31', 'EEEE/M') | Tuesday/12 |
597 | date_format(date '2024-12-31', 'EEEE/MMM') | Tuesday/Dec |
598 | date_format(date '2024-12-31', 'EEEE/MMMM') | Tuesday/December |
599 | date_format(date '2024-12-31', 'dd:MM') | 31:12 |
600 | date_format(date '2024-12-31', 'dd:M') | 31:12 |
601 | date_format(date '2024-12-31', 'dd:MMM') | 31:Dec |
602 | date_format(date '2024-12-31', 'dd:MMMM') | 31:December |
603 | date_format(date '2024-12-31', 'd:MM') | 31:12 |
604 | date_format(date '2024-12-31', 'd:M') | 31:12 |
605 | date_format(date '2024-12-31', 'd:MMM') | 31:Dec |
606 | date_format(date '2024-12-31', 'd:MMMM') | 31:December |
607 | date_format(date '2024-12-31', 'E:MM') | Tue:12 |
608 | date_format(date '2024-12-31', 'E:M') | Tue:12 |
609 | date_format(date '2024-12-31', 'E:MMM') | Tue:Dec |
610 | date_format(date '2024-12-31', 'E:MMMM') | Tue:December |
611 | date_format(date '2024-12-31', 'EEEE:MM') | Tuesday:12 |
612 | date_format(date '2024-12-31', 'EEEE:M') | Tuesday:12 |
613 | date_format(date '2024-12-31', 'EEEE:MMM') | Tuesday:Dec |
614 | date_format(date '2024-12-31', 'EEEE:MMMM') | Tuesday:December |
615 | date_format(date '2024-12-31', 'dd.MM') | 31.12 |
616 | date_format(date '2024-12-31', 'dd.M') | 31.12 |
617 | date_format(date '2024-12-31', 'dd.MMM') | 31.Dec |
618 | date_format(date '2024-12-31', 'dd.MMMM') | 31.December |
619 | date_format(date '2024-12-31', 'd.MM') | 31.12 |
620 | date_format(date '2024-12-31', 'd.M') | 31.12 |
621 | date_format(date '2024-12-31', 'd.MMM') | 31.Dec |
622 | date_format(date '2024-12-31', 'd.MMMM') | 31.December |
623 | date_format(date '2024-12-31', 'E.MM') | Tue.12 |
624 | date_format(date '2024-12-31', 'E.M') | Tue.12 |
625 | date_format(date '2024-12-31', 'E.MMM') | Tue.Dec |
626 | date_format(date '2024-12-31', 'E.MMMM') | Tue.December |
627 | date_format(date '2024-12-31', 'EEEE.MM') | Tuesday.12 |
628 | date_format(date '2024-12-31', 'EEEE.M') | Tuesday.12 |
629 | date_format(date '2024-12-31', 'EEEE.MMM') | Tuesday.Dec |
630 | date_format(date '2024-12-31', 'EEEE.MMMM') | Tuesday.December |
631 | date_format(date '2024-12-31', 'dd MM') | 31 12 |
632 | date_format(date '2024-12-31', 'dd M') | 31 12 |
633 | date_format(date '2024-12-31', 'dd MMM') | 31 Dec |
634 | date_format(date '2024-12-31', 'dd MMMM') | 31 December |
635 | date_format(date '2024-12-31', 'd MM') | 31 12 |
636 | date_format(date '2024-12-31', 'd M') | 31 12 |
637 | date_format(date '2024-12-31', 'd MMM') | 31 Dec |
638 | date_format(date '2024-12-31', 'd MMMM') | 31 December |
639 | date_format(date '2024-12-31', 'E MM') | Tue 12 |
640 | date_format(date '2024-12-31', 'E M') | Tue 12 |
641 | date_format(date '2024-12-31', 'E MMM') | Tue Dec |
642 | date_format(date '2024-12-31', 'E MMMM') | Tue December |
643 | date_format(date '2024-12-31', 'EEEE MM') | Tuesday 12 |
644 | date_format(date '2024-12-31', 'EEEE M') | Tuesday 12 |
645 | date_format(date '2024-12-31', 'EEEE MMM') | Tuesday Dec |
646 | date_format(date '2024-12-31', 'EEEE MMMM') | Tuesday December |
647 | date_format(date '2024-12-31', 'ddMM') | 3112 |
648 | date_format(date '2024-12-31', 'ddM') | 3112 |
649 | date_format(date '2024-12-31', 'ddMMM') | 31Dec |
650 | date_format(date '2024-12-31', 'ddMMMM') | 31December |
651 | date_format(date '2024-12-31', 'dMM') | 3112 |
652 | date_format(date '2024-12-31', 'dM') | 3112 |
653 | date_format(date '2024-12-31', 'dMMM') | 31Dec |
654 | date_format(date '2024-12-31', 'dMMMM') | 31December |
655 | date_format(date '2024-12-31', 'EMM') | Tue12 |
656 | date_format(date '2024-12-31', 'EM') | Tue12 |
657 | date_format(date '2024-12-31', 'EMMM') | TueDec |
658 | date_format(date '2024-12-31', 'EMMMM') | TueDecember |
659 | date_format(date '2024-12-31', 'EEEEMM') | Tuesday12 |
660 | date_format(date '2024-12-31', 'EEEEM') | Tuesday12 |
661 | date_format(date '2024-12-31', 'EEEEMMM') | TuesdayDec |
662 | date_format(date '2024-12-31', 'EEEEMMMM') | TuesdayDecember |
663 | date_format(date '2024-12-31', 'dd-MM-yyyy') | 31-12-2024 |
664 | date_format(date '2024-12-31', 'dd-MM-yy') | 31-12-24 |
665 | date_format(date '2024-12-31', 'd-MM-yyyy') | 31-12-2024 |
666 | date_format(date '2024-12-31', 'd-MM-yy') | 31-12-24 |
667 | date_format(date '2024-12-31', 'E-MM-yyyy') | Tue-12-2024 |
668 | date_format(date '2024-12-31', 'E-MM-yy') | Tue-12-24 |
669 | date_format(date '2024-12-31', 'EEEE-MM-yyyy') | Tuesday-12-2024 |
670 | date_format(date '2024-12-31', 'EEEE-MM-yy') | Tuesday-12-24 |
671 | date_format(date '2024-12-31', 'dd-M-yyyy') | 31-12-2024 |
672 | date_format(date '2024-12-31', 'dd-M-yy') | 31-12-24 |
673 | date_format(date '2024-12-31', 'd-M-yyyy') | 31-12-2024 |
674 | date_format(date '2024-12-31', 'd-M-yy') | 31-12-24 |
675 | date_format(date '2024-12-31', 'E-M-yyyy') | Tue-12-2024 |
676 | date_format(date '2024-12-31', 'E-M-yy') | Tue-12-24 |
677 | date_format(date '2024-12-31', 'EEEE-M-yyyy') | Tuesday-12-2024 |
678 | date_format(date '2024-12-31', 'EEEE-M-yy') | Tuesday-12-24 |
679 | date_format(date '2024-12-31', 'dd-MMM-yyyy') | 31-Dec-2024 |
680 | date_format(date '2024-12-31', 'dd-MMM-yy') | 31-Dec-24 |
681 | date_format(date '2024-12-31', 'd-MMM-yyyy') | 31-Dec-2024 |
682 | date_format(date '2024-12-31', 'd-MMM-yy') | 31-Dec-24 |
683 | date_format(date '2024-12-31', 'E-MMM-yyyy') | Tue-Dec-2024 |
684 | date_format(date '2024-12-31', 'E-MMM-yy') | Tue-Dec-24 |
685 | date_format(date '2024-12-31', 'EEEE-MMM-yyyy') | Tuesday-Dec-2024 |
686 | date_format(date '2024-12-31', 'EEEE-MMM-yy') | Tuesday-Dec-24 |
687 | date_format(date '2024-12-31', 'dd-MMMM-yyyy') | 31-December-2024 |
688 | date_format(date '2024-12-31', 'dd-MMMM-yy') | 31-December-24 |
689 | date_format(date '2024-12-31', 'd-MMMM-yyyy') | 31-December-2024 |
690 | date_format(date '2024-12-31', 'd-MMMM-yy') | 31-December-24 |
691 | date_format(date '2024-12-31', 'E-MMMM-yyyy') | Tue-December-2024 |
692 | date_format(date '2024-12-31', 'E-MMMM-yy') | Tue-December-24 |
693 | date_format(date '2024-12-31', 'EEEE-MMMM-yyyy') | Tuesday-December-2024 |
694 | date_format(date '2024-12-31', 'EEEE-MMMM-yy') | Tuesday-December-24 |
695 | date_format(date '2024-12-31', 'dd/MM/yyyy') | 31/12/2024 |
696 | date_format(date '2024-12-31', 'dd/MM/yy') | 31/12/24 |
697 | date_format(date '2024-12-31', 'd/MM/yyyy') | 31/12/2024 |
698 | date_format(date '2024-12-31', 'd/MM/yy') | 31/12/24 |
699 | date_format(date '2024-12-31', 'E/MM/yyyy') | Tue/12/2024 |
700 | date_format(date '2024-12-31', 'E/MM/yy') | Tue/12/24 |
701 | date_format(date '2024-12-31', 'EEEE/MM/yyyy') | Tuesday/12/2024 |
702 | date_format(date '2024-12-31', 'EEEE/MM/yy') | Tuesday/12/24 |
703 | date_format(date '2024-12-31', 'dd/M/yyyy') | 31/12/2024 |
704 | date_format(date '2024-12-31', 'dd/M/yy') | 31/12/24 |
705 | date_format(date '2024-12-31', 'd/M/yyyy') | 31/12/2024 |
706 | date_format(date '2024-12-31', 'd/M/yy') | 31/12/24 |
707 | date_format(date '2024-12-31', 'E/M/yyyy') | Tue/12/2024 |
708 | date_format(date '2024-12-31', 'E/M/yy') | Tue/12/24 |
709 | date_format(date '2024-12-31', 'EEEE/M/yyyy') | Tuesday/12/2024 |
710 | date_format(date '2024-12-31', 'EEEE/M/yy') | Tuesday/12/24 |
711 | date_format(date '2024-12-31', 'dd/MMM/yyyy') | 31/Dec/2024 |
712 | date_format(date '2024-12-31', 'dd/MMM/yy') | 31/Dec/24 |
713 | date_format(date '2024-12-31', 'd/MMM/yyyy') | 31/Dec/2024 |
714 | date_format(date '2024-12-31', 'd/MMM/yy') | 31/Dec/24 |
715 | date_format(date '2024-12-31', 'E/MMM/yyyy') | Tue/Dec/2024 |
716 | date_format(date '2024-12-31', 'E/MMM/yy') | Tue/Dec/24 |
717 | date_format(date '2024-12-31', 'EEEE/MMM/yyyy') | Tuesday/Dec/2024 |
718 | date_format(date '2024-12-31', 'EEEE/MMM/yy') | Tuesday/Dec/24 |
719 | date_format(date '2024-12-31', 'dd/MMMM/yyyy') | 31/December/2024 |
720 | date_format(date '2024-12-31', 'dd/MMMM/yy') | 31/December/24 |
721 | date_format(date '2024-12-31', 'd/MMMM/yyyy') | 31/December/2024 |
722 | date_format(date '2024-12-31', 'd/MMMM/yy') | 31/December/24 |
723 | date_format(date '2024-12-31', 'E/MMMM/yyyy') | Tue/December/2024 |
724 | date_format(date '2024-12-31', 'E/MMMM/yy') | Tue/December/24 |
725 | date_format(date '2024-12-31', 'EEEE/MMMM/yyyy') | Tuesday/December/2024 |
726 | date_format(date '2024-12-31', 'EEEE/MMMM/yy') | Tuesday/December/24 |
727 | date_format(date '2024-12-31', 'dd:MM:yyyy') | 31:12:2024 |
728 | date_format(date '2024-12-31', 'dd:MM:yy') | 31:12:24 |
729 | date_format(date '2024-12-31', 'd:MM:yyyy') | 31:12:2024 |
730 | date_format(date '2024-12-31', 'd:MM:yy') | 31:12:24 |
731 | date_format(date '2024-12-31', 'E:MM:yyyy') | Tue:12:2024 |
732 | date_format(date '2024-12-31', 'E:MM:yy') | Tue:12:24 |
733 | date_format(date '2024-12-31', 'EEEE:MM:yyyy') | Tuesday:12:2024 |
734 | date_format(date '2024-12-31', 'EEEE:MM:yy') | Tuesday:12:24 |
735 | date_format(date '2024-12-31', 'dd:M:yyyy') | 31:12:2024 |
736 | date_format(date '2024-12-31', 'dd:M:yy') | 31:12:24 |
737 | date_format(date '2024-12-31', 'd:M:yyyy') | 31:12:2024 |
738 | date_format(date '2024-12-31', 'd:M:yy') | 31:12:24 |
739 | date_format(date '2024-12-31', 'E:M:yyyy') | Tue:12:2024 |
740 | date_format(date '2024-12-31', 'E:M:yy') | Tue:12:24 |
741 | date_format(date '2024-12-31', 'EEEE:M:yyyy') | Tuesday:12:2024 |
742 | date_format(date '2024-12-31', 'EEEE:M:yy') | Tuesday:12:24 |
743 | date_format(date '2024-12-31', 'dd:MMM:yyyy') | 31:Dec:2024 |
744 | date_format(date '2024-12-31', 'dd:MMM:yy') | 31:Dec:24 |
745 | date_format(date '2024-12-31', 'd:MMM:yyyy') | 31:Dec:2024 |
746 | date_format(date '2024-12-31', 'd:MMM:yy') | 31:Dec:24 |
747 | date_format(date '2024-12-31', 'E:MMM:yyyy') | Tue:Dec:2024 |
748 | date_format(date '2024-12-31', 'E:MMM:yy') | Tue:Dec:24 |
749 | date_format(date '2024-12-31', 'EEEE:MMM:yyyy') | Tuesday:Dec:2024 |
750 | date_format(date '2024-12-31', 'EEEE:MMM:yy') | Tuesday:Dec:24 |
751 | date_format(date '2024-12-31', 'dd:MMMM:yyyy') | 31:December:2024 |
752 | date_format(date '2024-12-31', 'dd:MMMM:yy') | 31:December:24 |
753 | date_format(date '2024-12-31', 'd:MMMM:yyyy') | 31:December:2024 |
754 | date_format(date '2024-12-31', 'd:MMMM:yy') | 31:December:24 |
755 | date_format(date '2024-12-31', 'E:MMMM:yyyy') | Tue:December:2024 |
756 | date_format(date '2024-12-31', 'E:MMMM:yy') | Tue:December:24 |
757 | date_format(date '2024-12-31', 'EEEE:MMMM:yyyy') | Tuesday:December:2024 |
758 | date_format(date '2024-12-31', 'EEEE:MMMM:yy') | Tuesday:December:24 |
759 | date_format(date '2024-12-31', 'dd.MM.yyyy') | 31.12.2024 |
760 | date_format(date '2024-12-31', 'dd.MM.yy') | 31.12.24 |
761 | date_format(date '2024-12-31', 'd.MM.yyyy') | 31.12.2024 |
762 | date_format(date '2024-12-31', 'd.MM.yy') | 31.12.24 |
763 | date_format(date '2024-12-31', 'E.MM.yyyy') | Tue.12.2024 |
764 | date_format(date '2024-12-31', 'E.MM.yy') | Tue.12.24 |
765 | date_format(date '2024-12-31', 'EEEE.MM.yyyy') | Tuesday.12.2024 |
766 | date_format(date '2024-12-31', 'EEEE.MM.yy') | Tuesday.12.24 |
767 | date_format(date '2024-12-31', 'dd.M.yyyy') | 31.12.2024 |
768 | date_format(date '2024-12-31', 'dd.M.yy') | 31.12.24 |
769 | date_format(date '2024-12-31', 'd.M.yyyy') | 31.12.2024 |
770 | date_format(date '2024-12-31', 'd.M.yy') | 31.12.24 |
771 | date_format(date '2024-12-31', 'E.M.yyyy') | Tue.12.2024 |
772 | date_format(date '2024-12-31', 'E.M.yy') | Tue.12.24 |
773 | date_format(date '2024-12-31', 'EEEE.M.yyyy') | Tuesday.12.2024 |
774 | date_format(date '2024-12-31', 'EEEE.M.yy') | Tuesday.12.24 |
775 | date_format(date '2024-12-31', 'dd.MMM.yyyy') | 31.Dec.2024 |
776 | date_format(date '2024-12-31', 'dd.MMM.yy') | 31.Dec.24 |
777 | date_format(date '2024-12-31', 'd.MMM.yyyy') | 31.Dec.2024 |
778 | date_format(date '2024-12-31', 'd.MMM.yy') | 31.Dec.24 |
779 | date_format(date '2024-12-31', 'E.MMM.yyyy') | Tue.Dec.2024 |
780 | date_format(date '2024-12-31', 'E.MMM.yy') | Tue.Dec.24 |
781 | date_format(date '2024-12-31', 'EEEE.MMM.yyyy') | Tuesday.Dec.2024 |
782 | date_format(date '2024-12-31', 'EEEE.MMM.yy') | Tuesday.Dec.24 |
783 | date_format(date '2024-12-31', 'dd.MMMM.yyyy') | 31.December.2024 |
784 | date_format(date '2024-12-31', 'dd.MMMM.yy') | 31.December.24 |
785 | date_format(date '2024-12-31', 'd.MMMM.yyyy') | 31.December.2024 |
786 | date_format(date '2024-12-31', 'd.MMMM.yy') | 31.December.24 |
787 | date_format(date '2024-12-31', 'E.MMMM.yyyy') | Tue.December.2024 |
788 | date_format(date '2024-12-31', 'E.MMMM.yy') | Tue.December.24 |
789 | date_format(date '2024-12-31', 'EEEE.MMMM.yyyy') | Tuesday.December.2024 |
790 | date_format(date '2024-12-31', 'EEEE.MMMM.yy') | Tuesday.December.24 |
791 | date_format(date '2024-12-31', 'dd MM yyyy') | 31 12 2024 |
792 | date_format(date '2024-12-31', 'dd MM yy') | 31 12 24 |
793 | date_format(date '2024-12-31', 'd MM yyyy') | 31 12 2024 |
794 | date_format(date '2024-12-31', 'd MM yy') | 31 12 24 |
795 | date_format(date '2024-12-31', 'E MM yyyy') | Tue 12 2024 |
796 | date_format(date '2024-12-31', 'E MM yy') | Tue 12 24 |
797 | date_format(date '2024-12-31', 'EEEE MM yyyy') | Tuesday 12 2024 |
798 | date_format(date '2024-12-31', 'EEEE MM yy') | Tuesday 12 24 |
799 | date_format(date '2024-12-31', 'dd M yyyy') | 31 12 2024 |
800 | date_format(date '2024-12-31', 'dd M yy') | 31 12 24 |
801 | date_format(date '2024-12-31', 'd M yyyy') | 31 12 2024 |
802 | date_format(date '2024-12-31', 'd M yy') | 31 12 24 |
803 | date_format(date '2024-12-31', 'E M yyyy') | Tue 12 2024 |
804 | date_format(date '2024-12-31', 'E M yy') | Tue 12 24 |
805 | date_format(date '2024-12-31', 'EEEE M yyyy') | Tuesday 12 2024 |
806 | date_format(date '2024-12-31', 'EEEE M yy') | Tuesday 12 24 |
807 | date_format(date '2024-12-31', 'dd MMM yyyy') | 31 Dec 2024 |
808 | date_format(date '2024-12-31', 'dd MMM yy') | 31 Dec 24 |
809 | date_format(date '2024-12-31', 'd MMM yyyy') | 31 Dec 2024 |
810 | date_format(date '2024-12-31', 'd MMM yy') | 31 Dec 24 |
811 | date_format(date '2024-12-31', 'E MMM yyyy') | Tue Dec 2024 |
812 | date_format(date '2024-12-31', 'E MMM yy') | Tue Dec 24 |
813 | date_format(date '2024-12-31', 'EEEE MMM yyyy') | Tuesday Dec 2024 |
814 | date_format(date '2024-12-31', 'EEEE MMM yy') | Tuesday Dec 24 |
815 | date_format(date '2024-12-31', 'dd MMMM yyyy') | 31 December 2024 |
816 | date_format(date '2024-12-31', 'dd MMMM yy') | 31 December 24 |
817 | date_format(date '2024-12-31', 'd MMMM yyyy') | 31 December 2024 |
818 | date_format(date '2024-12-31', 'd MMMM yy') | 31 December 24 |
819 | date_format(date '2024-12-31', 'E MMMM yyyy') | Tue December 2024 |
820 | date_format(date '2024-12-31', 'E MMMM yy') | Tue December 24 |
821 | date_format(date '2024-12-31', 'EEEE MMMM yyyy') | Tuesday December 2024 |
822 | date_format(date '2024-12-31', 'EEEE MMMM yy') | Tuesday December 24 |
823 | date_format(date '2024-12-31', 'ddMMyyyy') | 31122024 |
824 | date_format(date '2024-12-31', 'ddMMyy') | 311224 |
825 | date_format(date '2024-12-31', 'dMMyyyy') | 31122024 |
826 | date_format(date '2024-12-31', 'dMMyy') | 311224 |
827 | date_format(date '2024-12-31', 'EMMyyyy') | Tue122024 |
828 | date_format(date '2024-12-31', 'EMMyy') | Tue1224 |
829 | date_format(date '2024-12-31', 'EEEEMMyyyy') | Tuesday122024 |
830 | date_format(date '2024-12-31', 'EEEEMMyy') | Tuesday1224 |
831 | date_format(date '2024-12-31', 'ddMyyyy') | 31122024 |
832 | date_format(date '2024-12-31', 'ddMyy') | 311224 |
833 | date_format(date '2024-12-31', 'dMyyyy') | 31122024 |
834 | date_format(date '2024-12-31', 'dMyy') | 311224 |
835 | date_format(date '2024-12-31', 'EMyyyy') | Tue122024 |
836 | date_format(date '2024-12-31', 'EMyy') | Tue1224 |
837 | date_format(date '2024-12-31', 'EEEEMyyyy') | Tuesday122024 |
838 | date_format(date '2024-12-31', 'EEEEMyy') | Tuesday1224 |
839 | date_format(date '2024-12-31', 'ddMMMyyyy') | 31Dec2024 |
840 | date_format(date '2024-12-31', 'ddMMMyy') | 31Dec24 |
841 | date_format(date '2024-12-31', 'dMMMyyyy') | 31Dec2024 |
842 | date_format(date '2024-12-31', 'dMMMyy') | 31Dec24 |
843 | date_format(date '2024-12-31', 'EMMMyyyy') | TueDec2024 |
844 | date_format(date '2024-12-31', 'EMMMyy') | TueDec24 |
845 | date_format(date '2024-12-31', 'EEEEMMMyyyy') | TuesdayDec2024 |
846 | date_format(date '2024-12-31', 'EEEEMMMyy') | TuesdayDec24 |
847 | date_format(date '2024-12-31', 'ddMMMMyyyy') | 31December2024 |
848 | date_format(date '2024-12-31', 'ddMMMMyy') | 31December24 |
849 | date_format(date '2024-12-31', 'dMMMMyyyy') | 31December2024 |
850 | date_format(date '2024-12-31', 'dMMMMyy') | 31December24 |
851 | date_format(date '2024-12-31', 'EMMMMyyyy') | TueDecember2024 |
852 | date_format(date '2024-12-31', 'EMMMMyy') | TueDecember24 |
853 | date_format(date '2024-12-31', 'EEEEMMMMyyyy') | TuesdayDecember2024 |
854 | date_format(date '2024-12-31', 'EEEEMMMMyy') | TuesdayDecember24 |
855 | date_format(date '2024-12-31', 'E MMM dd, yyyy') | Tue Dec 31, 2024 |
856 | date_format(date '2024-12-31', 'EEEE MMM dd, yyyy') | Tuesday Dec 31, 2024 |
857 | date_format(date '2024-12-31', 'E MMMM dd, yyyy') | Tue December 31, 2024 |
858 | date_format(date '2024-12-31', 'EEEE MMMM dd, yyyy') | Tuesday December 31, 2024 |