Toggle a Bit with SQL

I am working on a management dashboard for a client, which uses some AJAX here and there. One simple but really nice feature is that you can enabled or disable things just by clicking on an icon, the state is updated in the background using AJAX (I also add some animation to let the user know that it has been updated).
I wanted to be able to toggle the state of the bit field without a care of the current state. Here's how you can do that in SQL:
UPDATE companies SET active_ind = active_ind ^ 1 WHERE id = ?
I'm using a ^ Bitwise (Exclusive OR or XOR) operator here to do this. To understand what's going on here let's look at a truth table for XOR:
| p | q | p ^ q |
|---|---|---|
| 1 | 1 | 0 |
| 1 | 0 | 1 |
| 0 | 1 | 1 |
| 0 | 0 | 0 |
Trackbacks
Trackback Address: 615/89828BEA2888C0C5435AF00E3ED77DBD
- Dan Dan
Comments
On 01/04/2007 at 9:51:50 AM EST Neil Middleton wrote:
1
Uh... 0 ^ 0 = 0
On 01/04/2007 at 10:07:28 AM EST Rick O wrote:
2
Why not:
SET active_ind = 1 - active_ind
?
On 01/04/2007 at 10:26:06 AM EST Pete Freitag wrote:
3
Oops thanks Neil, I was copying and pasting the rows of hmtl, and forgot to change the last one... Fixed.
On 01/04/2007 at 10:28:12 AM EST Pete Freitag wrote:
4
Rick that's a good solution as well, and probably a bit more readable. Thanks!
On 01/04/2007 at 9:05:43 PM EST Dale Fraser wrote:
5
SET active_ind = 1 - active_ind
Does that work?
1 - 0 = 0 0 - 1 = -1 does this end up as bit 1
On 01/05/2007 at 5:35:17 AM EST Ben Nadel wrote:
6
Nice tip! I have never used bit-wise manipulation in SQL. It's something I should look into.
On 01/05/2007 at 7:39:01 AM EST Pete Freitag wrote:
7
Dale, yes it does work:
1 - 0 = 1
1 - 1 = 0
On 01/05/2007 at 9:22:01 AM EST Kris wrote:
8
if 1 is always 1 then you can use the NOT option to revse the value of active_ind.
UPDATE companies SET active_ind = ~active_ind WHERE id = ?
On 01/12/2007 at 11:34:36 AM EST Steve wrote:
9
Very elegant. I have been using the ternary operator in PHP, but that requires passing in a variable from the middleware tier.
I'll be using this from now on.
On 11/09/2007 at 12:51:31 PM EST Phill Pafford wrote:
10
Hi,
I have a similar problem:
I have been banging my head with this one.
Problem:
I have a SQL Query that sets a bit in a field (I didn't write the query)
Code:
UPDATE Table_name SET Options=Options|16 WHERE field='value'
And Also
Code:
UPDATE table_name SET Options=Options|8|4|64|128 WHERE field='value'
I was told this is setting the bit flags in the field and this query does work correctly.
My Question is:
How do I reverse the bit settings? I was told to use the ampersand "&" but it didn't work as I had thought.
So if I set options|16 I can unset options|16
Thanks in advance
--------------------------
so I found the the Tilda "~" (without the quotes) is the reverse binary option, but it didn't do as I thought it would :-(
On 10/24/2008 at 12:48:10 PM EDT MoMad wrote:
11
Try Options & ~16.
Basically, you want to invert 16, then AND it with your options: 16 = 0001 0000 ~ = 1110 1111
If Options is 217 = 1101 1001
SELECT Options & ~16 will give: 201 = 1100 1001
Post a Comment
Recent Entries
- Cache Template in Request Setting Explained
- What Version of Java is ColdFusion Using?
- ColdFusion 9 Performance Brief from Adobe
- Request Filtering in IIS 7 Howto
- J2EE Session Cookies on ColdFusion / JRun
- Hands on ColdFusion Security Training
- ColdFusion 9 Solr Vulnerability - Are you at Risk?
- FCKEditor Year 2010 Bug for Firefox 3.6 with ColdFusion
SET active_ind = 1 - active_ind
?
Does that work?
1 - 0 = 0 0 - 1 = -1 does this end up as bit 1
1 - 0 = 1
1 - 1 = 0
UPDATE companies SET active_ind = ~active_ind WHERE id = ?
I'll be using this from now on.
I have a similar problem:
I have been banging my head with this one.
Problem:
I have a SQL Query that sets a bit in a field (I didn't write the query)
Code:
UPDATE Table_name SET Options=Options|16 WHERE field='value'
And Also
Code:
UPDATE table_name SET Options=Options|8|4|64|128 WHERE field='value'
I was told this is setting the bit flags in the field and this query does work correctly.
My Question is:
How do I reverse the bit settings? I was told to use the ampersand "&" but it didn't work as I had thought.
So if I set options|16 I can unset options|16
Thanks in advance
--------------------------
so I found the the Tilda "~" (without the quotes) is the reverse binary option, but it didn't do as I thought it would :-(
Basically, you want to invert 16, then AND it with your options: 16 = 0001 0000 ~ = 1110 1111
If Options is 217 = 1101 1001
SELECT Options & ~16 will give: 201 = 1100 1001



add to del.icio.us



