INET_ATON

Converts an IPv4 address to a 32-bit integer.

Analyze Syntax

func.inet_aton(<ip>)

Analyze Examples

func.inet_aton('1.2.3.4')

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

SQL Syntax

INET_ATON(<ip>)

Aliases

Return Type

Integer.

SQL Examples

SELECT IPV4_STRING_TO_NUM('1.2.3.4'), INET_ATON('1.2.3.4');

┌──────────────────────────────────────────────────────┐
 ipv4_string_to_num('1.2.3.4')  inet_aton('1.2.3.4') 
├───────────────────────────────┼──────────────────────┤
                      16909060              16909060 
└──────────────────────────────────────────────────────┘
Last modified April 22, 2024 at 7:21 PM EST: updated IP Address functions (2736294)