Oracle
 sql >> Teknologi Basis Data >  >> RDS >> Oracle

Bagaimana cara menyebarkan rata-rata antara dua interval di oracle

EDIT:Menambahkan serikat pekerja untuk memasukkan baris terakhir yang hilang

Beberapa hal seperti ini mungkin berhasil. Dengan asumsi data input ada di tabel 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. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Oracle APEX - Ekspor kueri ke CSV menggunakan tombol

  2. Jalankan Segera dengan tipe Non-Sql

  3. SUBSTR dan INSTR SQL Oracle

  4. cara Flashback ketika kita memiliki dataguard

  5. Kriteria hibernasi untuk mendapatkan catatan yang memiliki tahun 2012