Encoding Functions

char

Returns the string with the length as the number of passed arguments and each byte has the value of corresponding argument. Accepts multiple arguments of numeric types. If the value of argument is out of range of UInt8 data type, it is converted to UInt8 with possible rounding and overflow.

Syntax

  1. char(number_1, [number_2, ..., number_n]);

Arguments

  • number_1, number_2, ..., number_n — Numerical arguments interpreted as integers. Types: Int, Float.

Returned value

  • a string of given bytes.

Type: String.

Example

Query:

  1. SELECT char(104.1, 101, 108.9, 108.9, 111) AS hello;

Result:

  1. ┌─hello─┐
  2. hello
  3. └───────┘

You can construct a string of arbitrary encoding by passing the corresponding bytes. Here is example for UTF-8:

Query:

  1. SELECT char(0xD0, 0xBF, 0xD1, 0x80, 0xD0, 0xB8, 0xD0, 0xB2, 0xD0, 0xB5, 0xD1, 0x82) AS hello;

Result:

  1. ┌─hello──┐
  2. привет
  3. └────────┘

Query:

  1. SELECT char(0xE4, 0xBD, 0xA0, 0xE5, 0xA5, 0xBD) AS hello;

Result:

  1. ┌─hello─┐
  2. 你好
  3. └───────┘

hex

Returns a string containing the argument’s hexadecimal representation.

Alias: HEX.

Syntax

  1. hex(arg)

The function is using uppercase letters A-F and not using any prefixes (like 0x) or suffixes (like h).

For integer arguments, it prints hex digits (“nibbles”) from the most significant to least significant (big-endian or “human-readable” order). It starts with the most significant non-zero byte (leading zero bytes are omitted) but always prints both digits of every byte even if the leading digit is zero.

Values of type Date and DateTime are formatted as corresponding integers (the number of days since Epoch for Date and the value of Unix Timestamp for DateTime).

For String and FixedString, all bytes are simply encoded as two hexadecimal numbers. Zero bytes are not omitted.

Values of Float and Decimal types are encoded as their representation in memory. As we support little-endian architecture, they are encoded in little-endian. Zero leading/trailing bytes are not omitted.

Arguments

Returned value

  • A string with the hexadecimal representation of the argument.

Type: String.

Examples

Query:

  1. SELECT hex(1);

Result:

  1. 01

Query:

  1. SELECT hex(toFloat32(number)) AS hex_presentation FROM numbers(15, 2);

Result:

  1. ┌─hex_presentation─┐
  2. 00007041
  3. 00008041
  4. └──────────────────┘

Query:

  1. SELECT hex(toFloat64(number)) AS hex_presentation FROM numbers(15, 2);

Result:

  1. ┌─hex_presentation─┐
  2. 0000000000002E40
  3. 0000000000003040
  4. └──────────────────┘

unhex

Performs the opposite operation of hex. It interprets each pair of hexadecimal digits (in the argument) as a number and converts it to the byte represented by the number. The return value is a binary string (BLOB).

If you want to convert the result to a number, you can use the reverse and reinterpretAs functions.

Note

If unhex is invoked from within the clickhouse-client, binary strings display using UTF-8.

Alias: UNHEX.

Syntax

  1. unhex(arg)

Arguments

  • arg — A string containing any number of hexadecimal digits. Type: String.

Supports both uppercase and lowercase letters A-F. The number of hexadecimal digits does not have to be even. If it is odd, the last digit is interpreted as the least significant half of the 00-0F byte. If the argument string contains anything other than hexadecimal digits, some implementation-defined result is returned (an exception isn’t thrown). For a numeric argument the inverse of hex(N) is not performed by unhex().

Returned value

  • A binary string (BLOB).

Type: String.

Example

Query:

  1. SELECT unhex('303132'), UNHEX('4D7953514C');

Result:

  1. ┌─unhex('303132')─┬─unhex('4D7953514C')─┐
  2. 012 MySQL
  3. └─────────────────┴─────────────────────┘

Query:

  1. SELECT reinterpretAsUInt64(reverse(unhex('FFF'))) AS num;

Result:

  1. ┌──num─┐
  2. 4095
  3. └──────┘

bin

Returns a string containing the argument’s binary representation.

Syntax

  1. bin(arg)

Alias: BIN.

For integer arguments, it prints bin digits from the most significant to least significant (big-endian or “human-readable” order). It starts with the most significant non-zero byte (leading zero bytes are omitted) but always prints eight digits of every byte if the leading digit is zero.

Values of type Date and DateTime are formatted as corresponding integers (the number of days since Epoch for Date and the value of Unix Timestamp for DateTime).

For String and FixedString, all bytes are simply encoded as eight binary numbers. Zero bytes are not omitted.

Values of Float and Decimal types are encoded as their representation in memory. As we support little-endian architecture, they are encoded in little-endian. Zero leading/trailing bytes are not omitted.

Arguments

Returned value

  • A string with the binary representation of the argument.

Type: String.

Examples

Query:

  1. SELECT bin(14);

Result:

  1. ┌─bin(14)──┐
  2. 00001110
  3. └──────────┘

Query:

  1. SELECT bin(toFloat32(number)) AS bin_presentation FROM numbers(15, 2);

Result:

  1. ┌─bin_presentation─────────────────┐
  2. 00000000000000000111000001000001
  3. 00000000000000001000000001000001
  4. └──────────────────────────────────┘

Query:

  1. SELECT bin(toFloat64(number)) AS bin_presentation FROM numbers(15, 2);

Result:

  1. ┌─bin_presentation─────────────────────────────────────────────────┐
  2. 0000000000000000000000000000000000000000000000000010111001000000
  3. 0000000000000000000000000000000000000000000000000011000001000000
  4. └──────────────────────────────────────────────────────────────────┘

unbin

Interprets each pair of binary digits (in the argument) as a number and converts it to the byte represented by the number. The functions performs the opposite operation to bin.

Syntax

  1. unbin(arg)

Alias: UNBIN.

For a numeric argument unbin() does not return the inverse of bin(). If you want to convert the result to a number, you can use the reverse and reinterpretAs functions.

Note

If unbin is invoked from within the clickhouse-client, binary strings are displayed using UTF-8.

Supports binary digits 0 and 1. The number of binary digits does not have to be multiples of eight. If the argument string contains anything other than binary digits, some implementation-defined result is returned (an exception isn’t thrown).

Arguments

  • arg — A string containing any number of binary digits. String.

Returned value

  • A binary string (BLOB).

Type: String.

Examples

Query:

  1. SELECT UNBIN('001100000011000100110010'), UNBIN('0100110101111001010100110101000101001100');

Result:

  1. ┌─unbin('001100000011000100110010')─┬─unbin('0100110101111001010100110101000101001100')─┐
  2. 012 MySQL
  3. └───────────────────────────────────┴───────────────────────────────────────────────────┘

Query:

  1. SELECT reinterpretAsUInt64(reverse(unbin('1110'))) AS num;

Result:

  1. ┌─num─┐
  2. 14
  3. └─────┘

UUIDStringToNum(str)

Accepts a string containing 36 characters in the format 123e4567-e89b-12d3-a456-426655440000, and returns it as a set of bytes in a FixedString(16).

UUIDNumToString(str)

Accepts a FixedString(16) value. Returns a string containing 36 characters in text format.

bitmaskToList(num)

Accepts an integer. Returns a string containing the list of powers of two that total the source number when summed. They are comma-separated without spaces in text format, in ascending order.

bitmaskToArray(num)

Accepts an integer. Returns an array of UInt64 numbers containing the list of powers of two that total the source number when summed. Numbers in the array are in ascending order.

bitPositionsToArray(num)

Accepts an integer and converts it to an unsigned integer. Returns an array of UInt64 numbers containing the list of positions of bits of arg that equal 1, in ascending order.

Syntax

  1. bitPositionsToArray(arg)

Arguments

Returned value

  • An array containing a list of positions of bits that equal 1, in ascending order.

Type: Array(UInt64).

Example

Query:

  1. SELECT bitPositionsToArray(toInt8(1)) AS bit_positions;

Result:

  1. ┌─bit_positions─┐
  2. [0]
  3. └───────────────┘

Query:

  1. SELECT bitPositionsToArray(toInt8(-1)) AS bit_positions;

Result:

  1. ┌─bit_positions─────┐
  2. [0,1,2,3,4,5,6,7]
  3. └───────────────────┘