六狼论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

新浪微博账号登陆

只需一步,快速开始

搜索
查看: 65|回复: 0

各种数据库取前10行记录

[复制链接]

升级  8%

14

主题

14

主题

14

主题

秀才

Rank: 2

积分
62
 楼主| 发表于 2013-1-13 18:53:33 | 显示全部楼层 |阅读模式
access:
select top (10) * from table1 where 1=1

db2:
select column from table where 1=1 fetch first 10 rows only
取第3行到第5行的记录
select * from (select row_number() over() as row from table) as temp where row>=3 and row<=5

mysql:
select * from table1 where 1=1 limit 10

sql server:
前10条:select top (10) * from table1 where 1=1
后10条 select top (10) * from table1 order by id desc
在sqlserver,如何读取按照某个排序,第5到10行这个记录
select top 6 * from table where id not in(select top 4 id from table)

oracle:
select * from table1 where rownum<=10
取中间记录:60~100
select * from (select rownum r,a.* from table a where rownum <= 100) where r >= 60;
您需要登录后才可以回帖 登录 | 立即注册 新浪微博账号登陆

本版积分规则

快速回复 返回顶部 返回列表