LOG2(X)
Returns the base-2 logarithm of X.
SELECT LOG2(4398046511104); +---------------------+ | LOG2(4398046511104) | +---------------------+ | 42 | +---------------------+ SELECT LOG2(65536); +-------------+ | LOG2(65536) | +-------------+ | 16 | +-------------+ SELECT LOG2(-100); +------------+ | LOG2(-100) | +------------+ | NULL | +------------+
© 2019 MariaDB
Licensed under the Creative Commons Attribution 3.0 Unported License and the GNU Free Documentation License.
https://mariadb.com/kb/en/log2/