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.
我正在使用带有多个表的大型 MS Access 数据库。我想知道如何从数据库中的所有表中搜索列?
UNION 查询将是一种方法。
SELECT FieldA from Table 1 UNION Select FieldA from Table 2 UNION Select FieldA from Table 3
将上述内容另存为查询,然后您可以编写另一个查询,其中包含您喜欢的任何条件的第一个查询。
我知道这看起来很乏味,但这就是将数据分散得如此之多而不是将其拉入单个表的问题。如果您可以提供有关您正在尝试做什么的详细信息,也许我们可以给出更具体的答案。