例如查询 record_time字段(date类型)在 2022年2月20日 到 2022年2月28日 的数据
select * from t_HouseSale where HouseSale_id = 43448 and record_time
select * from t_HouseSale
where record_time>= to_date('2021/12/26 10:01:59','yyyy-MM-dd hh:mi:ss')
and record_time <= to_date('2021/12/26 10:01:59','yyyy-MM-dd hh:mi:ss')