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 中有一个表格,我试图将所有日期更新到比表格显示的日期早一个月。如果表格显示 2012/11,它应该更新为 2012/10 等。我假设最好的方法是在 VBA 中?有什么建议么?
Update TABLE Set [dateColumn] = DateAdd("m", -1, [dateColumn])