I want output of Mysql Month() function as 'Jan',Feb etc.
SELECT MONTHNAME(curdate());
or if you only need the first 3 letters
SELECT substr(MONTHNAME(curdate()), 1, 3);
You could use date_format
select DATE_FORMAT("2017-06-15", "%b");