在SQL中,如何查询结果中某条记录的序列 10

现在又数据库中数据如下idnamecount...4A18...5B19...6A19...7A20...现在我要得到name=Acount=19在此时的序列‘2’idn... 现在又数据库中数据如下
id name count ...
4 A 18 ...
5 B 19 ...
6 A 19 ...
7 A 20 ...

现在我要得到 name = A count = 19 在此时的序列 ‘2’
id name count ...
1 A 18 ...
2 A 19 ...
3 A 20 ...

请问SQL怎么写啊?!大侠指教一下
展开
 我来答
roy_88
2009-06-22 · TA获得超过3696个赞
知道大有可为答主
回答量:2914
采纳率:100%
帮助的人:2734万
展开全部
use Tempdb
go
--> -->

declare @T table([id] int,[name] nvarchar(1),[count] int)
Insert @T
select 4,N'A',18 union all
select 5,N'B',19 union all
select 6,N'A',19 union all
select 7,N'A',20
--SQL2000
Select
[ID]=(select count(distinct [count]) from @T where [id]<=t.[id]),
[name],[count]
from @T t
where not exists(select 1 from @t where [count]=t.[count] and [id]>t.[id])

--SQL2005
select
ID=row_number()over(order by ID),
[name],[count]
from @T t
where not exists(select 1 from @t where [count]=t.[count] and [id]>t.[id])

(4 个资料列受到影响)
ID name count
----------- ---- -----------
1 A 18
2 A 19
3 A 20

(3 个资料列受到影响)

ID name count
-------------------- ---- -----------
1 A 18
2 A 19
3 A 20

(3 个资料列受到影响)
光点科技
2023-08-15 广告
通常情况下,我们会按照结构模型把系统产生的数据分为三种类型:结构化数据、半结构化数据和非结构化数据。结构化数据,即行数据,是存储在数据库里,可以用二维表结构来逻辑表达实现的数据。最常见的就是数字数据和文本数据,它们可以某种标准格式存在于文件... 点击进入详情页
本回答由光点科技提供
lzp4881
2009-06-22 · TA获得超过2394个赞
知道大有可为答主
回答量:2825
采纳率:0%
帮助的人:3009万
展开全部
select id from table where name = 'A' and count = 19
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友866da84
2009-06-22 · TA获得超过368个赞
知道小有建树答主
回答量:339
采纳率:0%
帮助的人:0
展开全部
declare @t table(id int identity(1,1),
name char(1),
count int)
insert into @t(name,count)
select name,count
from 表
order by count
select id from @t where name = 'A' and count = '19'
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式