SQL语句如何查找出第几行的数据?
sql语句如何查出表中第几行的数据如查找出第82503行的谢谢晕,我要第几行。ID不准,前面有删除了很多数据keystudio兄弟,提示语法错误哦~!~~...
sql语句如何查出表中第几行的数据
如查找出第82503行的
谢谢
晕,我要第几行。
ID不准,前面有删除了很多数据
keystudio兄弟,提示语法错误哦~!~~ 展开
如查找出第82503行的
谢谢
晕,我要第几行。
ID不准,前面有删除了很多数据
keystudio兄弟,提示语法错误哦~!~~ 展开
展开全部
select
IDENTITY(1,1)
as
xuhao,[id]
nto
#tablename
from
表名
select
*
from
#tablename
where
xuhao=82503
drop
table
#tablename
IDENTITY(1,1)
as
xuhao,[id]
nto
#tablename
from
表名
select
*
from
#tablename
where
xuhao=82503
drop
table
#tablename
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select top 1 * from (select top 82503 * from table1 order by id) a order by id desc
笔误
笔误
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select IDENTITY(1,1) as xuhao,[id] nto #tablename from 表名
select * from #tablename where xuhao=82503
drop table #tablename
select * from #tablename where xuhao=82503
drop table #tablename
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select top 1 * from (select top 82503 * from 表名 order by id) a order by id desc
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询