我需要将列的数据移动到同一个表中的另一列。

时间:2016-09-21 08:49:40

标签: sql

我需要将列的数据移到同一个表中的另一列。

有谁能告诉我怎么写这个?

2 个答案:

答案 0 :(得分:0)

语法可能因SQL风格

而异
update table
set NewColumn = OldColumn;

update table
set OldColumn = null;

答案 1 :(得分:0)

UPDATE table SET NewColumn = OldColumn;

UPDATE table SET OldColumn = null;