oracle 分組取第一行數據
SELECT * FROM (
SELECT ROW_NUMBER() OVER(PARTITION BY x ORDER BY y DESC) rn,
t.*
FROM test1 t
) WHERE rn = 1;
查找oracle 執行的語句
select t.*
from v$sqlarea t
where t.FIRST_LOAD_TIME like '2018-11-05%'
order by t.FIRST_LOAD_TIME desc