Home > Database > Mysql Tutorial > Why Doesn't CURRENT_DATE/CURDATE() Work as a Default Value for MySQL DATE Columns?

Why Doesn't CURRENT_DATE/CURDATE() Work as a Default Value for MySQL DATE Columns?

Mary-Kate Olsen
Release: 2024-12-20 02:53:09
Original
429 people have browsed it

Why Doesn't CURRENT_DATE/CURDATE() Work as a Default Value for MySQL DATE Columns?

Default Date Value Issues with CURRENT_DATE/CURDATE()

In the MySQL world, you may encounter a seemingly straightforward question: why doesn't CURRENT_DATE or CURDATE() work as the default value for a DATE column?

The Riddle: Why Doesn't It Work?

As you would expect, this code should work without issues:

CREATE TABLE INVOICE(
   INVOICEDATE DATE NOT NULL DEFAULT CURRENT_DATE
)
Copy after login

However, much to our surprise, it doesn't. What's the reason behind this conundrum?

The Answer: A MySQL Limitation

The answer lies in a limitation within MySQL. Despite being intuitive, setting the default value of a DATE column to CURRENT_DATE or CURDATE() is not supported.

According to the MySQL documentation, default values must be constants rather than functions or expressions. This eliminates the possibility of using these functions to dynamically set default dates.

The Exception: CURRENT_TIMESTAMP

The exception to this rule is CURRENT_TIMESTAMP. This function can be set as the default value for a TIMESTAMP column. However, it's important to note that it represents the current moment, not a specific date.

UPDATE: In MySQL 8.0.13, there has been a significant change. CURRENT_DATE and CURDATE() are now supported as default values for DATE columns. This update addresses the limitation discussed in this article.

The above is the detailed content of Why Doesn't CURRENT_DATE/CURDATE() Work as a Default Value for MySQL DATE Columns?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template