0

有一个带有 TINYINT(1) 值的单独列的表,是否可以将它们组合并作为具有位(编辑:位字段)数据类型的单列返回?

4

2 回答 2

1

我想你想申请Logical Operators很多TINYINT专栏。

您可以使用&&||

详情请看这里

于 2012-11-15T15:48:48.260 回答
0

我认为您需要按位运算符。逻辑运算符的单数版本。

BIT_COUNT() Return the number of bits that are set
&   Bitwise AND
~   Invert bits
|   Bitwise OR
^   Bitwise XOR
<<  Left shift
>>  Right shift
于 2012-11-15T15:53:53.213 回答