How can I Use Access to combine tables of information
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I have two tables in access with a common ID number in both. One table has mail to info and the other table has account information. The account information can have multiple listings per ID. The mail to info has one listing per ID. I need to combine the two tables to create a new table with 1 row per ID but containing multiple columns with the added account information. How do I do that?
ms-access-2010
bumped to the homepage by Community♦ 16 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I have two tables in access with a common ID number in both. One table has mail to info and the other table has account information. The account information can have multiple listings per ID. The mail to info has one listing per ID. I need to combine the two tables to create a new table with 1 row per ID but containing multiple columns with the added account information. How do I do that?
ms-access-2010
bumped to the homepage by Community♦ 16 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Why you want to combine both the table in one table?
– vijayp
Nov 4 '14 at 4:15
Because I need all the information to merge into a letter that is being sent to the business on the mail info table.
– Summer Gould
Nov 4 '14 at 15:38
You can write sql query using join too get the desired result
– vijayp
Nov 5 '14 at 6:39
add a comment |
I have two tables in access with a common ID number in both. One table has mail to info and the other table has account information. The account information can have multiple listings per ID. The mail to info has one listing per ID. I need to combine the two tables to create a new table with 1 row per ID but containing multiple columns with the added account information. How do I do that?
ms-access-2010
I have two tables in access with a common ID number in both. One table has mail to info and the other table has account information. The account information can have multiple listings per ID. The mail to info has one listing per ID. I need to combine the two tables to create a new table with 1 row per ID but containing multiple columns with the added account information. How do I do that?
ms-access-2010
ms-access-2010
asked Nov 3 '14 at 23:50
Summer GouldSummer Gould
1
1
bumped to the homepage by Community♦ 16 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 16 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Why you want to combine both the table in one table?
– vijayp
Nov 4 '14 at 4:15
Because I need all the information to merge into a letter that is being sent to the business on the mail info table.
– Summer Gould
Nov 4 '14 at 15:38
You can write sql query using join too get the desired result
– vijayp
Nov 5 '14 at 6:39
add a comment |
Why you want to combine both the table in one table?
– vijayp
Nov 4 '14 at 4:15
Because I need all the information to merge into a letter that is being sent to the business on the mail info table.
– Summer Gould
Nov 4 '14 at 15:38
You can write sql query using join too get the desired result
– vijayp
Nov 5 '14 at 6:39
Why you want to combine both the table in one table?
– vijayp
Nov 4 '14 at 4:15
Why you want to combine both the table in one table?
– vijayp
Nov 4 '14 at 4:15
Because I need all the information to merge into a letter that is being sent to the business on the mail info table.
– Summer Gould
Nov 4 '14 at 15:38
Because I need all the information to merge into a letter that is being sent to the business on the mail info table.
– Summer Gould
Nov 4 '14 at 15:38
You can write sql query using join too get the desired result
– vijayp
Nov 5 '14 at 6:39
You can write sql query using join too get the desired result
– vijayp
Nov 5 '14 at 6:39
add a comment |
1 Answer
1
active
oldest
votes
Use the query wizard to create a new "temporary" table - a 'view' (a query). This you can use then as source for your letter.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "182"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f81790%2fhow-can-i-use-access-to-combine-tables-of-information%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Use the query wizard to create a new "temporary" table - a 'view' (a query). This you can use then as source for your letter.
add a comment |
Use the query wizard to create a new "temporary" table - a 'view' (a query). This you can use then as source for your letter.
add a comment |
Use the query wizard to create a new "temporary" table - a 'view' (a query). This you can use then as source for your letter.
Use the query wizard to create a new "temporary" table - a 'view' (a query). This you can use then as source for your letter.
answered Nov 16 '14 at 12:43
ongong
11
11
add a comment |
add a comment |
Thanks for contributing an answer to Database Administrators Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f81790%2fhow-can-i-use-access-to-combine-tables-of-information%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Why you want to combine both the table in one table?
– vijayp
Nov 4 '14 at 4:15
Because I need all the information to merge into a letter that is being sent to the business on the mail info table.
– Summer Gould
Nov 4 '14 at 15:38
You can write sql query using join too get the desired result
– vijayp
Nov 5 '14 at 6:39