table: 4 columns
col1: userID, col2: YearRef, col3: PastYearData, col4: CurrentYearData
example:
col1 col2 col3 col4
1 2003 xyz abc
2 2203 qrs zzz
1 2004 abc 123
2 2204 zzz 456
Each year I need to keep track of current data (CY) and past data (PY). Looking for a simple way in SQL to copy old CY to new row's PY. Tried working with UPDATE - SET but I am not sure how to reference the table to itself. Any other sugestions?