mysql提供了非常有用的函數DATE_ADD 。DATE_ADD() 函數向日期添加指定的時間間隔。
語法:
DATE_ADD(date,INTERVAL expr type) date 參數是合法的日期表達式。expr 參數是您希望添加的時間間隔

例如:
從訂單表中查詢出六個月內下單的客戶(正常客戶),那么其他客戶則是六個月未下單的客戶。(流失客戶為1)
select cusId from t_customer_order where DATE_ADD(orderDate,INTERVAL 6 MONTH)>NOW() 六個月內下單的客戶
六個月內未下單的用戶
select * from t_customer t1 where t1.id not in (select cusId from t_customer_order where DATE_ADD(orderDate,INTERVAL 6 MONTH)>NOW()) and state=0
