SQLのお話です。
10進数で入ったデータを2進数にして、比較をするためいろいろハマったメモ
カラムには以下のように、10進数でデータが入っています。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SQL> select DATA_FLGS from DATA; | |
ID DATA_FLGS | |
----------- --------------- | |
1 16644 | |
2 24605 |
これを、2進数にすると
「100000100000100」になります。
目的
今回の目的は、この5番目の値が「0か1か」を比較することです。
以下のようなSQLで比較が出来ることが分かりました。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SQL> select DATA_FLGS,bitand(DATA_FLGS,16) from DATA where ID='1' ; | |
DATA_FLGS BITAND(DATA_FLGS,16) | |
--------------- -------------------------- | |
16644 0 | |
SQL> select DATA_FLGS,bitand(DATA_FLGS,16) from DATA where ID='2' ; | |
DATA_FLGS BITAND(DATA_FLGS,16) | |
--------------- -------------------------- | |
24605 16 |
いろいろバリエーションも変えたり。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select DATA_FLGS,bitand(DATA_FLGS,POWER(2, (5 - 1))) from DATA where ID='2' ; | |
DATA_FLGS BITAND(DATA_FLGS,POWER(2, (5 - 1))) | |
--------------- -------------------------- | |
24605 16 |
結果を、「○」「×」で表示したり
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select DATA_FLGS,decode(bitand(DATA_FLGS,16),16,'○','×') from DATA where ID='1' ; | |
DATA_FLGS DE | |
--------------- -- | |
16644 × | |
select DATA_FLGS,decode(bitand(DATA_FLGS,16),16,'○','×') from DATA where ID='2' ; | |
DATA_FLGS DE | |
--------------- -- | |
24605 ○ |
自分のメモ用です。
何かの、お役にたちますように~
参考