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.
エポックと「now()」からの時間が特定の秒数よりも大きい行のみを選択する方法があるのではないかと思います。
php関数から作成されたエポックからの秒数を保持するフィールドを使用して行を格納しますtime()。
time()
だからこのようなもの:
SELECT * FROM table WHERE (now - field_time) > 60 seconds
NOW()SQL DateTimeを返します。必要なのはUNIX_TIMESTAMP()、パラメーターとして日付を指定しない場合、今のところエポック(unixタイムスタンプ)からの秒数を返すものです。
NOW()
UNIX_TIMESTAMP()