รับ mySQL MONTH () เพื่อใช้เลขศูนย์นำหน้า?


95

ฉันจะระบุให้ฟังก์ชัน MONTH () ของ mySQL ส่งคืน '08' แทน 8 ในแบบสอบถามนี้ได้อย่างไร

ฉันต้องการให้การจัดเรียงทำงานเป็นข้อมูล กำลังได้รับผลลัพธ์สำหรับวันที่เช่น

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

แบบสอบถามปัจจุบัน:

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

คำตอบ:


211

ใช้สิ่งต่อไปนี้แทน:

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

คำอธิบาย:

DATE_FORMAT()ฟังก์ชันช่วยให้คุณสามารถจัดรูปแบบวันที่ได้ตามที่คุณต้องการโดยใช้ตัวระบุที่อธิบายไว้ในตารางด้านล่าง (นำมาคำต่อคำจากเอกสารประกอบ ) สตริงรูปแบบจึง'%Y-%m'หมายถึง: "ปีเต็ม (4 หลัก) ตามด้วยขีด ( -) ตามด้วยตัวเลขเดือนสองหลัก"

โปรดทราบว่าคุณสามารถระบุภาษาที่ใช้สำหรับชื่อวัน / เดือนโดยการตั้งค่าlc_time_namesตัวแปรระบบ มีประโยชน์อย่างยิ่ง โปรดดูเอกสารสำหรับรายละเอียดเพิ่มเติม

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
แม้ว่าจะไม่ใช่สิ่งที่เขาถาม แต่ดูเหมือนว่าจะตอบในสิ่งที่เขาควรถาม
Jeremy Holovacs

ทำไมวันของเดือนถึงเป็น 0 ได้?
SOFe

เนื่องจาก 0000-00-00 เป็นวันที่ที่ถูกต้อง (ขึ้นอยู่กับการตั้งค่า)
Mchl

2
@SOFe> ช่วงของตัวระบุเดือนและวันเริ่มต้นด้วยศูนย์เนื่องจาก MySQL อนุญาตให้จัดเก็บวันที่ที่ไม่สมบูรณ์เช่น '2014-00-00' dev.mysql.com/doc/refman/5.6/en/…
kio21

ยอดเยี่ยมทำงานได้อย่างมีเสน่ห์ :)
Mizo Games

33

คุณสามารถใช้ช่องว่างภายในเช่น

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

พบกับความต้องการในรัง ไม่รองรับฟังก์ชัน DATE_FORMAT () ในรัง คำตอบของคุณช่วยได้
Guangtong Shen


4

MONTH () ส่งคืนจำนวนเต็มดังนั้นแน่นอนว่าไม่มีศูนย์นำหน้า คุณจะต้องแปลงเป็นสตริงโดยกด "0" ทางซ้ายแล้วใช้อักขระ 2 ตัวสุดท้าย

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.