SQL 查询今天、昨天、7天内、30天的数据

 主要用到sql 函数 

DATEDIFF(datepart,startdate,enddate)
startdate=日期字段名称

--查询 今日
select * from tableA where DateDiff(dd,datetime类型字段,getdate())= 0

--查询 昨日
select * from tableA where DateDiff(dd,times,getdate())= 1

--查询 本周
select * from tableA where DateDiff(dd,VoucherDate,getdate())<=7

--查询 上周
select * from tableA where DateDiff(dd,VoucherDate,getdate())>7 and DateDiff(dd,VoucherDate,getdate())<=14

--查询 本月
select * from tableA where DateDiff(mm,VoucherDate,getdate())= 0

--查询 上月
select * from tableA where DateDiff(mm,VoucherDate,getdate())= 1

--查询 本年
select * from tableA where DateDiff(yy,VoucherDate,getdate())= 0

--查询 上一年
select * from tableA where DateDiff(yy,VoucherDate,getdate())= 1

 

原文地址:https://www.cnblogs.com/webapi/p/12706349.html

posted @   *涛*  阅读(384)  评论(0编辑  收藏  举报
编辑推荐:
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
阅读排行:
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· Manus的开源复刻OpenManus初探
· AI 智能体引爆开源社区「GitHub 热点速览」
· 三行代码完成国际化适配,妙~啊~
· .NET Core 中如何实现缓存的预热?
点击右上角即可分享
微信分享提示