1

SQLを使用してExcel のモード関数を複製するにはどうすればよいですか?

Excel で一連の数値に対してモード関数を実行すると、複数のモード値があっても 1 つのモード値が返されます。同じように機能するには、いくつかのSQLが必要です。

この一連の数値に対して、Excel はモード 8 を返します。これはおそらく、8 が最初に表示されるモーダル数値であるためです。

6
7
8
3
3
8
0
2
2

モードの例がない場合は、すべての数値が一意であり、NA を返す必要があります。

これは私がこれまでに持っているコードです。

SQLを使用してExcel のモード関数を複製するにはどうすればよいですか? Excel で一連の数値に対してモード関数を実行すると、複数のモード値があっても 1 つのモード値が返されます。同じように機能するには、いくつかのSQLが必要です。

これは私がこれまでに持っているものです。occurences=1モードなしでシリーズを処理する行を削除します。

 --I wanted to use CTE for Mode, but it won't work as part of a union query
select RIC,Period,InputFile,Occurrences,amount into #Mode1 from
(SELECT aa.RIC,aa.Period,aa.inputfile,aa.amount,COUNT(*) AS occurrences
FROM tempPivotTable aa
--where aa.ric='USTRDAP' and aa.period='2006' and aa.inputfile='C:\FalconIngest\Input\US April 2006.xls'
GROUP BY aa.RIC,aa.Period,aa.inputfile,aa.amount) as A

Select RIC,vendor,Period,Filedate,inputfile,YearlyOrQuarterly,sortablePeriod,NumericFiledate,MaxAmount into #Mode2 from
(
select t.Ric,'O' as vendor,t.Period,Filedate,t.inputfile,YearlyOrQuarterly,sortablePeriod,NumericFiledate,max(occurrences) as MaxAmount
from TempPivotTable t
inner join #Mode1 A
on t.ric=a.ric and t.period=a.period and t.inputfile=a.inputfile
group by t.Ric,t.Period,Filedate,t.inputfile,YearlyOrQuarterly,sortablePeriod,NumericFiledate
)as A

Select RIC,vendor,Period,Filedate,inputfile,YearlyOrQuarterly,sortablePeriod,NumericFiledate,Amount,occurrences into #Mode3 from
(
select a.RIC, 'O' as vendor,a.period,Filedate,a.inputfile,YearlyOrQuarterly,sortablePeriod,NumericFiledate,Amount,occurrences
from #Mode1 A
inner join #Mode2 M
on A.ric=M.ric and A.period=M.period and A.inputfile=M.Inputfile
where occurrences=maxamount 
) as A

--deal with cases where there is no mode
select ric,vendor,period,Filedate,inputfile,YearlyOrQuarterly,sortablePeriod,NumericFiledate,Amount
into #mode4 
from(
select   ric,'O' as vendor,period,Filedate,inputfile,YearlyOrQuarterly,sortablePeriod,NumericFiledate,0 as Amount from #mode3
where occurrences=1 
group by ric,period,Filedate,inputfile,YearlyOrQuarterly,sortablePeriod,NumericFiledate
having count(*)>1
) as A
delete from #mode3 where occurrences=1 

select a.RIC, 'O' as vendor,a.period,Filedate,a.inputfile,YearlyOrQuarterly,sortablePeriod,NumericFiledate,Amount
from #Mode1 A
inner join #Mode2 M
on A.ric=M.ric and A.period=M.period and A.inputfile=M.Inputfile
where occurrences=maxamount and maxamount>1
union select * from #mode4  --Put series with no mode as NA

drop table #mode1
drop table #mode2
drop table #mode3
drop table #mode4

その後、この単純化されたコードを思いつきました。

select Code,inputfile,period,Amount,count(*) as Amountcount,
Ranking=dense_Rank() over (partition by Code,period,inputfile order by count(*) desc)
from TempPivotTable
group by Code,inputfile,period,Amountmore of those amount is the modal amount.  

モード値が 1 つあれば OK です。以下の例では、3 と 8 がモード値です。複数のモード値がある場合は、ベンダーのアルファベット順リストで最初に表示される 8 を選択する必要があります。

ベンダー 金額 A 6 B 7 C 8 D 3 E 3 F 8 G 0 H 2 I 2

4

1 に答える 1

0

以下のステートメントは、単一の場合はモード値を返し、設定がマルチモーダルの場合は最初の (アルファベット順で) Vendor のモード値を返し、すべての値が一意である (モードが存在しない) 場合は NULL を返します。

;with m as (
    select *,
        aCnt = count(1) over (partition by amount),
        tCnt = count(1) over ()
    from TableName
)
select top (1)
    case
        when acnt = 1 and tCnt > 1 then NULL
        else amount
    end as mode
from m
order by acnt desc, vendor;

SQLFiddle サンプル

タプル内でモードを見つけるには、(inputfile, code, period)次を試してください。

;with r1 as (
    select inputfile, code, period, vendor, amount,
        acnt = count(1) over (partition by inputfile, code, period, amount),
        tcnt = count(1) over (partition by inputfile, code, period)
    from TableName
),
r2 as (
    select inputfile, code, period, amount, acnt, tcnt,
        rn = row_number() over (partition by inputfile, code, period order by acnt desc, vendor)
    from r1
)
select inputfile, code, period,
    mode = case when acnt = 1 and tcnt > 1 then NULL else amount end
from r2
where rn = 1

SQLFiddle サンプル

于 2013-08-08T18:28:27.670 に答える