INET_ATON

Converts an IPv4 address string to a numeric value.

Analyze Syntax

func.inet_aton(<ip_str>)

Analyze Examples

func.inet_aton('192.168.1.1')

┌────────────┐
 3232235777  
└────────────┘

SQL Syntax

INET_ATON(<ip_str>)

SQL Examples

SELECT INET_ATON('192.168.1.1');

┌────────────┐
 3232235777  
└────────────┘