Answer:
SELECT
NOW() AS 'today_unformatted',
DATE_FORMAT(NOW(), '%d-%b-%Y') AS 'today_formatted';
Step-by-step explanation:
%d represents date.
%b represents month.
%Y represents year.
5.8m questions
7.6m answers