Using MySQL
Table
ID Date
001 2010-05-01
002 2010-06-08
Query
Select ID, Date from table;
I want to display a date in a specific format
Expected Output
ID Date
001 01-Mar-2010
002 08-June-2010
How to make a query in mysql.
Need Query Help