Minor changes are by default collapsed in the page history.
No changes
The page does not exist yet.
Failed to load changes
Version by on
Leave Collaboration
Are you sure you want to leave the realtime collaboration and continue editing alone? The changes you save while editing alone will lead to merge conflicts with the changes auto-saved by the realtime editing session.
BINARY(binary_string_expression, length)
The BINARY function returns a fixed-length binary string that consists of the binary string expression of length, as specified by the function's second argument. The first argument's data type is either binary or varbinary. The second argument is a numerical integer constant in the range of 1 through 255.
If the first argument is nullable, the result will be nullable and if it is null, the result will be the null value.
The following guidelines apply to the second argument:
If you omit the length argument, the product derives the length from the first argument's length.
If the specified length is shorter, the product truncates the string without warning.
If the length is longer, the product pads the result with binary zeros.