首页 > 代码库 > sql查询某段时间内的数据
sql查询某段时间内的数据
查询半小时内数据的方法
1、select
*
from
表名
where
datediff(
minute
,createtime,getdate())<30
查询当天数据的方法
1、select
*
from
表名
where
datediff(
day
,createtime,getdate())=0
2、select
*
from
表名
where
convert(varchar(8),createtime,112)=convert(varchar(8),GETDATE(),112) 推荐此种,效率较高
3、select * from 表名 where CAST(CreateDate as date)=CAST(GETDATE() as date)
3、string.Format("select
*
from
表名
where
CreateDate>=‘{1} 0:00:00‘ AND CreateDate<=‘{1} 23:59:59‘",DateTime.Now.ToString("yyyy-MM-dd"))
查询当天生日的方法(每年当天都需要)
1、select
*
from
表名
where
MONTH(Birthday)=MONTH(GETDATE()) and DAY(Birthday)=DAY(GETDATE())
sql查询某段时间内的数据
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。