私はオラクルに問題があり、制限付きの単純な選択を作成するだけですが、オラクルはこの機能を持っていないので、そのようなものを書きました
:
select b.strdir,b.num, b.value, b.time
from mytable b
where b.dev_id = 223
and b.cur_id = 23
and b.time=(
select xx.time from mytable xx
where xx.dev_id = b.dev_id and xx.cur_id = b.cur_id and xx.nom = b.nom
and rownum=1
order by xx.time DESC
)
order by b.strdir nulls first;
しかし、それは機能していませんplz help :/