BETWEEN运算符可以简化范围表达式,并且不需要处理日期范围。
这个比较简单,懒得解释了,直接看code会比较清晰。
首先看一个sql 文:
select IdName,IoginDate
from Users
where BirthDate >= '1999-11-11'
and BirthDate <= '2010-10-10'
BETWEEN的写法:
select IdName,IoginDate
from Users
where BirthDate between '1999-11-11' and '2010-10-10'