I am queering a data in a date range in MySQL. When I select the date range
BETWEEN '2013-01-19 00:00:00' AND '2013-01-21 00:00:00' the data is shown only 19 and 20 date but not the 21.
When I write 22 over 21 then data shown from 19-21 not include 22. Now how should I write a query to include the selected date also in date range.
Eg: BETWEEN '2013-01-19 00:00:00' AND '2013-01-21 00:00:00'
Show the data from 19,20,21 Jan 2013.
Please help me
