Knowledge Guide
HomeDatabasesSQL Fundamentals

Date Functions

SQL date functions are essential for managing and manipulating temporal data efficiently. Similar to number and string functions, date functions are indispensable tools in the SQL arsenal, providing precision and versatility in handling dates and times.

Why Date Functions Matter

Date functions in SQL streamline temporal operations, bringing clarity and efficiency to your queries. Whether you're extracting specific components of a date, performing date arithmetic, or formatting dates for presentation, these functions enhance the flexibility and power of your data analysis.

Key Date Functions in SQL

Let's explore some of the most essential date functions in SQL, complete with descriptions and practical examples to illustrate their usage.

1. CURRENT_DATE and CURRENT_TIME

These functions provide a snapshot of the present moment, useful for timestamping records or performing real-time data analysis.

Example:

SELECT CURRENT_DATE AS Today, CURRENT_TIME AS Now; -- Result: '2024-01-01', '12:34:56'

2. DATE()

The DATE() function extracts the date part from a datetime expression, allowing for focused date analysis without the time component.

Example:

SELECT DATE('2024-01-01 12:34:56') AS PureDate; -- Result: '2024-01-01'

3. DATE_ADD() and DATE_SUB()

These functions enable dynamic date manipulation, essential for calculating future or past dates based on current data.

Example:

SELECT DATE_ADD('2024-01-01', INTERVAL 3 DAY) AS AddedDate, DATE_SUB('2024-01-01', INTERVAL 1 MONTH) AS SubtractedDate; -- Results: '2024-01-04', '2023-12-01'

4. EXTRACT()

The EXTRACT() function retrieves specific components (year, month, day, etc.) from a datetime expression, facilitating detailed date analysis.

Example:

SELECT EXTRACT(YEAR FROM '2024-01-01') AS Year, EXTRACT(MONTH FROM '2024-01-01') AS Month; -- Results: 2024, 1

5. DATE_FORMAT()

DATE_FORMAT() transforms datetime expressions into custom-formatted strings, enhancing the readability and presentation of date data.

Example:

SELECT DATE_FORMAT('2024-01-01', '%W, %M %e, %Y') AS FormattedDate; -- Result: 'Tuesday, January 1, 2024'

6. DAY(), MONTH(), and YEAR()

These functions are useful for breaking down dates into their fundamental components for detailed analysis.

Example:

SELECT DAY('2024-01-01') AS Day, MONTH('2024-01-01') AS Month, YEAR('2024-01-01') AS Year; -- Results: 1, 1, 2024

SQL Date Functions

To provide a clearer overview, here's a detailed table outlining various date functions in SQL, complete with descriptions and example queries:

Sr      FunctionDescriptionQueryResult
1CURRENT_DATERetrieves the current date.SELECT CURRENT_DATE AS Today;'2024-01-01'
2CURRENT_TIMEFetches the current time.SELECT CURRENT_TIME AS Now;'12:34:56'
3DATE()Extracts the date part from a datetime expression.SELECT DATE('2024-01-01 12:34:56') AS PureDate;'2024-01-01'
4DATE_ADD()Adds a specified interval to a date.SELECT DATE_ADD('2024-01-01', INTERVAL 3 DAY) AS AddedDate;'2024-01-04'
5DATE_SUB()Subtracts a specified interval from a date.SELECT DATE_SUB('2024-01-01', INTERVAL 1 MONTH) AS SubtractedDate;'2023-12-01'
6EXTRACT()Retrieves a specific component (e.g., YEAR, MONTH) from a datetime expression.SELECT EXTRACT(YEAR FROM '2024-01-01') AS Year;2024
7DATE_FORMAT()Formats a datetime expression into a specified string format.SELECT DATE_FORMAT('2024-01-01', '%W, %M %e, %Y') AS FormattedDate;'Tuesday, January 1, 2024'
8DAY()Extracts the day of the month from a date.SELECT DAY('2024-01-01') AS Day;1
9MONTH()Extracts the month from a date.SELECT MONTH('2024-01-01') AS Month;1
10YEAR()Extracts the year from a date.SELECT YEAR('2024-01-01') AS Year;2024
11DATEDIFF()Calculates the difference between two dates.SELECT DATEDIFF('2024-01-05', '2024-01-01') AS Difference;4
12NOW()Returns the current date and time.SELECT NOW() AS CurrentTimestamp;'2024-01-01 12:34:56'
13TIMESTAMPDIFF()Computes the difference between two datetime expressions in the specified unit (e.g., DAY).SELECT TIMESTAMPDIFF(DAY, '2024-01-01', '2024-01-05') AS DaysDifference;4

Learning with Interactive Exercises

To solidify understanding, incorporate interactive exercises and real-world projects where students can apply these date functions. For example:

🤖 Don't fully get this? Learn it with Claude

Stuck on Date Functions? Open Claude, copy a block below, and it'll teach you this exact concept — visually and interactively.

🎨 Explain it visually

Build the mental picture, not memorization.

I just read a lesson on **Date Functions** (Databases) and want to truly understand it. Explain Date Functions from first principles using ONE vivid real-world analogy and a visual mental model — draw it as ASCII art or a clear step-by-step diagram — with a concrete example using real numbers. Then ask me one question to check I got the mental picture, and wait for my reply. If you're unsure or a claim isn't standard, say so and reason from first principles instead of guessing.
🤔 Walk me through it (interactive)

Socratic — adapts to where you're stuck.

Teach me **Date Functions** interactively. Ask me ONE guiding question at a time, wait for my answer, and adapt to my confusion — build the idea with me step by step instead of explaining it all at once. If you're unsure or a claim isn't standard, say so and reason from first principles instead of guessing.
🧪 Quiz me & fix my gaps

Active recall exposes what you missed.

Quiz me on **Date Functions** with 5 questions, easy to tricky, ONE at a time. Tell me if each answer is right; at the end, explain clearly what I got wrong and why. If you're unsure or a claim isn't standard, say so and reason from first principles instead of guessing.
🧠 Make it stick

Intuition + hook + flashcards for long-term memory.

Help me remember **Date Functions** for the long term: give the one-sentence intuition, a memorable hook/mnemonic, a tiny worked example, and 3 active-recall flashcards (Q -> A). If you're unsure or a claim isn't standard, say so and reason from first principles instead of guessing.

📝 My notes