MySQL curdate () function instance details, mysqlcurdate

Source: Internet
Author: User

MySQL curdate () function instance details, mysqlcurdate

Functions of MySQL CURDATE

If the string context or YYYMMDD format is used in the numeric context, the CURDATE () function returns the current date as a value in YYYY-MM-DD format.

The following example shows how to use the CURDATE () function in the string context.

sql> SELECT CURDATE();+------------+| CURDATE() |+------------+| 2017-08-10 |+------------+1 row in set (0.00 sec)

The following example shows how to use the CURDATE () function in the numeric context:

mysql> SELECT CURDATE() + 0;+---------------+| CURDATE() + 0 |+---------------+|   20170810 |+---------------+1 row in set

CURRENT_DATE and CURRENT_DATE () are synonyms of CURDATE.

mysql> SELECT CURRENT_DATE(), CURRENT_DATE, CURDATE();+----------------+--------------+------------+| CURRENT_DATE() | CURRENT_DATE | CURDATE() |+----------------+--------------+------------+| 2017-08-10   | 2017-08-10  | 2017-08-10 |+----------------+--------------+------------+1 row in set

CURDATE and NOW functions

The CURDATE () function returns only the current date, while the NOW () function returns the date and time of the current time. The result of the CURDATE () function is equivalent to the following expression:

 mysql> SELECT DATE(NOW());+-------------+| DATE(NOW()) |+-------------+| 2017-08-10 |+-------------+1 row in set

In this tutorial, you learned how to use the MySQL CURDATE () function to obtain the current date value.

If you have any questions, please leave a message or go to the community on this site for discussion. Thank you for reading this article and hope to help you. Thank you for your support for this site!

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.