Oracle9i SQL Reference Release 2 (9.2) Part Number A96540-02 |
|
|
View PDF |
bin_to_num::=
BIN_TO_NUM
converts a bit vector to its equivalent number. Each argument to this function represents a bit in the bit vector. Each expr
must evaluate to 0 or 1. This function returns Oracle NUMBER
.
BIN_TO_NUM
is useful in data warehousing applications for selecting groups of interest from a materialized view using grouping sets.
See Also:
|
The following example converts a binary value to a number:
SELECT BIN_TO_NUM(1,0,1,0) FROM DUAL; BIN_TO_NUM(1,0,1,0) ------------------- 10