MySQL updating table with values selected from same table in one go
I want to update quite a few values in a table. Said values already exist in another table.
I'm selecting said values using the following query:
SELECT c.last_purchase,
so.customer_id,
so.modified_at
FROM customer c
INNER JOIN sale_order so
ON c.customer_id = so.customer_id
AND c.country = so.country
WHERE so.created_at > c.last_purchase
So far so good. But my sql skills aren't too great(hey, I'm being honest here).
The correct values are so.modified_at
. I want to update c.last_purchase
to match so.modified_at
.
Originally I was thinking of using a WHEN
THEN
combination. Or perhaps some sort of stored procedure.
I could this by using a bash script or any other programming language that knows how to connect to a database. But I'd like, if possible, to do this strictly using MySQL. If not possible I'll have to settle for a bash script(I already wrote one).
Honestly, I have no idea where to start.
Any pointing in the right direction is more than appreciated.
mysql
add a comment |
I want to update quite a few values in a table. Said values already exist in another table.
I'm selecting said values using the following query:
SELECT c.last_purchase,
so.customer_id,
so.modified_at
FROM customer c
INNER JOIN sale_order so
ON c.customer_id = so.customer_id
AND c.country = so.country
WHERE so.created_at > c.last_purchase
So far so good. But my sql skills aren't too great(hey, I'm being honest here).
The correct values are so.modified_at
. I want to update c.last_purchase
to match so.modified_at
.
Originally I was thinking of using a WHEN
THEN
combination. Or perhaps some sort of stored procedure.
I could this by using a bash script or any other programming language that knows how to connect to a database. But I'd like, if possible, to do this strictly using MySQL. If not possible I'll have to settle for a bash script(I already wrote one).
Honestly, I have no idea where to start.
Any pointing in the right direction is more than appreciated.
mysql
add a comment |
I want to update quite a few values in a table. Said values already exist in another table.
I'm selecting said values using the following query:
SELECT c.last_purchase,
so.customer_id,
so.modified_at
FROM customer c
INNER JOIN sale_order so
ON c.customer_id = so.customer_id
AND c.country = so.country
WHERE so.created_at > c.last_purchase
So far so good. But my sql skills aren't too great(hey, I'm being honest here).
The correct values are so.modified_at
. I want to update c.last_purchase
to match so.modified_at
.
Originally I was thinking of using a WHEN
THEN
combination. Or perhaps some sort of stored procedure.
I could this by using a bash script or any other programming language that knows how to connect to a database. But I'd like, if possible, to do this strictly using MySQL. If not possible I'll have to settle for a bash script(I already wrote one).
Honestly, I have no idea where to start.
Any pointing in the right direction is more than appreciated.
mysql
I want to update quite a few values in a table. Said values already exist in another table.
I'm selecting said values using the following query:
SELECT c.last_purchase,
so.customer_id,
so.modified_at
FROM customer c
INNER JOIN sale_order so
ON c.customer_id = so.customer_id
AND c.country = so.country
WHERE so.created_at > c.last_purchase
So far so good. But my sql skills aren't too great(hey, I'm being honest here).
The correct values are so.modified_at
. I want to update c.last_purchase
to match so.modified_at
.
Originally I was thinking of using a WHEN
THEN
combination. Or perhaps some sort of stored procedure.
I could this by using a bash script or any other programming language that knows how to connect to a database. But I'd like, if possible, to do this strictly using MySQL. If not possible I'll have to settle for a bash script(I already wrote one).
Honestly, I have no idea where to start.
Any pointing in the right direction is more than appreciated.
mysql
mysql
asked 9 secs ago
AndrewAndrew
1185
1185
add a comment |
add a comment |
0
active
oldest
votes
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%2f227839%2fmysql-updating-table-with-values-selected-from-same-table-in-one-go%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f227839%2fmysql-updating-table-with-values-selected-from-same-table-in-one-go%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