ipv4
ipv4(value: string, int64, or variant) -> ipv4
Returns an IPv4 address representation of the argument value.
Integers are treated as an integer representation of the IP address and strings are treated as IP address string literals. Variant types are treated as either a string or integer depending on the data in each row.
Domain
This is a scalar function (calculates a single output value for a single input row).
Categories
Examples
make_col ip_address:ipv4('127.0.0.1')
Create a column 'ip_address' which has an IP address value of 127.0.0.1
make_col ip_address:ipv4(3232235521)
Create a column 'ip_address' which has an IP address value of 192.168.0.1
Updated 8 days ago