MYSQL query change column value based on the other column value
up vote
1
down vote
favorite
I have a MySQL query .I want to set column hours=0 when the sub task is 'PTO'.I tried below query but it is not working as expected.
select distinct t.hours, t.subtask,
CASE sub task
WHEN 'PTO' THEN t.hours=0
ELSE t.hours
END as subtask
from task t
mysql
add a comment |
up vote
1
down vote
favorite
I have a MySQL query .I want to set column hours=0 when the sub task is 'PTO'.I tried below query but it is not working as expected.
select distinct t.hours, t.subtask,
CASE sub task
WHEN 'PTO' THEN t.hours=0
ELSE t.hours
END as subtask
from task t
mysql
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I have a MySQL query .I want to set column hours=0 when the sub task is 'PTO'.I tried below query but it is not working as expected.
select distinct t.hours, t.subtask,
CASE sub task
WHEN 'PTO' THEN t.hours=0
ELSE t.hours
END as subtask
from task t
mysql
I have a MySQL query .I want to set column hours=0 when the sub task is 'PTO'.I tried below query but it is not working as expected.
select distinct t.hours, t.subtask,
CASE sub task
WHEN 'PTO' THEN t.hours=0
ELSE t.hours
END as subtask
from task t
mysql
mysql
edited Nov 22 at 6:27
CS_noob
3951211
3951211
asked Nov 22 at 6:16
sandeep.mishra
34221131
34221131
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
You can try below
select distinct t.hours, t.subtask,
CASE t.subtask WHEN 'PTO' THEN 0 ELSE t.hours END as updated_subtask
from task t
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
You can try below
select distinct t.hours, t.subtask,
CASE t.subtask WHEN 'PTO' THEN 0 ELSE t.hours END as updated_subtask
from task t
add a comment |
up vote
1
down vote
accepted
You can try below
select distinct t.hours, t.subtask,
CASE t.subtask WHEN 'PTO' THEN 0 ELSE t.hours END as updated_subtask
from task t
add a comment |
up vote
1
down vote
accepted
up vote
1
down vote
accepted
You can try below
select distinct t.hours, t.subtask,
CASE t.subtask WHEN 'PTO' THEN 0 ELSE t.hours END as updated_subtask
from task t
You can try below
select distinct t.hours, t.subtask,
CASE t.subtask WHEN 'PTO' THEN 0 ELSE t.hours END as updated_subtask
from task t
answered Nov 22 at 6:19
fa06
10.1k1917
10.1k1917
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%2f53424903%2fmysql-query-change-column-value-based-on-the-other-column-value%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