select id, other_id, date_value, value from
(
SELECT id, other_id, date_value, value,
ROW_NUMBER() OVER (partition by other_id order BY Date_Value desc) r
FROM some_table
WHERE other_id IN (1, 2, 3)
)
where r = 1
select id, other_id, date_value, value from
(
SELECT id, other_id, date_value, value,
ROW_NUMBER() OVER (partition by other_id order BY Date_Value desc) r
FROM some_table
WHERE other_id IN (1, 2, 3)
)
where r = 1
Bagaimana cara memanggil fungsi hash Oracle MD5?
Cara terbaik untuk mengatur ulang urutan Oracle ke nilai berikutnya di kolom yang ada?
Apa perbedaan antara Baca yang Tidak Dapat Diulang dan Baca Phantom?
Keluaran skrip Pengembang SQL memotong lebar sys_refcursor
Penggabungan String Agregat di Oracle 10g