CURRENT_DATE() Function in MySQL Last Updated : 28 Sep, 2020 Comments Improve Suggest changes Like Article Like Report In this article, you will see how you can use the current_date function and you will see both formats in the string and numeric respectively. CURRENT_DATE : In this function, you will see how you can use the current date function. In MSQSSL, format of date '‘YYYY-MM-DD’(in string) format or YYYYMMDD'(in numeric) format. Syntax : CURRENT_DATE() Parameter : This function does not accept any parameter. Returns - It returns the current date. Example-1 : CURRENT_DATE() function to find the present date. SELECT CURRENT_DATE() AS CURR_DATE; Output : CURR_DATE2020-09-22 Example-2 : CURRENT_DATE() function to find the present date in YYYYMMDD format. SELECT CURRENT_DATE()+0 AS CURR_DATE; Output : CURR_DATE20200922 Example-3 : Adding 3 Days to CURRENT_DATE() function to find the next date. SELECT CURRENT_DATE()+3 AS NEXT_DATE; Output : NEXT_DATE20200925 Comment J jana_sayantan Follow 0 Improve J jana_sayantan Follow 0 Improve Article Tags : SQL DBMS-SQL mysql Explore SQL Tutorial 6 min read BasicsWhat is SQL? 6 min read SQL Data Types 3 min read SQL Operators 4 min read SQL Commands | DDL, DQL, DML, DCL and TCL Commands 4 min read SQL Database Operations 3 min read SQL CREATE TABLE 3 min read Queries & OperationsSQL SELECT Query 3 min read SQL INSERT INTO Statement 4 min read SQL UPDATE Statement 3 min read SQL DELETE Statement 3 min read SQL - WHERE Clause 3 min read Aliases in SQL 3 min read SQL Joins & FunctionsSQL Joins (Inner, Left, Right and Full Join) 4 min read SQL CROSS JOIN 2 min read SQL | Date Functions 4 min read SQL | String functions 6 min read Data Constraints & Aggregate FunctionsSQL NOT NULL Constraint 2 min read SQL PRIMARY KEY Constraint 5 min read SQL Count() Function 7 min read SQL SUM() Function 5 min read SQL MAX() Function 4 min read AVG() Function in SQL 4 min read Advanced SQL TopicsSQL Subquery 4 min read Window Functions in SQL 6 min read SQL Stored Procedures 7 min read SQL Triggers 5 min read SQL Performance Tuning 6 min read SQL TRANSACTIONS 6 min read Database Design & SecurityIntroduction of ER Model 10 min read Introduction to Database Normalization 6 min read SQL Injection 11 min read SQL Data Encryption 5 min read SQL Backup 4 min read What is Object-Relational Mapping (ORM) in DBMS? 7 min read Like