Important
Helios features are now enabled during weekly update windows and are no longer directly tied to SingleStore engine releases. Refer to the release notes to view the latest features available in your Helios cluster.
BSON_ EXTRACT_ BINARY
On this page
The BSON_ function extracts and returns the BSON binary value while ignoring the subtype, optionally at the specified path.
Syntax
BSON_EXTRACT_BINARY(<input> [, path_key_1, path_key_2,.., path_key_n])Arguments
-
input: A valid BSON document or an expression that evaluates to a valid BSON document. -
path: A comma-separated list of dictionary keys or array positions (zero-based index).
Return Type
A LONGBLOB value.
Remarks
-
BSON_enables support for comparing binary values inEXTRACT_ BINARY() BSON_viaMATCH_ ANY() MATCH_.PARAM_ BINARY_ STRICT() -
If the value at the specified path is not a BSON binary value,
BSON_returns SQLEXTRACT_ BINARY() NULL.
Examples
Note: The following examples explicitly cast string to BSON for clarity.
-
Returns the binary value at the specified path:
SELECTBSON_EXTRACT_BINARY('{"a":{"$binary":{"base64":"QUJDRA==","subType":"0"}}}':>BSON, 'a') AS Result;+--------+ | Result | +--------+ | ABCD | +--------+SELECTBSON_EXTRACT_BINARY('[{"$binary":{"base64":"MTIzNA==","subType":"02"}}]':>BSON, '0') AS Result;+--------+ | Result | +--------+ | 1234 | +--------+ -
Returns SQL
NULLbecause the value at the specified path is not a BSON binary value:SELECTBSON_EXTRACT_BINARY('{"a":{"$binary":{"base64":"QUJDRA==","subType":"0"}}, "b":50}':>BSON, 'b') AS Result;+--------+ | Result | +--------+ | NULL | +--------+
Last modified: