私はテーブルを持っています:
create table marks(stdName nvarchar(30), marks float)
insert into marks
select 'std1', 98
union all select 'std2', 96
union all select 'std3', 95
union all select 'std4', 97
union all select 'std5', 93
指定された入力パラメーターとしてn 番目に高いマークを持つ行を選択するストアド プロシージャを作成したいと考えています。 .