mysql 获取一年前的数据

select id,entry_date from t_admin where
str_to_date(entry_date,'%Y-%m-%d') < DATE_SUB(now(), INTERVAL 1 YEAR)

你可能感兴趣的:(mysql)