Forum Moderators: open
select date_format(now(),'%d-%a-%y');
select date_format(curdate(),'%d-%a-%y');
30-Fri-07
select date_format(now(),'%d-%a-%Y');
select date_format(curdate(),'%d-%a-%Y');
30-Fri-2007
Substitute your column name for now() or curdate();
Date_format() [dev.mysql.com] and other date and time functions