近似的可以这样
select * from tbname 
where rowid=(select max(rowid) from tbname);

解决方案 »

  1.   

    select * 
    from t
    where rowid =(select max(rowid) from t)
      

  2.   

    select * from table_name minus select * from table_name where rownum<(select count(*) from table_name)
      

  3.   

    select * from tbname
    where coldate=(select max(coldate) from tbname);
      

  4.   

    select * from tbname where coldate=(select max(coldate) from tbname);
    使用了索引,时间最近的一天记录.