注册 登录
编程论坛 ASP技术论坛

求一SQL语名,用的是SQL数据库,怎样取出倒序排列top10的第二条记录

mlly1983 发布于 2008-03-04 13:02, 1984 次点击
或者在ASP中有什么办法实现
1 回复
#2
madpbpl2008-03-04 19:15
这个和top10有什么关系?和是不是asp有关系吗?
select top 2 * from [table] where condition order by 字段 desc
rs.movenext   '跳过第一条
。。。。
1