急需解决
以SQL Server和Oracle为例。
Oracle:
语法:
select * from 表名 where rownum<=1;
SQL Server:
select top 1 * from 表名;