select top语句的例子,oracle select top语句,sql select top语句,以及mysql等数据库中select top语句的实现与用法。
说明:
1、在sql数据库,与foxpro数据库中,直接使用select top语句。
2、oracle中使用where 子句实现select top功能。
3、infomix数据库中使用select first n语句,实现select top。
4、mysql/ target=_blank class=infotextkey>mysql数据库中使得limit语句,实现select top功能。
5、其它数据库中select top实现方法。
1,oracle数据库
select * from table1 where rownum<=n
2,infomix数据库
select first n * from table1
3,db2数据库
select * row_number() over(order by col1 desc) as rownum where rownum<=n
或者
select column from table fetch first n rows only
4,sql server数据库
select top n * from table1
5,sybase数据库
set rowcount n
go
select * from table1
6,mysql数据库
select * from table1 limit n
7,foxpro数据库
select * top n from table order by column