Watch the 7.3 Webinar On-Demand
This new release brings updates to Universal Storage, query
optimization, and usability that you won’t want to miss.
Returns the logarithm of the given argument to base 2.
LOG2 ( number )
LOG2(n) is equivalent to LOG(n) / LOG(2).
Float or double. If number is less than or equal to 0, or if base is non-positive or 1, returns NULL.
SELECT LOG2(16);
+----------+
| LOG2(16) |
+----------+
| 4 |
+----------+