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