Oracle查询距离现在最近的一天的所有数据,感觉我写的sql很繁琐,如何简化下
select * from table where 日期字段=(select 日期字段 from (select 日期字段 from table order by 日期字段 desc ) t where rownum=1)
select * from table where 日期字段=(select max(rq) from b)