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

MySQL:Vælg alle datoer mellem datointerval og få tabeldata, der matcher datoer

Jeg fandt ud af dette ved at ændre forespørgslen i løsningen for at få alle datoer.

Følgende forespørgsel returnerer alle datoer og tællinger af id'erne, hvis der findes nogen poster:

select d.date, count(v.id) from 
(select adddate('1970-01-01',t4.i*10000 + t3.i*1000 + t2.i*100 + t1.i*10 + t0.i) date from
 (select 0 i union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) t0,
 (select 0 i union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) t1,
 (select 0 i union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) t2,
 (select 0 i union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) t3,
 (select 0 i union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) t4) d
left join visitors v on d.date = v.date
where d.date between '2016-06-01' and '2016-06-30'
group by d.date
order by d.date

Venlighed for at få datointervallet går til @mark-bannister og en simpel joinforbindelse på forespørgslen, der matcher resultater, og sortering får løsningen.



  1. Er Date et nøgleord i mysql?

  2. mysqli_num_rows virker ikke korrekt

  3. advarselsproblem:forventer, at parameter 1 er mysqli_result

  4. Hvordan ignorerer dublerede rækker, når du indsætter