sql中如何只取得第一行

如题所述

第1个回答  2016-11-22
oracle 的话
select * from tablename where rownum=1本回答被网友采纳
第2个回答  2016-11-22
select top 1 * from tablename
相似回答