次の2つのクエリの間にはどのような違いがありますか?どちらのリターン異なる行:2つの分析クエリの相違点
with ordered_table as
(
select * from table order by column1
)
select first_value(column2 ignore nulls) over (partition by column3)
from ordered_table;
と
select first_value(column2 ignore nulls) over (partition by column3 order by column1)
from table;
注:私は、テストケースを提供しようとするでしょうが、私は誰かが明確なコンセプトを持つために必要とされていないと思います。