Puoi ottenere lo stesso usando le funzioni di MySQL. Spero che la seguente query ti dia l'output desiderato.
select *
from orders
where status='Q' AND
date_format(from_unixtime(date),'%Y-%m-%d') = current_date;
Puoi ottenere lo stesso usando le funzioni di MySQL. Spero che la seguente query ti dia l'output desiderato.
select *
from orders
where status='Q' AND
date_format(from_unixtime(date),'%Y-%m-%d') = current_date;