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.
我正在使用 access 2007,我在一个表中有近 40 列,我想将除一列之外的所有数据重置为空。我正在寻找这样的正确查询
Delete table.* from table except one column
任何人都知道如何做到这一点?
您可以使用更新。
UPDATE table SET col1 = null, col2 = null, col4 = null, .... WHERE 1=1
这将使 col3 中的所有数据保持不变。