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

Laravel:riempi le date e i conteggi mancanti dal database

Questa soluzione ha funzionato per me, ho prima creato una matrice con tutte le date nell'intervallo di tempo, con le date impostate come chiavi e valori di conteggio impostati su 0, quindi ho sostituito i valori dopo la query in DB, nella stessa matrice con conteggio valori dalla query:

$period = new DatePeriod( new DateTime($from), new DateInterval('P1D'), new DateTime($to));
      $dbData = [];

      foreach($period as $date){
          $range[$date->format("Y-m-d")] = 0;
      }

      $data = DB::table($request['option'])
                ->select(DB::raw('DATE(created_at) as time'), DB::raw('count(*) as count'))
                ->whereDate('created_at', '>=', date($from).' 00:00:00')
                ->whereDate('created_at', '<=', date($to).' 00:00:00')
                ->groupBy('time')
                ->get();

      foreach($data as $val){
        $dbData[$val->time] = $val->count;
      }

      $data = array_replace($range, $dbData);
    }

    return json_encode($data);