这是我需要在SQL Server中转换的内容:
Existing YEAR col New YEAR Col
--------------------------------------
8 2008
9 2009
10 2010
11 2011
12 2012
答案 0 :(得分:2)
如果要进行更新:
update YOUR_TABLE
set new_year = 2000 + existing_year
如果要选择值:
select 2000 + existing_year
from YOUR_TABLE
答案 1 :(得分:0)
在“现有年份”列中的每个条目中添加2000。