This is my database:
Here I have to check the query current date+status=Q info
You can achieve the same using mysql functions. Hope the following query gives you the desired output.
select * from orders where status='Q' AND date_format(from_unixtime(date),'%Y-%m-%d') = current_date;