I've got this snippet in my snippety bits - where $date is your sql datestamp:
list($year, $month, $day)= explode("-", $date);
$uk_date=date(" d F Y", mktime(0,0,0,$month,$day,$year));
echo ( " $uk_date " );
OR - I bung this into my sql statement:
SELECT DATE_FORMAT( Your_Date,'%d %b %Y') AS Your_Date
They output eg: 26 February 2005