sql >> Database teknologi >  >> RDS >> Mysql

Sådan får du en liste over måneder mellem to datoer i mysql

SQLFiddle-demo

select 
DATE_FORMAT(m1, '%b %Y')

from
(
select 
('2013-01-23' - INTERVAL DAYOFMONTH('2013-01-23')-1 DAY) 
+INTERVAL m MONTH as m1
from
(
select @rownum:[email protected]+1 as m from
(select 1 union select 2 union select 3 union select 4) t1,
(select 1 union select 2 union select 3 union select 4) t2,
(select 1 union select 2 union select 3 union select 4) t3,
(select 1 union select 2 union select 3 union select 4) t4,
(select @rownum:=-1) t0
) d1
) d2 
where m1<='2014-04-01'
order by m1


  1. Hvordan indstiller jeg et SQL Server-scripts timeout inde fra scriptet?

  2. Opbygning af en meget tilgængelig database til Moodle ved hjælp af PostgreSQL

  3. Hvordan returnerer man ugen i måneden i MySQL?

  4. MySQL-konverteringsfunktion