Oracle 查询当前系统时间十分钟之前的记录,时间比较SQL

select *
  from t_register r
 where r.reg_date <= to_date(trunc(sysdate, 'mi') - 10 / (24 * 60));