sql >> データベース >  >> RDS >> Oracle

オラクルの2つの間隔の間で平均を広げる方法

    編集:最後の欠落した行を含めるためにユニオンを追加しました

    このようなものがうまくいくかもしれません。入力データがテーブルaにあると仮定すると、

    with b as
    (select level-1 lev
    from dual
    connect by level <= 60
    ),
    v as
    (
    select start_date, value current_value, lead(value) over (order by start_date) next_value
    from a
    )
    select start_date+ (lev)/(24*60), (current_value*((60-(b.lev))/60) + next_value*(b.lev)/60) avg_value
    from v, b
    where v.next_value is not null
    union
    select start_date, current_value
    from v
    where v.next_value is null
    order by 1
    


    1. SQL Serverの正規化戦術:varcharとint Identity

    2. Python:インデックス350でサポートされていないフォーマット文字'''(0x27)

    3. Django-(OperationalError)致命的:ユーザーユーザー名のID認証に失敗しました

    4. MySql:列を表示しますが、フィールド名を除くすべてを除外します