select * from zx_file
-- where create_time < now()- interval '2 d'
where to_date(begin_time,'yyyy-mm-dd hh24:mi:ss') < to_date('2021-10-20 00:00:00', 'yyyy-mm-dd hh24:mi:ss')

上边sql中,取指定日期之前的记录,create_time类型是timestamp,可以直接比较,begin_time是varchar,需要转换后再比较