Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个表,其中包含以下列 Job、Group、Desc、NGNT、2010、2011 我在表中添加了 Current Wages 列,我需要此列中的数据等于 2011 列数据,我知道我必须使用 UPDATE 查询,但我无法弄清楚语法
这应该这样做
update Table set [Current Wages] = [2011]
您当然可以改用计算列或将 2011 列别名为 Current Wages 的视图
这应该这样做:
UPDATE table SET [Current Wages] = [2011]
更新表集 [当前工资]= [2011]