-1

我正在使用 access 2007,我在一个表中有近 40 列,我想将除一列之外的所有数据重置为空。我正在寻找这样的正确查询

Delete table.* from table except one column

任何人都知道如何做到这一点?

4

1 回答 1

1

您可以使用更新。

UPDATE table
SET
  col1 = null,
  col2 = null,
  col4 = null,
  ....
WHERE 1=1

这将使 col3 中的所有数据保持不变。

于 2013-01-19T05:42:48.047 回答