Acara Tabel Drop SQL

SELECT
    TABLE_NAME
FROM
    information_schema.TABLES
WHERE 
    UPDATE_TIME < (NOW()-INTERVAL 1 WEEK)
Nofi Setiawan