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.
我对 VBA Access 脚本中的 SQL 脚本不熟悉。你能告诉我如何删除除一列之外的所有列中的数据吗?谢谢你。
当您说删除时,如果您的意思是用 Null 替换列值,您可以通过UPDATE查询来做到这一点。
UPDATE
UPDATE YourTable SET ColumnA = Null, ColumnB = Null
对要删除其数据的所有列执行此操作。
如果这不是您的想法,请向我们提供更详细的信息,以帮助我们了解您想要什么。