用于获取过去 3 个月数据的 SQL 查询

SQL query for getting data for last 3 months(用于获取过去 3 个月数据的 SQL 查询)
本文介绍了用于获取过去 3 个月数据的 SQL 查询的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何获取今天的日期并将其转换为01/mm/yyyy 格式并从表中获取3 个月前交货月份的数据?表中已包含交货月份 01/mm/yyyy.

How can you get today's date and convert it to 01/mm /yyyy format and get data from the table with delivery month 3 months ago? Table already contains delivery month as 01/mm/yyyy.

推荐答案

SELECT * 
FROM TABLE_NAME
WHERE Date_Column >= DATEADD(MONTH, -3, GETDATE()) 

Mureinik 建议的方法将返回相同的结果,但通过这种方式,您的查询可以从 Date_Column 上的任何索引中受益.

Mureinik's suggested method will return the same results, but doing it this way your query can benefit from any indexes on Date_Column.

或者您可以检查过去 90 天.

or you can check against last 90 days.

SELECT * 
FROM TABLE_NAME
WHERE Date_Column >= DATEADD(DAY, -90, GETDATE()) 

这篇关于用于获取过去 3 个月数据的 SQL 查询的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)