运维网's Archiver
论坛
›
DB2
› db2 取数据 前十条 后十条
boss44
发表于 2016-11-16 06:01:52
db2 取数据 前十条 后十条
db2 数据库 取最老的十条数据
select * from tablename where 1=1 fetch first 10 rows only
取最新的十条数据top(10)
select * from tablename where 1=1 order by id desc fetch first 10 rows only
页:
[1]
查看完整版本:
db2 取数据 前十条 后十条