EN
MySQL - NOW() function example
0 points
In this article, we would like to show you NOW()
function example in MySQL.
Quick solution:
xxxxxxxxxx
1
SELECT NOW();
In this example, we will display the current date and time using NOW()
function.
Query:
xxxxxxxxxx
1
SELECT NOW() AS 'current_date_and_time';
Result:
