I have been going round the internet looking for the best way to convert my timestamp values from my dateadded
column : 2017-04-05 15:24:15
and obtain month name APRIL
as the output.
Which is the best query to do this.
I have been going round the internet looking for the best way to convert my timestamp values from my dateadded
column : 2017-04-05 15:24:15
and obtain month name APRIL
as the output.
Which is the best query to do this.
In MySql, use monthname()
select
dateadded
, monthname(dateadded) as MonthName
from t