BINARYw. Format
Converts numeric values to binary representation.
Category: |
Numeric |
Alignment: |
Left |
Syntax
Arguments
w
specifies the width
of the output field.
Comparisons
BINARY
w.
converts numeric values to binary representation. The $BINARY
w.
format converts character values to binary representation.
Example
|
|
|
|
select put (123.45, binary8.);
|
|
select put (123, binary8.);
|
|
select put (–123, binary8.);
|
|