02SYSDATE NOW CURDATE

suggest change
SELECT SYSDATE();

This function returns the current date and time as a value in 'YYYY-MM-DD HH:MM:SS' or YYYYMMDDHHMMSS format, depending on whether the function is used in a string or numeric context. It returns the date and time in the current time zone.

SELECT NOW();

This function is a synonym for SYSDATE().

SELECT CURDATE();

This function returns the current date, without any time, as a value in 'YYYY-MM-DD' or YYYYMMDD format, depending on whether the function is used in a string or numeric context. It returns the date in the current time zone.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents