Bạn có thể làm điều này bằng cách liệt kê các hàng trong vòng một năm. Sau đó, cập nhật tất cả trừ cái đầu tiên:
with toupdate as (
select t.*, row_number() over (partition by [year] order by [date]) as seqnum
from t
)
update toupdate
set [year] = NULL
where seqnum > 1;
Nếu bạn muốn điều này như một select
tuyên bố:
with ts as (
select t.*, row_number() over (partition by [year] order by [date]) as seqnum
from t
)
select [date],
(case when seqnum = 1 then [year] end) as [year]
from ts;