Hi,
Is it possible to toggle a boolean from FALSE to TRUE or TRUE to FALSE in a SQL query. Something like this:
UPDATE clients SET boolean_value = toggle...?
Thanks for any help, ~Oni.
UPDATE clients SET boolean_value = !boolean_value WHERE...
clients
boolean_value
Thats it! Thanks very much.