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

2024年11月28日 21:38
有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'