1In MySQL the CURDATE() returns the current date in 'YYYY-MM-DD' format or 'YYYYMMDD' format depending on whether numeric or string is used in the function. CURRENT_DATE and CURRENT_DATE() are the synonym of CURDATE()
1Add GETDATE() in sql query where you want to pass current timestamp.
2
3Example
4Return the current database system date and time:
5
6SELECT GETDATE();