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

MySQL:Vælg alle datoer i et interval, selvom der ikke er nogen registreringer til stede

Jeg håber, du finder ud af resten.

select  * from (
select date_add('2003-01-01 00:00:00.000', INTERVAL n5.num*10000+n4.num*1000+n3.num*100+n2.num*10+n1.num DAY ) as date from
(select 0 as num
   union all select 1
   union all select 2
   union all select 3
   union all select 4
   union all select 5
   union all select 6
   union all select 7
   union all select 8
   union all select 9) n1,
(select 0 as num
   union all select 1
   union all select 2
   union all select 3
   union all select 4
   union all select 5
   union all select 6
   union all select 7
   union all select 8
   union all select 9) n2,
(select 0 as num
   union all select 1
   union all select 2
   union all select 3
   union all select 4
   union all select 5
   union all select 6
   union all select 7
   union all select 8
   union all select 9) n3,
(select 0 as num
   union all select 1
   union all select 2
   union all select 3
   union all select 4
   union all select 5
   union all select 6
   union all select 7
   union all select 8
   union all select 9) n4,
(select 0 as num
   union all select 1
   union all select 2
   union all select 3
   union all select 4
   union all select 5
   union all select 6
   union all select 7
   union all select 8
   union all select 9) n5
) a
where date >'2011-01-02 00:00:00.000' and date < NOW()
order by date

Med

select n3.num*100+n2.num*10+n1.num as date

du får en kolonne med tal fra 0 til max(n3)*100+max(n2)*10+max(n1)

Da vi her har max n3 som 3, vil SELECT returnere 399 plus 0 -> 400 poster (datoer i kalenderen).

Du kan justere din dynamiske kalender ved at begrænse den, for eksempel fra min(dato), du skal til nu().



  1. 7 gratis værktøjer til databasediagram for travle datafolk

  2. Hvilken objekttype returnerer Spring Hibernate Template-eksekveringsmetoden for en tælleforespørgsel på Oracle?

  3. ALTER TABLE-sætningen var i konflikt med FOREIGN KEY-begrænsningen

  4. Fejl ved indlæsning af MySQLdb-modul 'Har du installeret mysqlclient eller MySQL-python?'