過去 3 か月のチケットを選択したいと考えています。過去 3 か月を計算します。この投稿を見ました: https://stackoverflow.com/questions/7268896/calculate-3-month-period-using-mysql
しかし、うまくいかないようです。これが私のクエリです
select `created`, datediff( now(), `created`) as period , now()
from tag
having period%90=0;
しかし、これは次のような日付を返します
created period now()
2009-10-25 12:42:15 1170 2013-01-07 10:15:37
何か案は?ありがとう