sql >> Base de Datos >  >> RDS >> Mysql

MySQL:elimine filas que contengan un parámetro específico y tengan más de un día

Sería algo como:

delete t from loginsystem t
    where premium = '1 DAY' and created_at < now() - interval 1 day;