sql join from microsoft access table to another table through odbc using pass through query

≡放荡痞女 提交于 2019-12-11 21:07:57

问题


So i have a very large data set on a server that i need to shrink. I have a list of names in a table locally on my computer with ms access. I want to create an inner join from my small local table to this huge server table. I was thinking I would just do a pass through query in ms access and inner join the two tables, but when i do a pass through query MS access can't find my local table (it only recognizes the tables on the server). How can i join the two? Here is my current code:

select field1, field2
from tablea inner join tableb
on tablea.field1=tableb.field2
;

来源:https://stackoverflow.com/questions/23615708/sql-join-from-microsoft-access-table-to-another-table-through-odbc-using-pass-th

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!