Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know how to do this, but i think I'll overcomplicate it with double selects and so on.

How can you do this (example in pseudo-sql)

UPDATE some_table SET an_int_value = (an_int_value==1 ? 0 : 1);

It must be an int value due to some other functionality, but how do you do it in a simple way?

share|improve this question
2  
All of the answers are quite imaginative - +1 – Dmitri Farkov Sep 22 '09 at 16:28

7 Answers

up vote 17 down vote accepted
UPDATE some_table SET an_int_value = IF(an_int_value=1, 0, 1);

http://dev.mysql.com/doc/refman/5.1/en/control-flow-functions.html#function_if

share|improve this answer
hehe, you were faster by 23 sec ;) – Glavić Mar 2 '09 at 20:24
yeah, with those obvious question there are always few people responding at the same time ;-) – vartec Mar 2 '09 at 20:26
The one who pays more attention to SO (or writes faster) gets rewarded :P – fmsf Mar 2 '09 at 20:31
@fmsf: You are correct, so vote up for @vartec ;) – Glavić Mar 2 '09 at 20:52
UPDATE table SET field = 1 - field
share|improve this answer
3  
oohhh... hahaha ... bravo... that's a really good math... i like it...nice... – Jayapal Chandran Apr 24 '12 at 8:24
Very simple mathematic logic, which is both wonderful and graceful at the same time. So awesome, hats off to you! – optimum Apr 29 '12 at 10:03
That is Superb! – jakenoble Feb 5 at 19:26
UPDATE some_table SET an_int_value = IF(an_int_value=1, 0, 1)
share|improve this answer

In this case, you could use an XOR type operation:

UPDATE some_table SET an_int_value = an_int_value XOR 1

This is assuming that an_int_value will always be 1 or 0 though.

share|improve this answer

Another option:

UPDATE some_table SET an_int_value = ABS(an_int_value - 1);
share|improve this answer

I can see the answers of all experienced people and i too got updated with their answers.

what about this... i do this way...

UPDATE tablename SET fieldname = not fieldname

can any body give suggestions please if this will not be a feasible solution. with respect to execution speed or any other... what to say... fact... concept... .

share|improve this answer

For ENUM(0,1) fields you can use...

UPDATE table SET int_value=BINARY(int_value=1)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.