Navicat Blog

Working with Dates and Times in MySQL - Part 4 Mar 22, 2022 by Robert Gravelle

Date/Time Creation

In this this series on Dates and Times, we've explored MySQL's five temporal data types, as well as some of its many date/time-oriented functions. In this installment, we'll be covering a few ways to create dates and times in MySQL.

Using the MAKEDATE() Function

In Part 3, we took a brief look at the MAKEDATE() function. It takes a year and dayofyear and returns the resulting Date value. For instance, MAKEDATE(2021, 200) would return a Date of "2021-07-19". The downside to this function should be readily obvious; it takes some calculation to determine the dayofyear if you have a year, month, and day. In that case, you can make a DATE by combining MAKEDATE() with DATE_ADD(). MAKEDATE() with a day of 1 will give you a DATE for the first day of the given year, and then you can add to it the month and day with DATE_ADD(). Here's an example that sets the year and month only:

makedate_and_date_add (35K)

This SELECT statement includes the day as well:

makedate_and_date_add_with_day (44K)

The MAKETIME() Function

If you're looking to create a TIME only, MAKETIME() returns a time value calculated from the hour, minute, and second arguments:

maketime (27K)

The second argument can have a fractional part for milliseconds:

maketime_with_fractions (25K)

The STR_TO_DATE() Function

Another option for creating a DATE, TIME, or DATETIME is to use the STR_TO_DATE() function. It takes a date string and a format string and returns:

  • a DATE value if the string contains only date
  • a TIME value if the string contains only time
  • a DATETIME value if the format string contains both date and time parts

Moreover, if the date, time, or datetime value extracted from str is invalid, STR_TO_DATE() returns NULL and produces a warning.

Some Examples

Here are a couple of Dates in Navicat for MySQL 16:

str_to_date (47K)

Scanning starts at the beginning of str and fails if format is found not to match. Meanwhile, extra characters at the end of str are ignored:

str_to_date_times (57K)

Unspecified date or time parts have a value of 0, so incompletely specified values in the date/time string produce a result with some or all parts set to 0:

str_to_date_times_with_missing_parts (46K)

For the full list of specifiers that can be used in format, see the DATE_FORMAT() function description in the official MySQL docs.

Combining the MAKEDATE(), MAKETIME(), AND STR_TO_DATE() Functions

If we had two separate DATE and TIME values, we could get a DATETIME value by concatenating the the results of MAKEDATE() and MAKETIME() and then passing the combined string to STR_TO_DATE(). While that might sound like a lot of work, it's really quite simple in practice:

str_to_date_datetime (49K)

Conclusion

In this installment of the Working with Dates and Times in MySQL series, we covered a few ways to create dates and times in MySQL using some of its specialized date and time functions. In the next installment, we'll look at how to use temporal data in your SELECT queries.

Navicat Blogs
Feed Entries
Blog Archives
Share