メインコンテンツまでスキップ

ip_as_string function

Applies to: check marked yes Databricks Runtime 18.2 and above

Beta

This feature is in Beta. Workspace admins can control access to this feature from the Previews page. See Manage Databricks previews.

Returns the canonical string representation of an IP address or CIDR block.

Syntax

ip_as_string ( ip_or_cidr )

Arguments

  • ip_or_cidr: A STRING or BINARY value representing an IPv4 or IPv6 address or CIDR block.

Returns

A STRING representing the canonical string form of the IP address or CIDR block. For BINARY inputs, the binary representation is converted to its equivalent string form.

The function returns NULL if the input is NULL.

Error conditions

Examples

SQL
> SELECT ip_as_string('192.168.1.1');
192.168.1.1

> SELECT ip_as_string('2001:0db8:0000:0000:0000:0000:0000:0001');
2001:db8::1

> SELECT ip_as_string('192.168.1.5/24');
192.168.1.0/24

> SELECT ip_as_string(X'C0A80101');
192.168.1.1

> SELECT ip_as_string(X'20010DB8000000000000000000000001');
2001:db8::1

> SELECT ip_as_string(NULL);
NULL

> SELECT ip_as_string('invalid.ip');
Error: INVALID_IP_ADDRESS_OR_CIDR_BLOCK