vote up 1 vote down star

I have a column in my table titled 'authorised'. It's default is 0. It needs to be changed to 1 when the user is authorised, but it must be able to be reset to 0. I know I could do this easily with 2 queries like so:

$authorised = Db::query('SELECT authorised FROM users WHERE id=2');

$newAuthValue = ($authorised['authorised']) ? 0 : 1;

Db::query('UPDATE users SET authorised=' . $newAuthValue . ' WHERE id=2');

What I wanted to know, is there a way to do this with one query? To reverse a boolean value? I think MySQL might not have a true Boolean data type, as when I make it under phpMyAdmin it just becomes tinyint(1).

flag

3 Answers

vote up 5 vote down check
UPDATE users SET `authorised` = IF (`authorised`, 0, 1)
link|flag
This looks cleaner IMO. :) – alex Mar 20 at 5:20
Just make sure you add your where clause, alex. – Peter Bailey Mar 20 at 6:09
@Peter, thanks, and yes I did. – alex Mar 20 at 6:27
vote up 3 vote down

There are multiple ways to do this, here's a simple one:

UPDATE users SET authorised = ABS(authorised - 1) WHERE id = 2;
link|flag
Whoops, missed that. Thanks Chad. – alex Mar 20 at 4:46
why not just "1 - authorised" ? – nickf Mar 20 at 4:52
@nickf: I agree with you, the following should work: UPDATE users SET authorised = 1 - authorised WHERE id = 2; – dalle Mar 20 at 8:03
Yep, that way will work just as well. There's no reason I went with the ABS() method, it's just the one that I thought of first. :b – Chad Birch Mar 20 at 14:30
vote up 7 vote down
UPDATE `users` SET `authorised` = NOT `authorised` WHERE id = 2

This query will also work to negate the field, and is more inline with boolean syntax.

link|flag
Ok, that didn't get posted properly, those slashes should be backticks, which are MySQLs default encapsulator. – Alex Marshall Mar 20 at 7:55
That's a good one...! +1 – alex Mar 20 at 23:53

Your Answer

Get an OpenID
or

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