用rownum就可以实现的
select * from table where rownum=1 ;
空芹rownum是一个序列,是oracle数据库从数据文件或缓皮盯冲区中读取数据的顺序。它取得第燃亏和一条记录则rownum值为1,第二条为2,依次类推。
如果记录数有通过排序或其他处理,可以在外层嵌套一层再配合rownum取第一行数据
select * from table where rownum=1 ;
select * from table where rownum=1
SELECT * from a WHERE ROWID = (SELECT MIN(ROWID) from a);