MySQL Tutorial

MySQL Tutorial MySQL Features MySQL Database Introduction MySQL Environmental Setup MySQL Data Types MySQL variable MySQL Advance table Query MySQL database queries MySQL Entity-Relationship Model MySQL Table Query MySQL Operators MySQL logical conditions MySQL Queries MySQL Clauses Clustered vs Non-Clustered Index MySQL Full text index MySQL Descending Index MySQL Invisible Index MySQL Composite Index MySQL Prefix index MySQL Index MySQL Create index MySQL Drop Index MySQL Show index MySQL Unique index MySQL Table MySQL Variable MySQL View MySQL Constraints MySQL Command Line Client Basic Queries MySQL Stored Procedure MySQL IF Statement MySQL Subquery MySQL Triggers

MySQL Join

MySQL Join MySQL CROSS JOIN MySQL DELETE JOIN MySQL EQUI JOIN MySQL INNER JOIN MySQL Union MySQL NATURAL JOIN MySQL RIGHT JOIN MySQL SELF JOIN MySQL UPDATE JOIN

MySQL Function

MySQL Function MySQL AVG() Function MySQL SUM() Function MySQL String() Function MySQL Advance() Function MySQL Aggregate() Function MySQL COALESCE() Function MySQL Control Flow Function MySQL COUNT() Function MySQL Date And Time Function MySQL GREATEST() Function MySQL ISNULL() Function MySQL LEAST() Function MySQL Math() Function MySQL MAX() Function MySQL MIN() Function MySQL find_in_set() function MySQL ASIN() Function MySQL CEIL() function MySQL CEILING() function MySQL TAN() Function MySQL Truncate() Function MySQL FLOOR() function MySQL LN() function MySQL LOG2() function MySQL LOG10() function MySQL MOD() function MySQL PI() function MySQL POW() function MySQL RADIANS() function MySQL RAND() function MySQL ROUND() function MySQL Character Length Function MySQL Current Date Function MySQL Date Add Function MySQL Date Format Function MySQL Datediff Function MySQL Day Function MySQL Elt Function MySQL Export Set Function MySQL Field Function MySQL Format Function MySQL From Base64 Function MySQL Hex Function MySQL Insert Function MySQL Instr Function MySQL Length Function MySQL CONCAT() function MySQL FIND_IN_SET() function MySQL LIKE() function MySQL LOAD_FILE() function MySQL LOCATE() function MySQL LOG() function MySQL MONTHNAME() function MySQL NOW() function MySQL PERIOD_ADD() function MySQL PERIOD_DIFF() function MySQL POWER() function MySQL QUARTER() function MySQL REVERSE() function MySQL RIGHT() Function MySQL RPAD() function MySQL RTRIM() function MySQL SEC_TO_TIME() function MySQL SOUNDEX() function

Questions

Which Clause is Similar to Having Clause in MySQL

Misc

MySQL Error 1046 - No Database Selected Failed to Start MySQL Service Unit MySQL Service Unit not Found Import MySQL Connector Mudule not Found Error No Module Named MySQL Joins Available in MySQL MySQL Docs MySQL Download For Windows 7 64 Bit MySQL Error Code 1064 MySQL Export MySQL History MySQL Host MySQL Import MySQL Drop All Tables MySQL Drop MySQL Error Code 1175 MySQL Events MySQL Except MYSQL Foreign Key Constraint MySQL If Exists MySQL IndexOf MySQL List All Tables json_extract in MySQL TIMESTAMPDIFF in MySQL MySQL Syntax Checker Sudo MySQL Secure Installation

MySQL CURRENT_DATE() Function

In this context, we will learn how we can use the MySQL CURRENT_DATE() function to get the current date, and we will see in the two formats, such as strings and numeric, respectively.

Introduction of MySQL CURRENT_DATE()function:

We will see in this function how we can use the current date function. In this, there are two formats for getting the current date by this function, such as “ YYYY – MM – DD”, which is in string format or YYYYMMDD, which is in numeric format.

Syntax of CURRENT_DATE() function in MySQL

CURRENT_DATE()

Parameter used in CURRENT_DATE()function

There is no parameter accepted by this method.

Returns:

The current date is returned in this.

Important points of MySQL CURRENT_DATE() function:

  • If we are using the string format, then we will get the current date as a ‘ YYYY – MM – DD’ from the CURRENT_DATE() function.
  • On the other hand, if we are using the numeric context, then we will get the current date as a YYYYMMDD from the CURRENT _DATE function.
  • The CURRENT_DATE()function is a synonym for the CUR_DATE function.

Application used for CURRENT_DATE() function:

The CURRENT_DATE()function is used in the given below MySQL versions.

  • MySQL 5.7
  • MySQL 5.6
  • MySQL 5.5
  • MySQL 5.1
  • MySQL 5.0
  • MySQL 4.1
  • MySQL 4.0
  • MySQL 3.23

Example:

Describe the method in which the CURRENT_DATE() () function is used in the context of the string to get the current date.

SELECT CURRENT_DATE() AS CURR_DATE ;

Output:

CURR_DATE
2019 – 08 – 17
1 row in set (0.00 sec)

Example:

Write the method in which the CURRENT_DATE() function is used to find the present date in YYYYMMDD format, which is the numeric format.

SELECT CURRENT_DATE() + 0 AS CURR_DATE ;

Output:

CURR_DATE
20190817
1 row in set (0.00 sec)
/

Example:

In this example, we will see how we can get the next 5 days' date by the CURRENT_DATE() function in the YYYYMMDD format.

SELECT CURRENT_DATE() +5 AS NEXT_DATE ;

Output:

NEXT _DATE
20190822
1 row in set (0.00 sec)

Example:

This example shows how we can get the date 6 days before the current date in the format of YYYYMMDD, which is a numeric context.

SELECT CURRENT_DATE() – 6 AS PREV_DATE ;

Output:

PREV_DATE
20190810
1 row in set (0.00 sec)

Application of MySQL CURRENT_DATE()function:

This function is used to get the current date in MySQL in two formats.

Summary:

In the above context, we have learned how we can use the CURRENT_DATE() function in MySQL used to get the current date in MySQL in two formats.