Mysql
 sql >> Database >  >> RDS >> Mysql

MySQL:elimina le righe che contengono un parametro specifico e sono più vecchie di un giorno

Sarebbe qualcosa del tipo:

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