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 financials
如何将查询限制在过去 30 天内的日期?就像是:
SELECT * FROM financials WHERE date BETWEEN now - 30 days AND now
SELECT * FROM financials WHERE date >= NOW() - INTERVAL 30 DAY