Answer:
There is NO difference between Now() and Current_Timestamp() function in MySql.
Both produces the same output as Current Date and Time as the system date as a string in the form of "YYYY-MM-DD HH:MM:DD".
For ex:-
Select Now() as 'Current Time';
Select Current_Timestamp() as 'Current Time';
Asked In: Many Interviews |
Alert Moderator