数据库中 查询某时间段字段内 符合查询条件 时间段 的信息

2024-11-28 21:38:27
推荐回答(2个)
回答1:

  1. select * from Table where createdate between @StartDate and @EndDate

  2. 条件自己定义。根据需要。

回答2:

select * from tb where s_time>='2013-04-06' and e_time<'2013-04-11'