次のクエリに出くわしましたが、それらに違いがあるかどうかはわかりません。
select * from table where date between fromdate and todate
V/S
select * from table where date >= fromdate and date <= todate
最初のクエリを使用している場合、開始日と終了日の日付が含まれていますか? つまり、2012 年 10 月 16 日から 2012 年 10 月 22 日の間に、16 日と 22 日が含まれますか?
どうもありがとう。