INET_NTOA (Lakehouse v1)
Converts a 32-bit integer to an IPv4 address.
Analyze Syntax
Section titled “Analyze Syntax”func.inet_ntoa(<int32>)Analyze Examples
Section titled “Analyze Examples”SELECT func.inet_ntoa(16909060)
┌──────────────────────────────┐│ func.inet_ntoa(16909060) │├──────────────────────────────┤│ 1.2.3.4 │└──────────────────────────────┘SQL Syntax
Section titled “SQL Syntax”INET_NOTA( <int32> )Aliases
Section titled “Aliases”Return Type
Section titled “Return Type”String.
SQL Examples
Section titled “SQL Examples”SELECT IPV4_NUM_TO_STRING(16909060), INET_NTOA(16909060);
┌────────────────────────────────────────────────────┐│ ipv4_num_to_string(16909060) │ inet_ntoa(16909060) │├──────────────────────────────┼─────────────────────┤│ 1.2.3.4 │ 1.2.3.4 │└────────────────────────────────────────────────────┘