April 2008
Intermediate to advanced
566 pages
21h 55m
English
BIT_COUNT()
BIT_COUNT(number)This function returns the number of bits set in the argument, which is an integer that the function treats as a binary number.
SELECT BIT_COUNT(10), BIT_COUNT(11); +---------------+---------------+ | BIT_COUNT(10) | BIT_COUNT(11) | +---------------+---------------+ | 2 | 3 | +---------------+---------------+
Read now
Unlock full access