consultar cantidad de dias en el pasado
AUTOR PREGUNTA #1
Este es mi query actual:
'itemCount' => array(self::STAT, 'Item', 'ItemId', 'condition'=>'SUBSTRING(DateMoved FROM 1 FOR 7) = SUBSTRING(current_date - INTERVAL 0 month FROM 1 FOR 7) AND Status="W"'),
He tratado modificando esto y he tratado un diferente acercamiento usando strtotime pero tampoco me ha funcionado, de que forma puedo hacer esto? Agradezco toda la ayuda
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
#2
SELECT * FROM table_name t WHERE t.DateMoved >= DATE_ADD(CURDATE(), INTERVAL -45 DAY);
Solo debes agregarselo a tu query original y quedaria de la siguiente forma:
'itemCount' => array(self::STAT, 'Item', 'ItemId', 'condition'=>'DateMoved >= DATE_ADD(CURDATE(), INTERVAL -45 DAY) AND Status="W"'),