Obter mySQL MONTH () para usar zeros à esquerda?

91

Como faço para especificar a função MONTH () do mySQL para retornar '08' em vez de 8 nesta consulta?

Eu gostaria desse tipo de trabalho em datas. Atualmente obtendo resultados para datas como

2006-9
2007-1
2007-10
2007-11

consulta atual:

SELECT COUNT(*), CONCAT(YEAR(`datetime_added`), '-', MONTH(`datetime_added`)) as date FROM `person` WHERE (email = '' OR email IS NULL) 
GROUP BY date 
ORDER BY date ASC
Jerrygarciuh
fonte

Respostas:

204

Use o seguinte:

DATE_FORMAT(`datetime_added`,'%Y-%m')

Explicação:

DATE_FORMAT()A função permite formatar a data da maneira que desejar, usando os especificadores descritos na tabela abaixo (retirados literalmente da documentação ). Portanto, uma string de formato '%Y-%m'significa: "Um ano completo (4 dígitos), seguido por um traço ( -), seguido por um número de mês de dois dígitos".

Observe que você pode especificar o idioma usado para nomes de dia / mês definindo a lc_time_namesvariável do sistema. Extremamente útil. Consulte a documentação para obter mais detalhes.

Specifier   Description
%a  Abbreviated weekday name (Sun..Sat)
%b  Abbreviated month name (Jan..Dec)
%c  Month, numeric (0..12)
%D  Day of the month with English suffix (0th, 1st, 2nd, 3rd, …)
%d  Day of the month, numeric (00..31)
%e  Day of the month, numeric (0..31)
%f  Microseconds (000000..999999)
%H  Hour (00..23)
%h  Hour (01..12)
%I  Hour (01..12)
%i  Minutes, numeric (00..59)
%j  Day of year (001..366)
%k  Hour (0..23)
%l  Hour (1..12)
%M  Month name (January..December)
%m  Month, numeric (00..12)
%p  AM or PM
%r  Time, 12-hour (hh:mm:ss followed by AM or PM)
%S  Seconds (00..59)
%s  Seconds (00..59)
%T  Time, 24-hour (hh:mm:ss)
%U  Week (00..53), where Sunday is the first day of the week
%u  Week (00..53), where Monday is the first day of the week
%V  Week (01..53), where Sunday is the first day of the week; used with %X
%v  Week (01..53), where Monday is the first day of the week; used with %x
%W  Weekday name (Sunday..Saturday)
%w  Day of the week (0=Sunday..6=Saturday)
%X  Year for the week where Sunday is the first day of the week, numeric, four digits; used with %V
%x  Year for the week, where Monday is the first day of the week, numeric, four digits; used with %v
%Y  Year, numeric, four digits
%y  Year, numeric (two digits)
%%  A literal “%” character
%x  x, for any x not listed above 
Mchl
fonte
8
Embora não seja o que ele perguntou, isso parece responder ao que ele deveria ter perguntado.
Jeremy Holovacs de
Por que o dia do mês pode ser 0?
SOFe de
Porque 0000-00-00 é uma data válida (dependendo das configurações)
Mchl
2
@SOFe> Intervalos para os especificadores de mês e dia começam com zero devido ao fato de que o MySQL permite o armazenamento de datas incompletas, como '2014 Budap'. dev.mysql.com/doc/refman/5.6/en/…
kio21
Incrível, Funcionou como um encanto :)
Mizo Games
31

Você pode usar preenchimento como

SELECT
    COUNT(*), 
    CONCAT(YEAR(`datetime_added`), '-', LPAD(MONTH(`datetime_added`), 2, '0')) as date 
FROM `person` 
WHERE (email = '' OR email IS NULL) 
GROUP BY date 
ORDER BY date ASC
Dani
fonte
Atendeu a necessidade na colmeia. A função DATE_FORMAT () não é suportada no hive. Sua resposta ajuda.
Guangtong Shen
6
DATE_FORMAT(`datetime_added`,'%Y - %m')
Oh Chin Boon
fonte
1
Eu acredito que sem espaços:'%Y-%m'
SrAxi
4

MONTH () retorna um inteiro, então é claro que não há zero à esquerda. Você precisará convertê-lo em uma string, usar o botão esquerdo do mouse em '0' e obter os 2 últimos caracteres.

Jeremy Holovacs
fonte