To IPv6 compatible (compatible)
Description
Converts an IPv4 address into an IPv4-compatible IPv6 address.
How does it work in the search window?
Select Create column in the search window toolbar, then select the To IPv6 (compatible) operation. You need to specify one argument:
Argument | Data type |
---|---|
IPv4 to convert mandatory | ip |
The data type of the values in the new column is ip6.
Example
In the demo.ecommerce.data
table, we want to transform the IPv4 addresses in the clientIpAddress column into IPv4-compatible IPv6 addresses. To do it, click Create column and select the To IPv6 (compatible) operation. The arguments needed are:
IPv4 to convert - clientIpAddress column
Click Create column and you will see the following result:
How does it work in LINQ?
Use the operator select
... as
... and add the operation syntax to create the new column. These are the valid formats of the To IPv6 (compatible) operation:
compatible(ip)
Example
You can copy the following LINQ script and try the above example on the demo.ecommerce.data
table.Â
from demo.ecommerce.data
select compatible(clientIpAddress) as IPv6compatible