SELECT Date_format(now(),'%Y/%M/%d'); # '2010/January/12' SELECT Date_format(now(),'%Y-%M-%d %h:%i:%s %p'); #'2010-January-12 12:34:29 AM' SELECT Date_format(now(),'%W %d %M %Y'); # 'Tuesday 12 January 2010' SELECT Date_format(now(),'El año actual es %Y'); # 'El año actual es 2010'