How to find the number of days between two dates

后端 未结 9 580
独厮守ぢ
独厮守ぢ 2021-01-04 06:43

I have a basic query:

SELECT dtCreated
    , bActive
    , dtLastPaymentAttempt
    , dtLastUpdated
    , dtLastVisit
FROM Customers
WHERE (bActive = \'true\         


        
9条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-04 07:30

    As @Forte L. mentioned you can do the following as well;

    SELECT dtCreated
        , bActive
        , dtLastPaymentAttempt
        , dtLastUpdated
        , dtLastVisit
    
        , DATEDIFF(day, dtCreated, dtLastUpdated) Difference
    
    FROM Customers
    WHERE (bActive = 'true') 
        AND (dtLastUpdated > CONVERT(DATETIME, '2012-01-0100:00:00', 102))
    

提交回复
热议问题