Sql Date Conversion
The Tutorial illustrate an example from 'Sql Date Conversion'. To understand this, we show you an example that return you the specific format of date. This section shows you how to convert date :
'2008-12-04':-This is the date which is to be
converted.
%d:-Returns the date from the date you specified.
%M:-Returns the month name from the date you specified.
%Y:-Returns the Year from the date you specified.
Query:-
SELECT DATE_FORMAT('2008-12-04', "%d-%M-%Y"); |
Output:-