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.
特定の期間の間にあるテーブルからレコードを選択したいと思います。たとえば、tbl_nameからrecord_nameを選択します。ここで、日付(現在から10分前まで)?この大まかな質問が私の質問を説明することを願っています
これを試して、使用DATE_ADD
DATE_ADD
select record_name from tbl_name where `date` BETWEEN DATE_ADD(NOW(),INTERVAL -10 MINUTE) AND NOW()