INET_NTOA

Converts a 32-bit integer to an IPv4 address.

Analyze Syntax

func.inet_ntoa(<int32>)

Analyze Examples

SELECT func.inet_ntoa(16909060)

┌──────────────────────────────┐
 func.inet_ntoa(16909060)     
├──────────────────────────────┤
 1.2.3.4                      
└──────────────────────────────┘

SQL Syntax

INET_NOTA( <int32> )

Aliases

Return Type

String.

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             
└────────────────────────────────────────────────────┘
Last modified April 22, 2024 at 7:21 PM EST: updated IP Address functions (2736294)