Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このクエリを休止状態で使用しようとしましたが、間隔に問題があります。
select * from table where timestampfield >= now()-interval 3 month;
INTERVALキーワードはDATE_ADD()orなどの関数内でのみ有効だと思いますDATE_SUB()
INTERVAL
DATE_ADD()
DATE_SUB()
select * from table where timestampfield >= DATE_SUB(now(), interval 3 month);