diff --git a/out/functions-mysql.ini b/out/functions-mysql.ini index bd91ac95..4d8f4a23 100644 --- a/out/functions-mysql.ini +++ b/out/functions-mysql.ini @@ -192,6 +192,10 @@ name=CURRENT_TIMESTAMP declaration= category=Date and Time Functions description=CURRENT_TIMESTAMP and CURRENT_TIMESTAMP() are synonyms for NOW(). +[CURDATE] +declaration= +category=Date and Time Functions +description=Returns the current date as a value in ''YYYY-MM-DD'' or\nYYYYMMDD\nformat, depending on whether the function is used in a\nstring or\nnumeric context.\n \n\nSELECT CURDATE();\n+------------+\n| CURDATE() |\n+------------+\n| 2019-03-05 |\n+------------+\n \nIn a numeric context (note this is not performing date\ncalculations):\n \nSELECT CURDATE() +0;\n \n+--------------+\n| CURDATE() +0 |\n+--------------+\n| 20190305 |\n+--------------+\n \nData calculation:\n \nSELECT CURDATE() - INTERVAL 5 DAY;\n \n+----------------------------+\n| CURDATE() - INTERVAL 5 DAY |\n+----------------------------+\n| 2019-02-28 |\n+----------------------------+ [CURTIME] declaration=[fsp] category=Date and Time Functions