1. ┌─name─┬─type───┬─default_type─┬─default_expression─┬─comment─┬─codec_expression─┐
    2. url String
    3. from IPv4
    4. └──────┴────────┴──────────────┴────────────────────┴─────────┴──────────────────┘

    同时您也可以使用IPv4类型的列作为主键:

      1. https://clickhouse.com/docs/en/ │ 116.106.34.242 │
      2. https://wikipedia.org │ 116.253.40.133 │
      3. https://clickhouse.com │ 183.247.232.58 │
      4. └────────────────────────────────────┴────────────────┘

      同时它提供更为紧凑的二进制存储格式:

        1. ┌─toTypeName(IPv4NumToString(from))─┬─s──────────────┐
        2. String 183.247.232.58
        3. └───────────────────────────────────┴────────────────┘

        或可以使用CAST将它转换为UInt32类型:

        1. ┌─toTypeName(CAST(from, 'UInt32'))─┬──────────i─┐
        2. └──────────────────────────────────┴────────────┘