1853. Convert Date Format
Problem
Given a table Days
with a day
column of date type, the goal is to write an SQL query that will convert each date in the table into a string formatted as "day_name, month_name day, year". The result table should be returned in any order, and the output must be case-sensitive.
Example
Consider the following Days
table:
1+------------+
2| day |
3+------------+
4| 2022-04-12 |
5| 2021-08-09 |
6| 2020-06-26 |
7+------------+
The expected query result would be:
1+-------------------------+
2| day |
3+-------------------------+
4| Tuesday, April 12, 2022 |
5| Monday, August 9, 2021 |
6| Friday, June 26, 2020 |
7+-------------------------+
Approach
To solve this problem, MySQL's DATE_FORMAT
function can be used. This function allows you to format a date value based on a given format pattern. The following format pattern can be used to achieve the required output:
1%W, %M %e, %Y
This pattern will replace %W
with the day name, %M
with the month name, %e
for the day number without leading zeros, and %Y
for the year.
Example
Let's walk through the problem example using this approach:
12022-04-12 -> DATE_FORMAT('2022-04-12', '%W, %M %e, %Y') -> Tuesday, April 12, 2022 22021-08-09 -> DATE_FORMAT('2021-08-09', '%W, %M %e, %Y') -> Monday, August 9, 2021 32020-06-26 -> DATE_FORMAT('2020-06-26', '%W, %M %e, %Y') -> Friday, June 26, 2020
Solution
SQL
To achieve the required result, we can write an SQL query as follows:
1SELECT DATE_FORMAT(day, '%W, %M %e, %Y') AS day 2FROM Days;
Ready to land your dream job?
Unlock your dream job with a 2-minute evaluator for a personalized learning plan!
Start EvaluatorWhich of the following array represent a max heap?
Recommended Readings
Patterns The Shortest Path Algorithm for Coding Interviews The goal of AlgoMonster is to help you get a job in the shortest amount of time possible in a data driven way We compiled datasets of tech interview problems and broke them down by patterns This way we can determine the
Recursion Recursion is one of the most important concepts in computer science Simply speaking recursion is the process of a function calling itself Using a real life analogy imagine a scenario where you invite your friends to lunch https algomonster s3 us east 2 amazonaws com recursion jpg You first
Runtime Overview When learning about algorithms and data structures you'll frequently encounter the term time complexity This concept is fundamental in computer science and offers insights into how long an algorithm takes to complete given a certain input size What is Time Complexity Time complexity represents the amount of time
Got a question?ย Ask the Monster Assistantย anything you don't understand.
Still not clear? ย Submitย the part you don't understand to our editors. Or join ourย Discord and ask the community.