SQL Updating ID with Row Number

with toupdate as (
      select t.*, row_number() over (partition by Employee_ID order by DOH) as seqnum
      from Employee_Immunizations t
     )
update toupdate
     set ID = seqnum;