Curdate() Vs current_date MySql

mysql, sql-date-functions

Solution

There's no difference. It says it right there in the manual:

CURRENT_DATE and CURRENT_DATE() are synonyms for CURDATE().

Problem

What is the difference between `curdate()` and `current_date` in MySQL?

Original source

Related problems