在 SQL Server 中检索最近 7 天的数据
将数据从 SQL Server 表加载到 MySQL 表时,您可能会遇到需要根据时间范围过滤数据。要检索过去 7 天的数据,您可以利用 SQL Server 日期操作函数的强大功能。
查询:
<code class="sql">SELECT id, NewsHeadline as news_headline, NewsText as news_text, state, CreatedDate as created_on FROM News WHERE CreatedDate >= DATEADD(day,-7, GETDATE()) order by createddate DESC</code>
说明:
注意:
以上是如何在SQL Server中检索最近7天的数据?的详细内容。更多信息请关注PHP中文网其他相关文章!