摘要: 问题描述 如何查询最近7天内数据? 解决 select * from xxx where datediff(d, d_createdate, getdate()) < 7 核心为 datediff 函数,获取两个日期之间的时间。 datediff(datepart,startdate,enddate 阅读全文
posted @ 2021-08-25 21:22 strongmore 阅读(1293) 评论(0) 推荐(0) 编辑