标签: hive hiveql
我创建了一个数据表,列中列出了IP地址
create table test (id int,name string,ip_adress string) ROW FORMAT DELIMITED FIELDS TERMINATED BY ‘,’ ;
那么我将用什么数据类型来定义ip_adress列? 我试过字符串,二进制和&数组数据类型,没有任何效果。
答案 0 :(得分:-1)
使用varchar(16)
create table test (id int,name string,ip_adress varchar(16)) ROW FORMAT DELIMITED
答案 1 :(得分:-2)
您可以使用String数据类型指定。以下是显示用于IP地址的示例。