How to get last 7 days data from current datetime to last 7 days in sql server

前端 未结 9 667
我在风中等你
我在风中等你 2020-11-30 04:57

Hi I am loading table A data from sql server to mysql using pentaho when loading data i need to get only last 7 days data from sql server A table to mysql In sql server crea

9条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-30 05:03

    DATEADD and GETDATE functions might not work in MySQL database. so if you are working with MySQL database, then the following command may help you.

    select id, NewsHeadline as news_headline,    
    NewsText as news_text,    
    state, CreatedDate as created_on    
    from News    
    WHERE CreatedDate>= DATE_ADD(CURDATE(), INTERVAL -3 DAY);
    

    I hope it will help you

提交回复
热议问题