在sybase数据库中查询一个表中的第10行的ID值,怎么写查询语句啊!
------解决方案--------------------------------------------------------
or
select * from (
select *,ROW_NUMBER() over(order by id) as ss from ttd) where ss=10
------解决方案--------------------------------------------------------
select * from (
select *,ROW_NUMBER() over(order by id) as ss from ttd) aa where ss=10