Grokking SQL for Tech Interviews
Ask Author
Back to course home

0% completed

Vote For New Content
Date Functions
Table of Contents

Contents are not accessible

Contents are not accessible

Contents are not accessible

Contents are not accessible

Contents are not accessible

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

  • CURRENT_DATE: Retrieves the current date.
  • CURRENT_TIME: Fetches the 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()

  • DATE_ADD(): Adds a specified interval to a date.
  • DATE_SUB(): Subtracts a specified interval from a date.

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()

  • DAY(): Extracts the day of the month from a date.
  • MONTH(): Extracts the month from a date.
  • YEAR(): Extracts the year from a date.

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:

  • Exercise 1: Create a query that adds 10 days to each order date and displays the new expected delivery date.

    SELECT order_id, order_date, DATE_ADD(order_date, INTERVAL 10 DAY) AS ExpectedDeliveryDate FROM orders;
  • Exercise 2: Develop a report that extracts the year and month from each transaction date and groups sales data accordingly.

    SELECT EXTRACT(YEAR FROM transaction_date) AS Year, EXTRACT(MONTH FROM transaction_date) AS Month, SUM(amount) AS TotalSales FROM transactions GROUP BY Year, Month;

.....

.....

.....

Like the course? Get enrolled and start learning!

Table of Contents

Contents are not accessible

Contents are not accessible

Contents are not accessible

Contents are not accessible

Contents are not accessible