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.
我正在尝试在名为“sheet1”的表中删除一个名为“成本中心”的列。我编写了以下语句,适用于只有一个单词的列:
CurrentDb.Execute "Alter Table Sheet1 Drop Column Cost centre;"
但是,对于这个,它只尝试删除一个名为“成本”的列,该列不存在。我曾尝试使用“成本中心”;等,但没有运气。
我确信有一个简单的解决方案,但是我一直找不到它。
您必须将列名放在括号中,例如[Cost centre].
[Cost centre]