上榜生.rar
(11.3 KB, 下载次数: 43)
- select
- 编号,
- 姓名,
- 总分,
- (select
- count(1)
- from
- (
- select
- top 15 percent 编号,姓名,语文,数学,总分
- from
- (
- select 编号,姓名,语文,数学,总分 from [14$] union all
- select 编号,姓名,语文,数学,总分 from [15$] union all
- select 编号,姓名,语文,数学,总分 from [16$] union all
- select 编号,姓名,语文,数学,总分 from [17$]
- )
- order by
- 总分 desc
- )
- where
- 总分>=a.总分
- ) as 排名
- from
- (
- select
- top 15 percent 编号,姓名,语文,数学,总分
- from
- (
- select 编号,姓名,语文,数学,总分 from [14$] union all
- select 编号,姓名,语文,数学,总分 from [15$] union all
- select 编号,姓名,语文,数学,总分 from [16$] union all
- select 编号,姓名,语文,数学,总分 from [17$]
- )
- order by
- 总分 desc
- )a
复制代码 |