Web design, Web development, Web hosting & Network administration

3 τρόποι για κάνετε invert μια μεταβλητή τύπου bit σε SQL

SET @bitVariable = ~@bitVariable    --Bitwise Not
 
SET @bitVariable = @bitVariable ^ 1    --XOR
 
SET @bitVariable = 1 - @bitVariable    --Απλή αφαίρεση
Tags: sql

Σχόλια

Re: 3 τρόποι για κάνετε invert μια μεταβλητή τύπου bit σε SQL

Δευτέρα, 14 Φεβρουαρίου 2011, 12:35 μμ από Anonymous

Nice