將最近7 天的資料從SQL Server 載入到MySQL
將資料從SQL Server 表(表A)傳送到MySQL 時表中,通常需要選擇特定的時間範圍。在這種情況下,使用者需要從表 A 中檢索最近 7 天的資料。
使用者最初嘗試以下查詢:
<code class="sql">select id, NewsHeadline as news_headline, NewsText as news_text, state, CreatedDate as created_on from News WHERE CreatedDate BETWEEN GETDATE()-7 AND GETDATE() order by createddate DESC</code>
但是,此查詢僅擷取 5天的資料。要解決此問題,需要採取稍微不同的方法。
解決方案
解決方案涉及使用DATEADD 函數來計算7 天期間的開始日期:
<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())</code>
從當前日期減去7天,我們確保查詢檢索的是最近7天的數據,準確滿足使用者的要求。
以上是如何從SQL Server檢索最近7天的資料到MySQL?的詳細內容。更多資訊請關注PHP中文網其他相關文章!