BIT_COUNT
Syntax
BIT_COUNT(N)
Description
Returns the number of bits that are set in the argument N.
Examples
SELECT BIT_COUNT(29), BIT_COUNT(b'101010'); +---------------+----------------------+ | BIT_COUNT(29) | BIT_COUNT(b'101010') | +---------------+----------------------+ | 4 | 3 | +---------------+----------------------+
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.