LOG2
Syntax
LOG2(X)
Description
Returns the base-2 logarithm of X.
Examples
SELECT LOG2(4398046511104); +---------------------+ | LOG2(4398046511104) | +---------------------+ | 42 | +---------------------+ SELECT LOG2(65536); +-------------+ | LOG2(65536) | +-------------+ | 16 | +-------------+ SELECT LOG2(-100); +------------+ | LOG2(-100) | +------------+ | NULL | +------------+
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.