Desenvolvedor e Analista de Sistemas | IFPA

quarta-feira, 24 de dezembro de 2014

Funções de Data e Hora DATE_FORMAT() no MySQL

com 0 Comentário

Definição e Uso

A função DATE_FORMAT () é usado para exibir os dados de data / hora em diferentes formatos.
Sintaxe
DATE_FORMAT(date,format)
Onde data é uma data válida e formato especifica o formato de saída para a data / hora.
Os formatos que podem ser utilizados são:
FormatoDescrição
%aAbbreviated weekday name
%bAbbreviated month name
%cMonth, numeric
%DDay of month with English suffix
%dDay of month, numeric (00-31)
%eDay of month, numeric (0-31)
%fMicroseconds
%HHour (00-23)
%hHour (01-12)
%IHour (01-12)
%iMinutes, numeric (00-59)
%jDay of year (001-366)
%kHour (0-23)
%lHour (1-12)
%MMonth name
%mMonth, numeric (00-12)
%pAM or PM
%rTime, 12-hour (hh:mm:ss AM or PM)
%SSeconds (00-59)
%sSeconds (00-59)
%TTime, 24-hour (hh:mm:ss)
%UWeek (00-53) where Sunday is the first day of week
%uWeek (00-53) where Monday is the first day of week
%VWeek (01-53) where Sunday is the first day of week, used with %X
%vWeek (01-53) where Monday is the first day of week, used with %x
%WWeekday name
%wDay of the week (0=Sunday, 6=Saturday)
%XYear of the week where Sunday is the first day of week, four digits, used with %V
%xYear of the week where Monday is the first day of week, four digits, used with %v
%YYear, four digits
%yYear, two digits


Exemplo

O script a seguir usa a função DATE_FORMAT () para visualizar diferentes formatos. Nós vamos usar o NOW () função para obter a data / hora atual:
DATE_FORMAT(NOW(),'%b %d %Y %h:%i %p')
DATE_FORMAT(NOW(),'%m-%d-%Y')
DATE_FORMAT(NOW(),'%d %b %y')
DATE_FORMAT(NOW(),'%d %b %Y %T:%f')

O resultado seria algo parecido com isto:
Nov 04 2008 11:45 PM
11-04-2008
04 Nov 08
04 Nov 2008 11:45:34:243
Mais informações, acesse o site do MySQL
http://ftp.nchu.edu.tw/MySQL/doc/refman/4.1/pt/date-and-time-functions.html

+1

0 comentários :

Postar um comentário

Total de visualizações