How do I “chain” linked tables in Access?

前端 未结 3 1322
滥情空心
滥情空心 2021-01-05 10:28

My scenario: Computer A has an Access database that contains linked tables. Those linked tables actually reside in another Access database on Computer B. Nothing unusual y

3条回答
  •  逝去的感伤
    2021-01-05 10:43

    In regard to the query suggestion, it's possible to use an IN 'C:\OtherDatabase.mdb' clause in a FROM clause:

    SELECT qryMyTable.*
    FROM qryMyTable IN 'c:\OtherDatabase.mdb';
    

    This will display for you in the database where the query is stored the contents of the query in the other database. If that path to the other database doesn't change, you could use this method to piggyback on that other database's linked tables.

自定义标题
段落格式
字体
字号
代码语言
提交回复
热议问题