asp怎样获取任意一条记录在整个表内的排名

发布网友 发布时间:2022-04-21 23:44

我来回答

2个回答

热心网友 时间:2022-07-13 07:42

select count(*)+1 from [user] where [count]>(select [count] from [user] where username = 'abc')

同意

避免使用SQL命令做字段名记住了,是会出问题的

热心网友 时间:2022-07-13 07:42

移到abc所在的行,用rs.AbsolutePosition获取行号
select count(*)+1 from [user] where [count]>(select [count] from [user] where username = 'abc')

热心网友 时间:2022-07-13 07:42

rs.open "select count(*) from [user] where [count]>(select [count] from [user] where username like 'abc')"
附带说句:尽量不要用user、count等关键字来命名

热心网友 时间:2022-07-13 07:42

select count(*)+1 from [user] where [count]>(select [count] from [user] where username = 'abc')

同意

避免使用SQL命令做字段名记住了,是会出问题的

热心网友 时间:2022-07-13 07:42

移到abc所在的行,用rs.AbsolutePosition获取行号
select count(*)+1 from [user] where [count]>(select [count] from [user] where username = 'abc')

热心网友 时间:2022-07-13 07:42

rs.open "select count(*) from [user] where [count]>(select [count] from [user] where username like 'abc')"
附带说句:尽量不要用user、count等关键字来命名

热心网友 时间:2022-07-13 07:42

select count(*)+1 from [user] where [count]>(select [count] from [user] where username = 'abc')

同意

避免使用SQL命令做字段名记住了,是会出问题的

热心网友 时间:2022-07-13 07:42

移到abc所在的行,用rs.AbsolutePosition获取行号
select count(*)+1 from [user] where [count]>(select [count] from [user] where username = 'abc')

热心网友 时间:2022-07-13 07:43

rs.open "select count(*) from [user] where [count]>(select [count] from [user] where username like 'abc')"
附带说句:尽量不要用user、count等关键字来命名

热心网友 时间:2023-06-26 21:29

如果是Sqlserver数据库,使用下面的SQL语句
select ROW_NUMBER() OVER (ORDER BY 列名 DESC) as 行号,
列1,列2,列3(这里的列是指你要查询的其他列)
from 表名

第一个“列名”的意思是:你想按哪一列的顺序来排序显示行号

热心网友 时间:2023-06-26 21:29

SQL SERVER 可以使用 SELECT @@identity AS LastID ,不一定要用存储过程。
Access 就麻烦些,
1. 如果使用Jet OLEDB,也可以使用 SELECT @@identity AS LastID 。
2. Select ID from table desc ,可以得到,但是不保险。
3. 在插入数据的时候,插入一个Ramdon值,然后在select 这个值。这种方式是最保险的,但也是最慢的。

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com