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クエリでこれを行う方法はありますか?
accessdatabase1.commonfield to accessdatabase2.commonfield
あなたのコメントから、あなたはこれをしたいと言いましたSQL、
SQL
SELECT a.*, b.* FROM tableA a INNER JOIN tableB b ON a.commonfield = b.commonfield