I have come across the following queries, but not sure if there is any difference between them,
select * from table where date between fromdate and todate
V/S
select * from table where date >= fromdate and date <= todate
if we are using the first query, does it include the date on the from & to date? i.e. between 16/10/2012 and 22/10/2012, does it include 16th and 22th ?
Thank you so much.