在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怎么写啊?!大侠指教一下 展开
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怎么写啊?!大侠指教一下 展开
3个回答
展开全部
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 个资料列受到影响)
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 广告
2023-08-15 广告
通常情况下,我们会按照结构模型把系统产生的数据分为三种类型:结构化数据、半结构化数据和非结构化数据。结构化数据,即行数据,是存储在数据库里,可以用二维表结构来逻辑表达实现的数据。最常见的就是数字数据和文本数据,它们可以某种标准格式存在于文件...
点击进入详情页
本回答由光点科技提供
展开全部
select id from table where name = 'A' and count = 19
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
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'
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'
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询