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.
我在工作簿中有一个查询,其中 SQL 语句是:
SELECT field1, field2, field3 FROM table
现在,我想更新查询以使用我的工作簿中的条件过滤数据,如下所示:
SELECT field1, field2 FROM table WHERE field3 = Sheet1!A1 -- Invalid statement!
如何在 MS Query(没有 VBA)中实现这一点?