How to use case and filter with a group by statement and having an aggregate calculation?

Multi tool use
I would like to do the following
SELECT
PO.col1,
PO.col2,
CASE
WHEN PO.col3 <> 8 THEN PO.col4
WHEN PO.col3 = 8 THEN CASE
WHEN (ROUND(CAST(PO.col4 AS double) - SUM(CAST(PO.col5 AS double)), 2)) > 0 AND SUM(CAST(PO.col5 AS double)) > 0
THEN ROUND(CAST(PO.col4 AS double) - SUM(CAST(PO.col5 AS double)), 2)
END
END AS Quantity
FROM
my_table AS PO
GROUP BY PO.col1, PO.col2
HAVING Quantity > 0
I apologize for not being able to provide sample data/columns. I am not allowed to share my work data.
The logic which I have been told to implement is as follows.
For each unique pair combination of col1
, col2
, get a constructed attribute called Quantity
. Quantity = col4
wherever col3 = 8
. If col3 != 8
, then check SUM(col5) > 0
. If yes then check col4 - SUM(col5) > 0
. If yes, then keep the record, else skip.
Out of my own observation I checked that COUNT(DISTINCT col4)
for each unique pair of col1
and col2
is 1. I hope that's helpful answering my question.
We are working with Spark SQL so I don't know what tag to use for this in the question.
group-by
New contributor
scientific_explorer is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
I would like to do the following
SELECT
PO.col1,
PO.col2,
CASE
WHEN PO.col3 <> 8 THEN PO.col4
WHEN PO.col3 = 8 THEN CASE
WHEN (ROUND(CAST(PO.col4 AS double) - SUM(CAST(PO.col5 AS double)), 2)) > 0 AND SUM(CAST(PO.col5 AS double)) > 0
THEN ROUND(CAST(PO.col4 AS double) - SUM(CAST(PO.col5 AS double)), 2)
END
END AS Quantity
FROM
my_table AS PO
GROUP BY PO.col1, PO.col2
HAVING Quantity > 0
I apologize for not being able to provide sample data/columns. I am not allowed to share my work data.
The logic which I have been told to implement is as follows.
For each unique pair combination of col1
, col2
, get a constructed attribute called Quantity
. Quantity = col4
wherever col3 = 8
. If col3 != 8
, then check SUM(col5) > 0
. If yes then check col4 - SUM(col5) > 0
. If yes, then keep the record, else skip.
Out of my own observation I checked that COUNT(DISTINCT col4)
for each unique pair of col1
and col2
is 1. I hope that's helpful answering my question.
We are working with Spark SQL so I don't know what tag to use for this in the question.
group-by
New contributor
scientific_explorer is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
I would like to do the following
SELECT
PO.col1,
PO.col2,
CASE
WHEN PO.col3 <> 8 THEN PO.col4
WHEN PO.col3 = 8 THEN CASE
WHEN (ROUND(CAST(PO.col4 AS double) - SUM(CAST(PO.col5 AS double)), 2)) > 0 AND SUM(CAST(PO.col5 AS double)) > 0
THEN ROUND(CAST(PO.col4 AS double) - SUM(CAST(PO.col5 AS double)), 2)
END
END AS Quantity
FROM
my_table AS PO
GROUP BY PO.col1, PO.col2
HAVING Quantity > 0
I apologize for not being able to provide sample data/columns. I am not allowed to share my work data.
The logic which I have been told to implement is as follows.
For each unique pair combination of col1
, col2
, get a constructed attribute called Quantity
. Quantity = col4
wherever col3 = 8
. If col3 != 8
, then check SUM(col5) > 0
. If yes then check col4 - SUM(col5) > 0
. If yes, then keep the record, else skip.
Out of my own observation I checked that COUNT(DISTINCT col4)
for each unique pair of col1
and col2
is 1. I hope that's helpful answering my question.
We are working with Spark SQL so I don't know what tag to use for this in the question.
group-by
New contributor
scientific_explorer is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I would like to do the following
SELECT
PO.col1,
PO.col2,
CASE
WHEN PO.col3 <> 8 THEN PO.col4
WHEN PO.col3 = 8 THEN CASE
WHEN (ROUND(CAST(PO.col4 AS double) - SUM(CAST(PO.col5 AS double)), 2)) > 0 AND SUM(CAST(PO.col5 AS double)) > 0
THEN ROUND(CAST(PO.col4 AS double) - SUM(CAST(PO.col5 AS double)), 2)
END
END AS Quantity
FROM
my_table AS PO
GROUP BY PO.col1, PO.col2
HAVING Quantity > 0
I apologize for not being able to provide sample data/columns. I am not allowed to share my work data.
The logic which I have been told to implement is as follows.
For each unique pair combination of col1
, col2
, get a constructed attribute called Quantity
. Quantity = col4
wherever col3 = 8
. If col3 != 8
, then check SUM(col5) > 0
. If yes then check col4 - SUM(col5) > 0
. If yes, then keep the record, else skip.
Out of my own observation I checked that COUNT(DISTINCT col4)
for each unique pair of col1
and col2
is 1. I hope that's helpful answering my question.
We are working with Spark SQL so I don't know what tag to use for this in the question.
group-by
group-by
New contributor
scientific_explorer is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
scientific_explorer is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
scientific_explorer is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 4 mins ago
scientific_explorerscientific_explorer
1
1
New contributor
scientific_explorer is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
scientific_explorer is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
scientific_explorer is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
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
});
}
});
scientific_explorer is a new contributor. Be nice, and check out our Code of Conduct.
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%2f227942%2fhow-to-use-case-and-filter-with-a-group-by-statement-and-having-an-aggregate-cal%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
scientific_explorer is a new contributor. Be nice, and check out our Code of Conduct.
scientific_explorer is a new contributor. Be nice, and check out our Code of Conduct.
scientific_explorer is a new contributor. Be nice, and check out our Code of Conduct.
scientific_explorer is a new contributor. Be nice, and check out our Code of Conduct.
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%2f227942%2fhow-to-use-case-and-filter-with-a-group-by-statement-and-having-an-aggregate-cal%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
troKbA C