sql查询使用BETWEEN…AND()

sql查询使用BETWEEN…AND()。这些值可以是数值、文本或者日期,除了日期特殊外,在sqlserver中都是左右包含!

例:

select*from 表名 where 字段 between 1 and 10 相当于>=1 <=10

如果日期是长型 (2016-04-01 18:12:49.923)

用select*from 表名 where 日期列 between ‘2017-5-16’ and ‘2017-5-17 ‘ 则只查出 16号(左包含,右不包含),因为数据库默认2017-5-17 00:00:00

想用左右包含可使用

select*from 表名 where convert(varchar,日期列,102) between ‘2017.05.16’ and ‘2017.05.17’ (左右包含)

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐