I am trying to query MySql as follows:
SELECT * FROM 'tabela' WHERE 'data' >= '2017-03-01' AND 'data' <='2017-03-05')
The issue is that even though I have multiple records from 2017-03-05, the query only returns me records until 2017-03-04. I need to get the records back from 2017-03-05, without having to use a date above.
Does anyone have a solution to help me?