Detailed Example of MySQL curdate() Function

Detailed Example of MySQL curdate() Function

MySQL CURDATE Function Introduction

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

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

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

The following example shows how the CURDATE() function is used in a numeric context:

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

CURRENT_DATE and CURRENT_DATE() are synonyms for 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, whereas the NOW() function returns both the date and time portion 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 have learned how to use the MySQL CURDATE() function to get the current date value.

If you have any questions, please leave a message or come to the community of this site to communicate and discuss. Thank you for reading and I hope this can be helpful to everyone. Thank you for your support of this site!

You may also be interested in:
  • Sequence implementation method based on MySQL
  • How to install the mysqldb module in python under windows
  • Detailed steps to configure Apache + PHP + MySQL operating environment in Mac OS X
  • MySQL 5.7 installation-free configuration graphic tutorial
  • Linux implements automatic and scheduled backup of MySQL database every day
  • Detailed explanation of the implementation process of dual-master synchronization of partial tables in MySQL 5.7
  • Batch files for stopping and starting oracle and mysql databases
  • Using PHP to access the MySql database logical operations and examples of adding, deleting, modifying and checking

<<:  Detailed explanation of the use of Refs in React's three major attributes

>>:  Explanation of the steps for Tomcat to support https access

Recommend

A universal nginx interface to implement reverse proxy configuration

1. What is a proxy server? Proxy server, when the...

How to set mysql permissions using phpmyadmin

Table of contents Step 1: Log in as root user. St...

How to make if judgment in js as smooth as silk

Table of contents Preface Code Implementation Ide...

Hbase installation and configuration tutorial under Linux

Table of contents Hbase installation and configur...

What are the differences between sql and mysql

What is SQL? SQL is a language used to operate da...

About MySQL innodb_autoinc_lock_mode

The innodb_autoinc_lock_mode parameter controls t...

js to achieve a simple carousel effect

This article shares the specific code of js to ac...

Specific use of Linux dirname command

01. Command Overview dirname - strip non-director...

CSS achieves colorful and smart shadow effects

background Ever wondered how to create a shadow e...

Syntax alias problem based on delete in mysql

Table of contents MySQL delete syntax alias probl...

Sample code for installing ASPNET.Core3.0 runtime in Linux

# The following examples are for x64-bit runtime ...

SQL left join and right join principle and example analysis

There are two tables, and the records in table A ...

Detailed explanation of commonly used nginx rewrite rules

This article provides some commonly used rewrite ...

Advantages of MySQL covering indexes

A common suggestion is to create indexes for WHER...