Question : Is the behavior of BITAND, (bitwise and) defined in MariaDB over strings? SELECT ‘0011’ & ‘0011’, ‘ff’ & […]
Tag: bit-manipulation
Hex and Binary Literals in MySQL / MariaDB?
Question : Another question I have pertains to just the & over string types. This question is over the binary-string […]
PostgreSQL extending a variable-width bit string type?
Question : PostgreSQL supports Bit Strings, SELECT B’01010101′, B’01010101′, ‘01010101’::bit(8), X’CC’; ?column? | ?column? | bit | ?column? ———-+———-+———-+———- 01010101 […]
Using a 512 bit binary column as a bit field
Question : I’m designing a table to keep track of a value that has to represent the on-off setting of […]
Hex and Binary Literals in MySQL / MariaDB?
Question : Another question I have pertains to just the & over string types. This question is over the binary-string […]