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

Opret en midlertidig tabel med datoer

Du kan generere de dynamiske datoer og derefter indsætte dem i tabellen som nedenfor. Jeg har brugt en tabel i stedet for en midlertidig tabel, du kan ændre den til en midlertidig tabel.

CREATE TEMPORARY TABLE IF NOT EXISTS dates_test
(dates datetime);


insert into dates_test (dates)
select 
t1.date
from
(
  select
  a.Date as date
  from (
    select curdate() - INTERVAL (a.a + (10 * b.a) + (100 * c.a)) DAY as Date
    from (select 0 as a 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) as a
    cross join (select 0 as a 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) as b
    cross join (select 0 as a 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) as c
  ) a
  where a.Date BETWEEN '2014-11-11' 
  and
  DATE_ADD('2014-11-11' ,INTERVAL 3 DAY)
)t1

Her er en demo




  1. Sådan opretter du forbindelse til en MySQL-datakilde i Visual Studio

  2. Modellering af en åben markedsplads for uddannelse

  3. Eliminer dubletter ved hjælp af Oracle LISTAGG-funktionen

  4. Afgrænsere i MySQL