SELECT * FROM tbl WHERE datetime < NOW() - INTERVAL 1 WEEK
Se la tua tabella memorizza datetime in un fuso orario diverso da quello NOW()
restituisce, puoi usare UTC_TIMESTAMP()
invece per ottenere il timestamp in UTC.
SELECT * FROM tbl WHERE datetime < NOW() - INTERVAL 1 WEEK
Se la tua tabella memorizza datetime in un fuso orario diverso da quello NOW()
restituisce, puoi usare UTC_TIMESTAMP()
invece per ottenere il timestamp in UTC.