I need to be able to obtain the information of a mysql table corresponding to a quarter and the 10 days immediately following. Example, data for the first quarter of the year = January + February + March + 10 first days of April.
I'm using the mysql quarter function:
select * from tabla where quarter(fecha)=1
with that I have the data for the quarter, but how do I include the other 10 days?