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 More infoAdvertise with us Next Article CURRENT_DATE() Function in MySQL J jana_sayantan Follow Improve Article Tags : SQL DBMS-SQL mysql Similar Reads CURDATE() Function in MySQL The CURDATE() function in MYSQL is used to return the current date. The date is returned to the format of "YYYY-MM-DD" (string) or as YYYYMMDD (numeric). This function equals the CURRENT_DATE() function. In this article, we are going to discuss about CURDATE() function in detail. Syntax CURDATE(); P 2 min read PLSQL | CURRENT_DATE Function The PLSQL CURRENT_DATE function is used to return the current date in the session time zone. The time zone used is the time zone of the current SQL session as set by the ALTER SESSION command. The PLSQL CURRENT_DATE function uses its value from the Gregorian calendar of datatype DATE. The CURRENT_DA 2 min read CURTIME() function in MySQL CURTIME() function in MySQL is used to check the current time. It returns the current time as a value in âhh:mm:ssâ or 'hhmmss' format, depending on whether the function is used in a string or numeric context. Syntax : CURTIME(fsp) Parameters : This method accepts only one parameter. fsp - It specif 2 min read CURRENT_TIME() function in MySQL In MySQL, the CURRENT_TIME() function is a valuable tool for retrieving the current system time from the server, providing the exact time in hours, minutes, and seconds. It is widely used in scenarios where tracking or querying the current time is essential without needing the full date. In this art 3 min read DATE_ADD() Function in MySQL DATE_ADD() function in MySQL is used to add a specified time or date interval to a specified date and then return the date. Syntax: DATE_ADD(date, INTERVAL value addunit) Parameter: This function accepts two parameters which are illustrated below: date - Specified date to be modified. value addunit 2 min read Like