MySQL update with avg for different periods
I was hoping I could bake these 3 update queries into one efficient and beautiful query that would update my price table. I know some of you may wonder why I'm even doing this update and not just doing my avg on the fly when I want the data, you can keep wondering.
Query #1 updates the price table with the average price for a pricegroup within 12 months.
Query #2 updates the price table with the average price for a pricegroup within 6 months.
Query #3 updates the price table with the average price for a pricegroup within 3 months.
SET
@p12 = '2017-12-01',
@p6 = '2018-06-01',
@p3 = '2018-09-01',
@p1 = '2019-12-01';
/* AVG PRICE 12 MONTHS */
UPDATE
prices
JOIN product ON
product.id = prices.product_id
JOIN(
SELECT
pricegroup,
AVG( price ) as avg_price
FROM
price_temp
WHERE
sales_date BETWEEN @p12 AND @p1
GROUP BY
pricegroup
) as a ON
a.pricegroup = product.pricegroup
SET
prices.price_12 = a.avg_price
WHERE
prices.`date` = @p1;
/* AVG PRICE 6 MONTHS */
UPDATE
prices
JOIN product ON
product.id = prices.product_id
JOIN(
SELECT
pricegroup,
AVG( price ) as avg_price
FROM
price_temp
WHERE
sales_date BETWEEN @p6 AND @p1
GROUP BY
pricegroup
) as a ON
a.pricegroup = product.pricegroup
SET
prices.price_6 = a.avg_price
WHERE
prices.`date` = @p1;
/* AVG PRICE 3 MONTHS */
UPDATE
prices
JOIN product ON
product.id = prices.product_id
JOIN(
SELECT
pricegroup,
AVG( price ) as avg_price
FROM
price_temp
WHERE
sales_date BETWEEN @p3 AND @p1
GROUP BY
pricegroup
) as a ON
a.pricegroup = product.pricegroup
SET
prices.price_3 = a.avg_price
WHERE
prices.`date` = @p1;
---- Price table ----
| id | product_id | date | price | price_3 | price_6 | price_12 |
---- Product table ----
| id | pricegroup |
---- Prices_temp table ----
| pricegroup | sales_date | price |
mysql
add a comment |
I was hoping I could bake these 3 update queries into one efficient and beautiful query that would update my price table. I know some of you may wonder why I'm even doing this update and not just doing my avg on the fly when I want the data, you can keep wondering.
Query #1 updates the price table with the average price for a pricegroup within 12 months.
Query #2 updates the price table with the average price for a pricegroup within 6 months.
Query #3 updates the price table with the average price for a pricegroup within 3 months.
SET
@p12 = '2017-12-01',
@p6 = '2018-06-01',
@p3 = '2018-09-01',
@p1 = '2019-12-01';
/* AVG PRICE 12 MONTHS */
UPDATE
prices
JOIN product ON
product.id = prices.product_id
JOIN(
SELECT
pricegroup,
AVG( price ) as avg_price
FROM
price_temp
WHERE
sales_date BETWEEN @p12 AND @p1
GROUP BY
pricegroup
) as a ON
a.pricegroup = product.pricegroup
SET
prices.price_12 = a.avg_price
WHERE
prices.`date` = @p1;
/* AVG PRICE 6 MONTHS */
UPDATE
prices
JOIN product ON
product.id = prices.product_id
JOIN(
SELECT
pricegroup,
AVG( price ) as avg_price
FROM
price_temp
WHERE
sales_date BETWEEN @p6 AND @p1
GROUP BY
pricegroup
) as a ON
a.pricegroup = product.pricegroup
SET
prices.price_6 = a.avg_price
WHERE
prices.`date` = @p1;
/* AVG PRICE 3 MONTHS */
UPDATE
prices
JOIN product ON
product.id = prices.product_id
JOIN(
SELECT
pricegroup,
AVG( price ) as avg_price
FROM
price_temp
WHERE
sales_date BETWEEN @p3 AND @p1
GROUP BY
pricegroup
) as a ON
a.pricegroup = product.pricegroup
SET
prices.price_3 = a.avg_price
WHERE
prices.`date` = @p1;
---- Price table ----
| id | product_id | date | price | price_3 | price_6 | price_12 |
---- Product table ----
| id | pricegroup |
---- Prices_temp table ----
| pricegroup | sales_date | price |
mysql
1
Check w3schools.com/sql/func_mysql_case.asp
– J. Almandos
Nov 15 '18 at 13:13
So something like "avg(CASE WHEN sales_date BETWEEN p3 AND p1 THEN price END) as avg_p3"
– Patrick
Nov 15 '18 at 14:53
add a comment |
I was hoping I could bake these 3 update queries into one efficient and beautiful query that would update my price table. I know some of you may wonder why I'm even doing this update and not just doing my avg on the fly when I want the data, you can keep wondering.
Query #1 updates the price table with the average price for a pricegroup within 12 months.
Query #2 updates the price table with the average price for a pricegroup within 6 months.
Query #3 updates the price table with the average price for a pricegroup within 3 months.
SET
@p12 = '2017-12-01',
@p6 = '2018-06-01',
@p3 = '2018-09-01',
@p1 = '2019-12-01';
/* AVG PRICE 12 MONTHS */
UPDATE
prices
JOIN product ON
product.id = prices.product_id
JOIN(
SELECT
pricegroup,
AVG( price ) as avg_price
FROM
price_temp
WHERE
sales_date BETWEEN @p12 AND @p1
GROUP BY
pricegroup
) as a ON
a.pricegroup = product.pricegroup
SET
prices.price_12 = a.avg_price
WHERE
prices.`date` = @p1;
/* AVG PRICE 6 MONTHS */
UPDATE
prices
JOIN product ON
product.id = prices.product_id
JOIN(
SELECT
pricegroup,
AVG( price ) as avg_price
FROM
price_temp
WHERE
sales_date BETWEEN @p6 AND @p1
GROUP BY
pricegroup
) as a ON
a.pricegroup = product.pricegroup
SET
prices.price_6 = a.avg_price
WHERE
prices.`date` = @p1;
/* AVG PRICE 3 MONTHS */
UPDATE
prices
JOIN product ON
product.id = prices.product_id
JOIN(
SELECT
pricegroup,
AVG( price ) as avg_price
FROM
price_temp
WHERE
sales_date BETWEEN @p3 AND @p1
GROUP BY
pricegroup
) as a ON
a.pricegroup = product.pricegroup
SET
prices.price_3 = a.avg_price
WHERE
prices.`date` = @p1;
---- Price table ----
| id | product_id | date | price | price_3 | price_6 | price_12 |
---- Product table ----
| id | pricegroup |
---- Prices_temp table ----
| pricegroup | sales_date | price |
mysql
I was hoping I could bake these 3 update queries into one efficient and beautiful query that would update my price table. I know some of you may wonder why I'm even doing this update and not just doing my avg on the fly when I want the data, you can keep wondering.
Query #1 updates the price table with the average price for a pricegroup within 12 months.
Query #2 updates the price table with the average price for a pricegroup within 6 months.
Query #3 updates the price table with the average price for a pricegroup within 3 months.
SET
@p12 = '2017-12-01',
@p6 = '2018-06-01',
@p3 = '2018-09-01',
@p1 = '2019-12-01';
/* AVG PRICE 12 MONTHS */
UPDATE
prices
JOIN product ON
product.id = prices.product_id
JOIN(
SELECT
pricegroup,
AVG( price ) as avg_price
FROM
price_temp
WHERE
sales_date BETWEEN @p12 AND @p1
GROUP BY
pricegroup
) as a ON
a.pricegroup = product.pricegroup
SET
prices.price_12 = a.avg_price
WHERE
prices.`date` = @p1;
/* AVG PRICE 6 MONTHS */
UPDATE
prices
JOIN product ON
product.id = prices.product_id
JOIN(
SELECT
pricegroup,
AVG( price ) as avg_price
FROM
price_temp
WHERE
sales_date BETWEEN @p6 AND @p1
GROUP BY
pricegroup
) as a ON
a.pricegroup = product.pricegroup
SET
prices.price_6 = a.avg_price
WHERE
prices.`date` = @p1;
/* AVG PRICE 3 MONTHS */
UPDATE
prices
JOIN product ON
product.id = prices.product_id
JOIN(
SELECT
pricegroup,
AVG( price ) as avg_price
FROM
price_temp
WHERE
sales_date BETWEEN @p3 AND @p1
GROUP BY
pricegroup
) as a ON
a.pricegroup = product.pricegroup
SET
prices.price_3 = a.avg_price
WHERE
prices.`date` = @p1;
---- Price table ----
| id | product_id | date | price | price_3 | price_6 | price_12 |
---- Product table ----
| id | pricegroup |
---- Prices_temp table ----
| pricegroup | sales_date | price |
mysql
mysql
asked Nov 15 '18 at 13:04
PatrickPatrick
20829
20829
1
Check w3schools.com/sql/func_mysql_case.asp
– J. Almandos
Nov 15 '18 at 13:13
So something like "avg(CASE WHEN sales_date BETWEEN p3 AND p1 THEN price END) as avg_p3"
– Patrick
Nov 15 '18 at 14:53
add a comment |
1
Check w3schools.com/sql/func_mysql_case.asp
– J. Almandos
Nov 15 '18 at 13:13
So something like "avg(CASE WHEN sales_date BETWEEN p3 AND p1 THEN price END) as avg_p3"
– Patrick
Nov 15 '18 at 14:53
1
1
Check w3schools.com/sql/func_mysql_case.asp
– J. Almandos
Nov 15 '18 at 13:13
Check w3schools.com/sql/func_mysql_case.asp
– J. Almandos
Nov 15 '18 at 13:13
So something like "avg(CASE WHEN sales_date BETWEEN p3 AND p1 THEN price END) as avg_p3"
– Patrick
Nov 15 '18 at 14:53
So something like "avg(CASE WHEN sales_date BETWEEN p3 AND p1 THEN price END) as avg_p3"
– Patrick
Nov 15 '18 at 14:53
add a comment |
1 Answer
1
active
oldest
votes
So after looking at cases I remade the query and used cases within the AVG
UPDATE
prices
JOIN product ON
product.id = prices.product_id
JOIN(
SELECT
pricegroup,
avg(CASE WHEN sales_date = @p1 THEN price END) as p1,
avg(CASE WHEN sales_date BETWEEN @p3 AND @p1 THEN price END) as p3,
avg(CASE WHEN sales_date BETWEEN @p6 AND @p1 THEN price END) as p6,
avg(CASE WHEN sales_date BETWEEN @p12 AND @p1 THEN price END) as p12
FROM
price_temp
GROUP BY
pricegroup
) as a ON
a.pricegroup = product.pricegroup
SET
prices.price = IF(a.p1 IS NULL, 0, a.p1),
prices.price_3 = IF(a.p3 IS NULL, 0, a.p3),
prices.price_6 = IF(a.p6 IS NULL, 0, a.p6),
prices.price_12 = IF(a.p12 IS NULL, 0, a.p12)
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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%2fstackoverflow.com%2fquestions%2f53320131%2fmysql-update-with-avg-for-different-periods%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
So after looking at cases I remade the query and used cases within the AVG
UPDATE
prices
JOIN product ON
product.id = prices.product_id
JOIN(
SELECT
pricegroup,
avg(CASE WHEN sales_date = @p1 THEN price END) as p1,
avg(CASE WHEN sales_date BETWEEN @p3 AND @p1 THEN price END) as p3,
avg(CASE WHEN sales_date BETWEEN @p6 AND @p1 THEN price END) as p6,
avg(CASE WHEN sales_date BETWEEN @p12 AND @p1 THEN price END) as p12
FROM
price_temp
GROUP BY
pricegroup
) as a ON
a.pricegroup = product.pricegroup
SET
prices.price = IF(a.p1 IS NULL, 0, a.p1),
prices.price_3 = IF(a.p3 IS NULL, 0, a.p3),
prices.price_6 = IF(a.p6 IS NULL, 0, a.p6),
prices.price_12 = IF(a.p12 IS NULL, 0, a.p12)
add a comment |
So after looking at cases I remade the query and used cases within the AVG
UPDATE
prices
JOIN product ON
product.id = prices.product_id
JOIN(
SELECT
pricegroup,
avg(CASE WHEN sales_date = @p1 THEN price END) as p1,
avg(CASE WHEN sales_date BETWEEN @p3 AND @p1 THEN price END) as p3,
avg(CASE WHEN sales_date BETWEEN @p6 AND @p1 THEN price END) as p6,
avg(CASE WHEN sales_date BETWEEN @p12 AND @p1 THEN price END) as p12
FROM
price_temp
GROUP BY
pricegroup
) as a ON
a.pricegroup = product.pricegroup
SET
prices.price = IF(a.p1 IS NULL, 0, a.p1),
prices.price_3 = IF(a.p3 IS NULL, 0, a.p3),
prices.price_6 = IF(a.p6 IS NULL, 0, a.p6),
prices.price_12 = IF(a.p12 IS NULL, 0, a.p12)
add a comment |
So after looking at cases I remade the query and used cases within the AVG
UPDATE
prices
JOIN product ON
product.id = prices.product_id
JOIN(
SELECT
pricegroup,
avg(CASE WHEN sales_date = @p1 THEN price END) as p1,
avg(CASE WHEN sales_date BETWEEN @p3 AND @p1 THEN price END) as p3,
avg(CASE WHEN sales_date BETWEEN @p6 AND @p1 THEN price END) as p6,
avg(CASE WHEN sales_date BETWEEN @p12 AND @p1 THEN price END) as p12
FROM
price_temp
GROUP BY
pricegroup
) as a ON
a.pricegroup = product.pricegroup
SET
prices.price = IF(a.p1 IS NULL, 0, a.p1),
prices.price_3 = IF(a.p3 IS NULL, 0, a.p3),
prices.price_6 = IF(a.p6 IS NULL, 0, a.p6),
prices.price_12 = IF(a.p12 IS NULL, 0, a.p12)
So after looking at cases I remade the query and used cases within the AVG
UPDATE
prices
JOIN product ON
product.id = prices.product_id
JOIN(
SELECT
pricegroup,
avg(CASE WHEN sales_date = @p1 THEN price END) as p1,
avg(CASE WHEN sales_date BETWEEN @p3 AND @p1 THEN price END) as p3,
avg(CASE WHEN sales_date BETWEEN @p6 AND @p1 THEN price END) as p6,
avg(CASE WHEN sales_date BETWEEN @p12 AND @p1 THEN price END) as p12
FROM
price_temp
GROUP BY
pricegroup
) as a ON
a.pricegroup = product.pricegroup
SET
prices.price = IF(a.p1 IS NULL, 0, a.p1),
prices.price_3 = IF(a.p3 IS NULL, 0, a.p3),
prices.price_6 = IF(a.p6 IS NULL, 0, a.p6),
prices.price_12 = IF(a.p12 IS NULL, 0, a.p12)
answered Nov 23 '18 at 16:24
PatrickPatrick
20829
20829
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- 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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2fstackoverflow.com%2fquestions%2f53320131%2fmysql-update-with-avg-for-different-periods%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
1
Check w3schools.com/sql/func_mysql_case.asp
– J. Almandos
Nov 15 '18 at 13:13
So something like "avg(CASE WHEN sales_date BETWEEN p3 AND p1 THEN price END) as avg_p3"
– Patrick
Nov 15 '18 at 14:53