sql按时间条件查询如何写

2025-04-06 01:51:46
推荐回答(4个)
回答1:

用between有个问题就是最后一天查询不到,也就是他的范围是[2011-1-1, 2011-2-1)也可以直接用>=和<=来查询,比如:select * from table where 时间>='2011-1-1' and 时间<'2011-2-1'或者select * from table where 时间 between '2011-1-1' and '2011-2-1'

回答2:

dim medate as string

medate = rtrim(t_date.text)

本月:

sql = "select * from table where month(inputdate) = month('"+medate+"')"

本年度: 

sql = "select * from table where year(inputdate) = year('"+medate+"')"

本季度:

dim stdt as string

dim eddt as string

sql = "select * from table where inputdate = '"+stdt+"' and '"+eddt+"'"

这样?

回答3:

用between呀

回答4:

用between and