Ottieni mySQL MONTH () per utilizzare gli zeri iniziali?


92

Come faccio a specificare alla funzione MONTH () di mySQL di restituire "08" invece di 8 in questa query?

Vorrei che il tipo funzionasse in base alla data. Attualmente sto ottenendo risultati per data come

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

query corrente:

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

Risposte:


207

Utilizza invece quanto segue:

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

Spiegazione:

DATE_FORMAT()la funzione ti consente di formattare la data in ogni modo che preferisci utilizzando gli specificatori descritti nella tabella sottostante (presi alla lettera dalla documentazione ). Quindi una stringa di formato '%Y-%m'significa: "Un anno intero (4 cifre), seguito da un trattino (- ), seguito da un numero di mese a due cifre".

Notare che è possibile specificare la lingua utilizzata per i nomi di giorno / mese impostando la lc_time_namesvariabile di sistema. Estremamente utile. Fare riferimento alla documentazione per maggiori dettagli.

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 

8
Sebbene non sia quello che ha chiesto, questo sembra rispondere a quello che avrebbe dovuto chiedere.
Jeremy Holovacs

Perché il giorno del mese può essere 0?
SOFe

Perché il 0000-00-00 è una data valida (a seconda delle impostazioni)
Mchl

2
@SOFe> Gli intervalli per gli specificatori del mese e del giorno iniziano con zero perché MySQL consente la memorizzazione di date incomplete come "2014-00-00". dev.mysql.com/doc/refman/5.6/en/…
kio21

Fantastico, ha funzionato a meraviglia :)
Mizo Games

32

Puoi usare il riempimento come

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

Ha soddisfatto il bisogno in alveare. La funzione DATE_FORMAT () non è supportata in hive. La tua risposta aiuta.
Guangtong Shen


4

MONTH () restituisce un numero intero, quindi ovviamente non c'è zero iniziale. Dovrai convertirlo in una stringa, premere il tasto sinistro dello "0" e prendere gli ultimi 2 caratteri.

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.