Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Laravel Simple Month Selection

y tried retrieve month from date field "fechas" (datetime type) where testing with SQL clause MONTH not works... thanks for replies

            $data = DB::table("ordenes")
              ->select(array('*', DB::raw('((cant_ped)*(precio_unit)) as sum_pedidos'), DB::raw('((cant_pend)*(precio_unit)) as sum_pends'), DB::raw('((cant_rec)*(precio_unit)) as sum_recibidos'), DB::raw('(((cant_pend)*(precio_unit)) + ((cant_rec)*(precio_unit))) as sum_importe')))
              ->where('cod_prov', '<>', 0)

              ///////////// line ERROR
              ->where('MONTH(fecha)', '=', '06')

              ///////->where('MONTH(fecha)', '=', '2014-06-20') ///test OK

              ->groupBy('cod_prov')
              ->skip(Input::get("jtStartIndex"))
              ->take(Input::get("jtPageSize"))
              ->get();
like image 618
Alejandro Beltran Avatar asked Aug 07 '14 03:08

Alejandro Beltran


1 Answers

You could use the hide gem whereMonth:

DB::table("ordenes")
    ->whereMonth('fecha', '=', '06')
    ->get();

I highly recommend to you read the Builder.php source to search for another gems. :) https://github.com/laravel/framework/blob/4.2/src/Illuminate/Database/Query/Builder.php

like image 142
Kim Tranjan Avatar answered Oct 19 '22 22:10

Kim Tranjan